DeskTop.js 538 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  633. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  634. ];
  635. //教科院实小教师桌面图标的全局变量
  636. U.MD.D.I.siesStudentDeskIcon = [
  637. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  638. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  640. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  641. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  642. ];
  643. //福田
  644. U.MD.D.I.gdjgTeacherDeskIcon = [
  645. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  646. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  647. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  648. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  649. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  650. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  651. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  652. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  653. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  654. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  655. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  656. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. ];
  660. //gdjg
  661. U.MD.D.I.gdjgAdminDeskIcon = [
  662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  664. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  665. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  666. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  667. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  668. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  669. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  670. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  671. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  672. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  674. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  675. ];
  676. //hk
  677. U.MD.D.I.hkteacherDeskIcon = [
  678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  682. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  683. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  684. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  685. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  687. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  688. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  689. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  690. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  691. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  692. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  694. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  695. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  696. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  697. ];
  698. //hk
  699. U.MD.D.I.hkStudentDeskIcon = [
  700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  704. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  705. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkaceteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  729. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  730. ];
  731. //hk
  732. U.MD.D.I.hkaceStudentDeskIcon = [
  733. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  734. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  735. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  736. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  737. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  739. ];
  740. //香海正覺蓮社佛教正覺中學
  741. U.MD.D.I.hkZJLSteacherDeskIcon = [
  742. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  743. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  744. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  745. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  746. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  747. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  748. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  749. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  750. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  751. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  752. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  753. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  754. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  755. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. ];
  759. //香海正覺蓮社佛教正覺中學
  760. U.MD.D.I.hkZJLSStudentDeskIcon = [
  761. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  762. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. ];
  766. //云海
  767. U.MD.D.I.yunhaiTeacherDeskIcon = [
  768. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  769. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  771. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  772. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  774. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  775. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  776. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  777. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  778. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  779. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  780. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  781. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  782. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  783. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  786. ];
  787. //福田
  788. U.MD.D.I.heyuanTeacherDeskIcon = [
  789. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  790. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  791. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  792. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  793. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  794. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  795. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  796. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  797. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  798. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  801. ];
  802. //福田
  803. U.MD.D.I.heyuanAdminDeskIcon = [
  804. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  805. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  806. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  808. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  809. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  810. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  811. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  812. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  813. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  814. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  815. ];
  816. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  817. U.MD.D.I.szherTeacherDeskIcon = [
  818. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  819. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  820. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  821. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  822. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  823. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  824. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  825. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  826. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  827. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  828. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  829. ];
  830. //dsei
  831. U.MD.D.I.dseiTeacherDeskIcon = [
  832. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  833. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  834. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  835. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  836. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  837. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  838. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  839. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  840. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  841. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  842. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  843. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  844. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  845. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  846. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  847. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  848. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  849. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  850. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  851. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  852. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  853. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  854. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  855. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  856. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  857. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  858. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  859. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  860. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  861. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  862. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  863. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  864. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  865. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  866. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  867. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  868. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  869. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  870. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  871. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  872. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  873. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  874. ];
  875. //dsei
  876. U.MD.D.I.dseiAdminDeskIcon = [
  877. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  878. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  879. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  880. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  886. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  887. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  888. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  889. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  890. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  891. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  892. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  893. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  894. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  895. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  896. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  897. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  898. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  899. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  900. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  901. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  902. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  903. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  904. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  905. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  906. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  907. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  908. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  909. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  910. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  911. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  912. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  913. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  918. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  919. ];
  920. //dsei
  921. U.MD.D.I.dseiStudentDeskIcon = [
  922. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  923. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  924. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  925. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  928. ];
  929. //未来教育基地
  930. U.MD.D.I.szjkyTeacherDeskIcon = [
  931. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  932. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  933. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  934. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  935. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  936. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  937. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  938. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  939. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  940. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  941. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  942. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  944. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  945. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  946. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  947. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  948. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  949. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  950. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  951. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  952. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  953. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  964. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  965. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  966. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  967. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  968. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  969. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  972. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  973. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  974. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  975. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  976. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  977. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  978. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  979. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  980. ];
  981. //未来教育基地
  982. U.MD.D.I.szjkyStudentDeskIcon = [
  983. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  984. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  985. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. ];
  988. //成华教育局
  989. U.MD.D.I.chjyjTeacherDeskIcon = [
  990. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  991. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  992. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  993. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  994. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  995. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  998. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  999. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1000. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1004. ];
  1005. //成华教育局chjyj
  1006. U.MD.D.I.chjyjAdminDeskIcon = [
  1007. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcStudentDeskIcon = [
  1032. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1033. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1034. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1035. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1036. ];
  1037. //tpc
  1038. U.MD.D.I.tpcTeacherDeskIcon = [
  1039. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1040. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1041. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1042. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1043. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1044. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1045. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcAdminDeskIcon = [
  1049. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1050. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1055. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1056. ];
  1057. //THU-IOE
  1058. U.MD.D.I.thuioeTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1062. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1063. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1064. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1065. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1066. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1067. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1068. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1069. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1070. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1071. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1072. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1073. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1074. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1075. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1076. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1077. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1078. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1079. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1080. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1081. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1082. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1083. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1084. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1085. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1086. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1087. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1088. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1089. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1090. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1091. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1092. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1093. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1094. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1097. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1098. ];
  1099. //THU-IOE
  1100. U.MD.D.I.thuioeStudentDeskIcon = [
  1101. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1102. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1103. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1104. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1105. ];
  1106. //jccssyl
  1107. U.MD.D.I.jccssylTeacherDeskIcon = [
  1108. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1109. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1110. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1111. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1112. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1113. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1114. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1115. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1116. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1117. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1118. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1119. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1120. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1121. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1122. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1127. ];
  1128. //jccssyl
  1129. U.MD.D.I.jccssylStudentDeskIcon = [
  1130. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1132. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1133. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1134. ];
  1135. //cale
  1136. U.MD.D.I.caleTeacherDeskIcon = [
  1137. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1138. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1139. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1140. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1141. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1142. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1143. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1144. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1145. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1146. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1147. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1148. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1149. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1150. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1151. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1153. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1154. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1155. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1156. ];
  1157. //cale
  1158. U.MD.D.I.caleStudentDeskIcon = [
  1159. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1160. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1161. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1162. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1163. ];
  1164. //lqwmsgzs
  1165. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1166. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1167. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1168. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1169. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1170. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1171. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1172. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1173. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1174. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1175. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1176. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1177. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1178. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1179. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1180. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1181. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1182. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1183. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1184. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1185. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1186. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1187. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1188. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1189. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1190. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1191. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1192. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1193. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1194. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1195. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1196. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1197. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1198. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1199. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1202. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1203. ];
  1204. //lqwmsgzs
  1205. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1206. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1207. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1208. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1210. ];
  1211. //盐田区幼儿园
  1212. U.MD.D.I.ytyTeacherDeskIcon = [
  1213. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1214. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1215. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1216. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1217. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1218. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1219. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1220. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1221. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1222. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1224. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1225. ];
  1226. //盐田区幼儿园
  1227. U.MD.D.I.ytyStudentDeskIcon = [
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1230. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1231. ];
  1232. //#region 桌面初始化a
  1233. /**
  1234. * 初始化桌面的起始函数
  1235. *
  1236. */
  1237. U.MD.D.I.init = function () {
  1238. if ($("#U_MD_D_K")[0]) {
  1239. //初始化桌面图标
  1240. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1241. // var clickUrl = ':12588/requestIp.php';
  1242. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1243. // U.MD.D.I.Ip = data;
  1244. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1245. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1246. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1247. // })
  1248. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1249. // })
  1250. }
  1251. }
  1252. /**
  1253. * 模式切换
  1254. *
  1255. */
  1256. U.MD.D.I.ModeCheck = function (type) {
  1257. if (US.Config.type == type) {
  1258. return
  1259. }
  1260. US.Config.type = type
  1261. $('.U_PBL_Check .active')[0].className = ''
  1262. if (type == 1) {
  1263. $('.U_PBL_Check div')[0].className = 'active'
  1264. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1265. } else {
  1266. $('.U_PBL_Check div')[1].className = 'active'
  1267. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1268. }
  1269. //初始化桌面图标
  1270. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1271. if (type == 2) {
  1272. U.MD.D.I.openApplication("project")
  1273. }
  1274. }
  1275. /**
  1276. * 隐藏任务栏
  1277. *
  1278. * @param {element} 桌面元素
  1279. */
  1280. U.MD.D.I.hiddenTaskbar = function (el) {
  1281. //任务栏位置变小
  1282. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1283. //桌面的位置变大
  1284. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1285. }
  1286. /**
  1287. * 隐藏任务栏
  1288. *
  1289. * @param {element} 桌面元素
  1290. */
  1291. U.MD.D.I.hiddenTaskbarout = function (el) {
  1292. //任务栏位置变小
  1293. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1294. //任务栏位置变化
  1295. U.selectEl(el).css({ "bottom": "-60px" });
  1296. //桌面的位置变大
  1297. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1298. }
  1299. }
  1300. /**
  1301. * 初始化打印桌面图标
  1302. *
  1303. * @param {element} 桌面元素
  1304. */
  1305. U.MD.D.I.initDesktopIcons = function (el, type) {
  1306. var i, //用于循环
  1307. _content, //桌面图标元素
  1308. _iconcontent, //桌面图标元素
  1309. _frag = $$("frag"), //定义一个碎片元素
  1310. _type = US.userInfo.type,
  1311. _org = US.userInfo.org,
  1312. _oid = US.userInfo.organizeid,
  1313. _role = US.userInfo.role,
  1314. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1315. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1316. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1317. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1318. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1319. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1320. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1321. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1322. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1323. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1324. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1325. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1326. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1327. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1328. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1329. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1330. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1331. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1332. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1333. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1334. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1335. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1336. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1337. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1338. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1339. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1340. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1341. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1342. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1343. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1344. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1345. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1346. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1347. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1348. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1349. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1350. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1351. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1352. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1353. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1354. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1355. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1356. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1357. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1358. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1359. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1360. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1361. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1362. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1363. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1364. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1365. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1366. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1367. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1368. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1369. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1370. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1371. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1372. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1373. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1374. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1375. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1376. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1377. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1378. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1379. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1380. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1381. 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'];
  1382. 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'];
  1383. //清楚桌面图标
  1384. el.innerHTML = "";
  1385. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1386. _teacherDesktopIconInfo.push(
  1387. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1388. { "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)" } },
  1389. )
  1390. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1391. }
  1392. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1393. _teacherDesktopIconInfo.push(
  1394. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1395. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1396. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1397. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1398. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1399. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1400. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1401. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1402. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1403. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1404. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1405. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1406. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1407. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1408. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1409. )
  1410. }
  1411. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1412. _teacherDesktopIconInfo.push(
  1413. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1414. )
  1415. }
  1416. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1417. // _teacherDesktopIconInfo.push(
  1418. // )
  1419. // }
  1420. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1421. _teacherDesktopIconInfo.push(
  1422. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1423. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1424. )
  1425. }
  1426. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1427. _teacherDesktopIconInfo.push(
  1428. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1432. )
  1433. _studentDesktopIconInfo.push(
  1434. )
  1435. }
  1436. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1437. _teacherDesktopIconInfo.push(
  1438. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1439. )
  1440. _studentDesktopIconInfo.push(
  1441. )
  1442. }
  1443. //麒麟二中 和 民新小学
  1444. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1445. _teacherDesktopIconInfo.push(
  1446. )
  1447. }
  1448. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1449. _teacherDesktopIconInfo.push(
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. )
  1454. }
  1455. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1456. _teacherDesktopIconInfo.push(
  1457. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1458. )
  1459. }
  1460. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1461. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1462. _teacherDesktopIconInfo.push(
  1463. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1464. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1465. )
  1466. }
  1467. //麒麟二中
  1468. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1469. _studentDesktopIconInfo.push(
  1470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1471. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1472. )
  1473. }
  1474. //万科双语
  1475. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1476. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1477. if (el.Name == '项目管理') {
  1478. el.Name = 'PBL项目'
  1479. }
  1480. return el
  1481. })
  1482. _studentDesktopIconInfo3.push(
  1483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1484. )
  1485. }
  1486. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1487. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1488. return el.Name != '魔盒识字' && el.Name != '24点'
  1489. })
  1490. }
  1491. 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) {
  1492. _studentDesktopIconInfo.push(
  1493. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1495. )
  1496. }
  1497. //循环创建桌面图标
  1498. if (type == 1) {
  1499. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1500. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1501. _content = $$("div", {
  1502. className: "U_MD_D_KO",
  1503. "onmousedown": U.UF.C.closure(function (obj) {
  1504. //防止拖动图标即打开了桌面应用
  1505. U.MD.D.click(this, obj);
  1506. }, [_studentDesktopIconInfo[i]]),
  1507. "onclick": U.UF.C.closure(function (obj) {
  1508. //防止拖动图标即打开了桌面应用
  1509. U.MD.D.click(this, obj);
  1510. }, [_studentDesktopIconInfo[i]])
  1511. }, _frag); //
  1512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1515. }
  1516. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1517. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1518. _content = $$("div", {
  1519. className: "U_MD_D_KO",
  1520. "onmousedown": U.UF.C.closure(function (obj) {
  1521. //防止拖动图标即打开了桌面应用
  1522. U.MD.D.click(this, obj);
  1523. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1524. "onclick": U.UF.C.closure(function (obj) {
  1525. //防止拖动图标即打开了桌面应用
  1526. U.MD.D.click(this, obj);
  1527. }, [_hkZJLSStudentDeskIconInfo[i]])
  1528. }, _frag); //
  1529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1532. } //
  1533. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1534. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1535. _content = $$("div", {
  1536. className: "U_MD_D_KO",
  1537. "onmousedown": U.UF.C.closure(function (obj) {
  1538. //防止拖动图标即打开了桌面应用
  1539. U.MD.D.click(this, obj);
  1540. }, [_ytyStudentDeskIconInfo[i]]),
  1541. "onclick": U.UF.C.closure(function (obj) {
  1542. //防止拖动图标即打开了桌面应用
  1543. U.MD.D.click(this, obj);
  1544. }, [_ytyStudentDeskIconInfo[i]])
  1545. }, _frag); //
  1546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1549. } //
  1550. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1551. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1552. _content = $$("div", {
  1553. className: "U_MD_D_KO",
  1554. "onmousedown": U.UF.C.closure(function (obj) {
  1555. //防止拖动图标即打开了桌面应用
  1556. U.MD.D.click(this, obj);
  1557. }, [_jccssylStudentDeskIconInfo[i]]),
  1558. "onclick": U.UF.C.closure(function (obj) {
  1559. //防止拖动图标即打开了桌面应用
  1560. U.MD.D.click(this, obj);
  1561. }, [_jccssylStudentDeskIconInfo[i]])
  1562. }, _frag); //
  1563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1566. }
  1567. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1568. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1569. _content = $$("div", {
  1570. className: "U_MD_D_KO",
  1571. "onmousedown": U.UF.C.closure(function (obj) {
  1572. //防止拖动图标即打开了桌面应用
  1573. U.MD.D.click(this, obj);
  1574. }, [_caleStudentDeskIconInfo[i]]),
  1575. "onclick": U.UF.C.closure(function (obj) {
  1576. //防止拖动图标即打开了桌面应用
  1577. U.MD.D.click(this, obj);
  1578. }, [_caleStudentDeskIconInfo[i]])
  1579. }, _frag); //
  1580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1583. }
  1584. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1585. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1586. _content = $$("div", {
  1587. className: "U_MD_D_KO",
  1588. "onmousedown": U.UF.C.closure(function (obj) {
  1589. //防止拖动图标即打开了桌面应用
  1590. U.MD.D.click(this, obj);
  1591. }, [_thuioeStudentDeskIconInfo[i]]),
  1592. "onclick": U.UF.C.closure(function (obj) {
  1593. //防止拖动图标即打开了桌面应用
  1594. U.MD.D.click(this, obj);
  1595. }, [_thuioeStudentDeskIconInfo[i]])
  1596. }, _frag); //
  1597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1600. }
  1601. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1602. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1603. _content = $$("div", {
  1604. className: "U_MD_D_KO",
  1605. "onmousedown": U.UF.C.closure(function (obj) {
  1606. //防止拖动图标即打开了桌面应用
  1607. U.MD.D.click(this, obj);
  1608. }, [_tpcStudentDeskIconInfo[i]]),
  1609. "onclick": U.UF.C.closure(function (obj) {
  1610. //防止拖动图标即打开了桌面应用
  1611. U.MD.D.click(this, obj);
  1612. }, [_tpcStudentDeskIconInfo[i]])
  1613. }, _frag); //
  1614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1617. } //
  1618. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1619. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1620. _content = $$("div", {
  1621. className: "U_MD_D_KO",
  1622. "onmousedown": U.UF.C.closure(function (obj) {
  1623. //防止拖动图标即打开了桌面应用
  1624. U.MD.D.click(this, obj);
  1625. }, [_chjyjStudentDeskIconInfo[i]]),
  1626. "onclick": U.UF.C.closure(function (obj) {
  1627. //防止拖动图标即打开了桌面应用
  1628. U.MD.D.click(this, obj);
  1629. }, [_chjyjStudentDeskIconInfo[i]])
  1630. }, _frag); //
  1631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1634. }
  1635. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1636. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1637. _content = $$("div", {
  1638. className: "U_MD_D_KO",
  1639. "onmousedown": U.UF.C.closure(function (obj) {
  1640. //防止拖动图标即打开了桌面应用
  1641. U.MD.D.click(this, obj);
  1642. }, [_szjkyStudentDeskIconInfo[i]]),
  1643. "onclick": U.UF.C.closure(function (obj) {
  1644. //防止拖动图标即打开了桌面应用
  1645. U.MD.D.click(this, obj);
  1646. }, [_szjkyStudentDeskIconInfo[i]])
  1647. }, _frag); //
  1648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1651. }
  1652. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1653. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1654. _content = $$("div", {
  1655. className: "U_MD_D_KO",
  1656. "onmousedown": U.UF.C.closure(function (obj) {
  1657. //防止拖动图标即打开了桌面应用
  1658. U.MD.D.click(this, obj);
  1659. }, [_dseiStudentDeskIconInfo[i]]),
  1660. "onclick": U.UF.C.closure(function (obj) {
  1661. //防止拖动图标即打开了桌面应用
  1662. U.MD.D.click(this, obj);
  1663. }, [_dseiStudentDeskIconInfo[i]])
  1664. }, _frag); //
  1665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1668. }
  1669. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1670. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1671. _content = $$("div", {
  1672. className: "U_MD_D_KO",
  1673. "onmousedown": U.UF.C.closure(function (obj) {
  1674. //防止拖动图标即打开了桌面应用
  1675. U.MD.D.click(this, obj);
  1676. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1677. "onclick": U.UF.C.closure(function (obj) {
  1678. //防止拖动图标即打开了桌面应用
  1679. U.MD.D.click(this, obj);
  1680. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1681. }, _frag); //
  1682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1685. }
  1686. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1687. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1688. _content = $$("div", {
  1689. className: "U_MD_D_KO",
  1690. "onmousedown": U.UF.C.closure(function (obj) {
  1691. //防止拖动图标即打开了桌面应用
  1692. U.MD.D.click(this, obj);
  1693. }, [_siesStudentDeskIconInfo[i]]),
  1694. "onclick": U.UF.C.closure(function (obj) {
  1695. //防止拖动图标即打开了桌面应用
  1696. U.MD.D.click(this, obj);
  1697. }, [_siesStudentDeskIconInfo[i]])
  1698. }, _frag); //
  1699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1702. }
  1703. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1704. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1705. _content = $$("div", {
  1706. className: "U_MD_D_KO",
  1707. "onmousedown": U.UF.C.closure(function (obj) {
  1708. //防止拖动图标即打开了桌面应用
  1709. U.MD.D.click(this, obj);
  1710. }, [_hkStudentDeskIconInfo[i]]),
  1711. "onclick": U.UF.C.closure(function (obj) {
  1712. //防止拖动图标即打开了桌面应用
  1713. U.MD.D.click(this, obj);
  1714. }, [_hkStudentDeskIconInfo[i]])
  1715. }, _frag); //
  1716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1719. }
  1720. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1721. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1722. _content = $$("div", {
  1723. className: "U_MD_D_KO",
  1724. "onmousedown": U.UF.C.closure(function (obj) {
  1725. //防止拖动图标即打开了桌面应用
  1726. U.MD.D.click(this, obj);
  1727. }, [_hkaceStudentDeskIconInfo[i]]),
  1728. "onclick": U.UF.C.closure(function (obj) {
  1729. //防止拖动图标即打开了桌面应用
  1730. U.MD.D.click(this, obj);
  1731. }, [_hkaceStudentDeskIconInfo[i]])
  1732. }, _frag); //
  1733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1736. }
  1737. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1738. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1739. _content = $$("div", {
  1740. className: "U_MD_D_KO",
  1741. "onmousedown": U.UF.C.closure(function (obj) {
  1742. //防止拖动图标即打开了桌面应用
  1743. U.MD.D.click(this, obj);
  1744. }, [_studentDesktopIconInfo[i]]),
  1745. "onclick": U.UF.C.closure(function (obj) {
  1746. //防止拖动图标即打开了桌面应用
  1747. U.MD.D.click(this, obj);
  1748. }, [_studentDesktopIconInfo[i]])
  1749. }, _frag); //
  1750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1753. }
  1754. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1755. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1756. _content = $$("div", {
  1757. className: "U_MD_D_KO",
  1758. "onmousedown": U.UF.C.closure(function (obj) {
  1759. //防止拖动图标即打开了桌面应用
  1760. U.MD.D.click(this, obj);
  1761. }, [_tcStudentDeskIconInfo[i]]),
  1762. "onclick": U.UF.C.closure(function (obj) {
  1763. //防止拖动图标即打开了桌面应用
  1764. U.MD.D.click(this, obj);
  1765. }, [_tcStudentDeskIconInfo[i]])
  1766. }, _frag); //
  1767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1770. }
  1771. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1772. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1773. _content = $$("div", {
  1774. className: "U_MD_D_KO",
  1775. "onmousedown": U.UF.C.closure(function (obj) {
  1776. //防止拖动图标即打开了桌面应用
  1777. U.MD.D.click(this, obj);
  1778. }, [_szscStudentDeskIconInfo[i]]),
  1779. "onclick": U.UF.C.closure(function (obj) {
  1780. //防止拖动图标即打开了桌面应用
  1781. U.MD.D.click(this, obj);
  1782. }, [_szscStudentDeskIconInfo[i]])
  1783. }, _frag); //
  1784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1787. }
  1788. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1789. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1790. _content = $$("div", {
  1791. className: "U_MD_D_KO",
  1792. "onmousedown": U.UF.C.closure(function (obj) {
  1793. //防止拖动图标即打开了桌面应用
  1794. U.MD.D.click(this, obj);
  1795. }, [_studentDesktopIconInfo3[i]]),
  1796. "onclick": U.UF.C.closure(function (obj) {
  1797. //防止拖动图标即打开了桌面应用
  1798. U.MD.D.click(this, obj);
  1799. }, [_studentDesktopIconInfo3[i]])
  1800. }, _frag); //
  1801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1804. }
  1805. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1806. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1807. _content = $$("div", {
  1808. className: "U_MD_D_KO",
  1809. "onmousedown": U.UF.C.closure(function (obj) {
  1810. //防止拖动图标即打开了桌面应用
  1811. U.MD.D.click(this, obj);
  1812. }, [_studentDesktopIconInfo2[i]]),
  1813. "onclick": U.UF.C.closure(function (obj) {
  1814. //防止拖动图标即打开了桌面应用
  1815. U.MD.D.click(this, obj);
  1816. }, [_studentDesktopIconInfo2[i]])
  1817. }, _frag); //
  1818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1821. }
  1822. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1823. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1824. _content = $$("div", {
  1825. className: "U_MD_D_KO",
  1826. "onmousedown": U.UF.C.closure(function (obj) {
  1827. //防止拖动图标即打开了桌面应用
  1828. U.MD.D.click(this, obj);
  1829. }, [_wanketeacherDesktopIconInfo[i]]),
  1830. "onclick": U.UF.C.closure(function (obj) {
  1831. //防止拖动图标即打开了桌面应用
  1832. U.MD.D.click(this, obj);
  1833. }, [_wanketeacherDesktopIconInfo[i]])
  1834. }, _frag); //
  1835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1838. }
  1839. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1840. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1841. _content = $$("div", {
  1842. className: "U_MD_D_KO",
  1843. "onmousedown": U.UF.C.closure(function (obj) {
  1844. //防止拖动图标即打开了桌面应用
  1845. U.MD.D.click(this, obj);
  1846. }, [_wankeAdminDesktopIconInfo[i]]),
  1847. "onclick": U.UF.C.closure(function (obj) {
  1848. //防止拖动图标即打开了桌面应用
  1849. U.MD.D.click(this, obj);
  1850. }, [_wankeAdminDesktopIconInfo[i]])
  1851. }, _frag); //
  1852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1855. }
  1856. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1857. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1858. _content = $$("div", {
  1859. className: "U_MD_D_KO",
  1860. "onmousedown": U.UF.C.closure(function (obj) {
  1861. //防止拖动图标即打开了桌面应用
  1862. U.MD.D.click(this, obj);
  1863. }, [_jccssylTeacherDeskIconInfo[i]]),
  1864. "onclick": U.UF.C.closure(function (obj) {
  1865. //防止拖动图标即打开了桌面应用
  1866. U.MD.D.click(this, obj);
  1867. }, [_jccssylTeacherDeskIconInfo[i]])
  1868. }, _frag); //
  1869. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1870. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1871. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1872. }
  1873. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1874. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1875. _content = $$("div", {
  1876. className: "U_MD_D_KO",
  1877. "onmousedown": U.UF.C.closure(function (obj) {
  1878. //防止拖动图标即打开了桌面应用
  1879. U.MD.D.click(this, obj);
  1880. }, [_caleTeacherDeskIconInfo[i]]),
  1881. "onclick": U.UF.C.closure(function (obj) {
  1882. //防止拖动图标即打开了桌面应用
  1883. U.MD.D.click(this, obj);
  1884. }, [_caleTeacherDeskIconInfo[i]])
  1885. }, _frag); //
  1886. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1887. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1888. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1889. }
  1890. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1891. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1892. _content = $$("div", {
  1893. className: "U_MD_D_KO",
  1894. "onmousedown": U.UF.C.closure(function (obj) {
  1895. //防止拖动图标即打开了桌面应用
  1896. U.MD.D.click(this, obj);
  1897. }, [_tpcOrganizerDeskIconInfo[i]]),
  1898. "onclick": U.UF.C.closure(function (obj) {
  1899. //防止拖动图标即打开了桌面应用
  1900. U.MD.D.click(this, obj);
  1901. }, [_tpcOrganizerDeskIconInfo[i]])
  1902. }, _frag); //
  1903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1906. }
  1907. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1908. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1909. _content = $$("div", {
  1910. className: "U_MD_D_KO",
  1911. "onmousedown": U.UF.C.closure(function (obj) {
  1912. //防止拖动图标即打开了桌面应用
  1913. U.MD.D.click(this, obj);
  1914. }, [_tpcTeacherDeskIconInfo[i]]),
  1915. "onclick": U.UF.C.closure(function (obj) {
  1916. //防止拖动图标即打开了桌面应用
  1917. U.MD.D.click(this, obj);
  1918. }, [_tpcTeacherDeskIconInfo[i]])
  1919. }, _frag); //
  1920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1923. }
  1924. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1925. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1926. _content = $$("div", {
  1927. className: "U_MD_D_KO",
  1928. "onmousedown": U.UF.C.closure(function (obj) {
  1929. //防止拖动图标即打开了桌面应用
  1930. U.MD.D.click(this, obj);
  1931. }, [_teacherDesktopIconInfo2[i]]),
  1932. "onclick": U.UF.C.closure(function (obj) {
  1933. //防止拖动图标即打开了桌面应用
  1934. U.MD.D.click(this, obj);
  1935. }, [_teacherDesktopIconInfo2[i]])
  1936. }, _frag); //
  1937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1940. }
  1941. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1942. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1943. _content = $$("div", {
  1944. className: "U_MD_D_KO",
  1945. "onmousedown": U.UF.C.closure(function (obj) {
  1946. //防止拖动图标即打开了桌面应用
  1947. U.MD.D.click(this, obj);
  1948. }, [_thuioeTeacherDeskIconInfo[i]]),
  1949. "onclick": U.UF.C.closure(function (obj) {
  1950. //防止拖动图标即打开了桌面应用
  1951. U.MD.D.click(this, obj);
  1952. }, [_thuioeTeacherDeskIconInfo[i]])
  1953. }, _frag); //
  1954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1957. }
  1958. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1959. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1960. _content = $$("div", {
  1961. className: "U_MD_D_KO",
  1962. "onmousedown": U.UF.C.closure(function (obj) {
  1963. //防止拖动图标即打开了桌面应用
  1964. U.MD.D.click(this, obj);
  1965. }, [_lotechTeacherDeskIconInfo[i]]),
  1966. "onclick": U.UF.C.closure(function (obj) {
  1967. //防止拖动图标即打开了桌面应用
  1968. U.MD.D.click(this, obj);
  1969. }, [_lotechTeacherDeskIconInfo[i]])
  1970. }, _frag); //
  1971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1974. }//
  1975. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1976. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1977. _content = $$("div", {
  1978. className: "U_MD_D_KO",
  1979. "onmousedown": U.UF.C.closure(function (obj) {
  1980. //防止拖动图标即打开了桌面应用
  1981. U.MD.D.click(this, obj);
  1982. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1983. "onclick": U.UF.C.closure(function (obj) {
  1984. //防止拖动图标即打开了桌面应用
  1985. U.MD.D.click(this, obj);
  1986. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1987. }, _frag); //
  1988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1991. }
  1992. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1993. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1994. _content = $$("div", {
  1995. className: "U_MD_D_KO",
  1996. "onmousedown": U.UF.C.closure(function (obj) {
  1997. //防止拖动图标即打开了桌面应用
  1998. U.MD.D.click(this, obj);
  1999. }, [_siesTeacherDeskIconInfo[i]]),
  2000. "onclick": U.UF.C.closure(function (obj) {
  2001. //防止拖动图标即打开了桌面应用
  2002. U.MD.D.click(this, obj);
  2003. }, [_siesTeacherDeskIconInfo[i]])
  2004. }, _frag); //
  2005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2008. }
  2009. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2010. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2011. _content = $$("div", {
  2012. className: "U_MD_D_KO",
  2013. "onmousedown": U.UF.C.closure(function (obj) {
  2014. //防止拖动图标即打开了桌面应用
  2015. U.MD.D.click(this, obj);
  2016. }, [_longhuaTeacherDeskIconInfo[i]]),
  2017. "onclick": U.UF.C.closure(function (obj) {
  2018. //防止拖动图标即打开了桌面应用
  2019. U.MD.D.click(this, obj);
  2020. }, [_longhuaTeacherDeskIconInfo[i]])
  2021. }, _frag); //
  2022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2025. }
  2026. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2027. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2028. _content = $$("div", {
  2029. className: "U_MD_D_KO",
  2030. "onmousedown": U.UF.C.closure(function (obj) {
  2031. //防止拖动图标即打开了桌面应用
  2032. U.MD.D.click(this, obj);
  2033. }, [_ytyTeacherDeskIconInfo[i]]),
  2034. "onclick": U.UF.C.closure(function (obj) {
  2035. //防止拖动图标即打开了桌面应用
  2036. U.MD.D.click(this, obj);
  2037. }, [_ytyTeacherDeskIconInfo[i]])
  2038. }, _frag); //
  2039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2042. }
  2043. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2044. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2045. _content = $$("div", {
  2046. className: "U_MD_D_KO",
  2047. "onmousedown": U.UF.C.closure(function (obj) {
  2048. //防止拖动图标即打开了桌面应用
  2049. U.MD.D.click(this, obj);
  2050. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2051. "onclick": U.UF.C.closure(function (obj) {
  2052. //防止拖动图标即打开了桌面应用
  2053. U.MD.D.click(this, obj);
  2054. }, [_yunhaiTeacherDeskIconInfo[i]])
  2055. }, _frag); //
  2056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2059. } //_hkStudentDeskIconInfo
  2060. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2061. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2062. _content = $$("div", {
  2063. className: "U_MD_D_KO",
  2064. "onmousedown": U.UF.C.closure(function (obj) {
  2065. //防止拖动图标即打开了桌面应用
  2066. U.MD.D.click(this, obj);
  2067. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2068. "onclick": U.UF.C.closure(function (obj) {
  2069. //防止拖动图标即打开了桌面应用
  2070. U.MD.D.click(this, obj);
  2071. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2072. }, _frag); //
  2073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2076. }
  2077. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2078. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2079. _content = $$("div", {
  2080. className: "U_MD_D_KO",
  2081. "onmousedown": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_hkTeacherDeskIconInfo[i]]),
  2085. "onclick": U.UF.C.closure(function (obj) {
  2086. //防止拖动图标即打开了桌面应用
  2087. U.MD.D.click(this, obj);
  2088. }, [_hkTeacherDeskIconInfo[i]])
  2089. }, _frag); //
  2090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2093. }
  2094. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2095. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2096. _content = $$("div", {
  2097. className: "U_MD_D_KO",
  2098. "onmousedown": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_hkaceTeacherDeskIconInfo[i]]),
  2102. "onclick": U.UF.C.closure(function (obj) {
  2103. //防止拖动图标即打开了桌面应用
  2104. U.MD.D.click(this, obj);
  2105. }, [_hkaceTeacherDeskIconInfo[i]])
  2106. }, _frag); //
  2107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2110. }
  2111. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2112. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2113. _content = $$("div", {
  2114. className: "U_MD_D_KO",
  2115. "onmousedown": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_gdjgAdminDeskIconInfo[i]]),
  2119. "onclick": U.UF.C.closure(function (obj) {
  2120. //防止拖动图标即打开了桌面应用
  2121. U.MD.D.click(this, obj);
  2122. }, [_gdjgAdminDeskIconInfo[i]])
  2123. }, _frag); //
  2124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2127. }
  2128. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2129. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2130. _content = $$("div", {
  2131. className: "U_MD_D_KO",
  2132. "onmousedown": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_gdjgTeacherDeskIconInfo[i]]),
  2136. "onclick": U.UF.C.closure(function (obj) {
  2137. //防止拖动图标即打开了桌面应用
  2138. U.MD.D.click(this, obj);
  2139. }, [_gdjgTeacherDeskIconInfo[i]])
  2140. }, _frag); //
  2141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2144. }
  2145. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2146. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2147. _content = $$("div", {
  2148. className: "U_MD_D_KO",
  2149. "onmousedown": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_szherTeacherDeskIconInfo[i]]),
  2153. "onclick": U.UF.C.closure(function (obj) {
  2154. //防止拖动图标即打开了桌面应用
  2155. U.MD.D.click(this, obj);
  2156. }, [_szherTeacherDeskIconInfo[i]])
  2157. }, _frag); //
  2158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2161. }
  2162. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2163. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2164. _content = $$("div", {
  2165. className: "U_MD_D_KO",
  2166. "onmousedown": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_heyuannAdminDeskIconInfo[i]]),
  2170. "onclick": U.UF.C.closure(function (obj) {
  2171. //防止拖动图标即打开了桌面应用
  2172. U.MD.D.click(this, obj);
  2173. }, [_heyuannAdminDeskIconInfo[i]])
  2174. }, _frag); //
  2175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2178. }
  2179. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2180. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2181. _content = $$("div", {
  2182. className: "U_MD_D_KO",
  2183. "onmousedown": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_heyuanTeacherDeskIconInfo[i]]),
  2187. "onclick": U.UF.C.closure(function (obj) {
  2188. //防止拖动图标即打开了桌面应用
  2189. U.MD.D.click(this, obj);
  2190. }, [_heyuanTeacherDeskIconInfo[i]])
  2191. }, _frag); //
  2192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2195. } //
  2196. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2197. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2198. _content = $$("div", {
  2199. className: "U_MD_D_KO",
  2200. "onmousedown": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_dseiAdminDeskIconInfo[i]]),
  2204. "onclick": U.UF.C.closure(function (obj) {
  2205. //防止拖动图标即打开了桌面应用
  2206. U.MD.D.click(this, obj);
  2207. }, [_dseiAdminDeskIconInfo[i]])
  2208. }, _frag); //
  2209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2212. }
  2213. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2214. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2215. _content = $$("div", {
  2216. className: "U_MD_D_KO",
  2217. "onmousedown": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_dseiTeacherDeskIconInfo[i]]),
  2221. "onclick": U.UF.C.closure(function (obj) {
  2222. //防止拖动图标即打开了桌面应用
  2223. U.MD.D.click(this, obj);
  2224. }, [_dseiTeacherDeskIconInfo[i]])
  2225. }, _frag); //
  2226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2229. } //
  2230. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2231. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2232. _content = $$("div", {
  2233. className: "U_MD_D_KO",
  2234. "onmousedown": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_chjyjAdminDeskIconInfo[i]]),
  2238. "onclick": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_chjyjAdminDeskIconInfo[i]])
  2242. }, _frag); //
  2243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2246. }//
  2247. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2248. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2249. _content = $$("div", {
  2250. className: "U_MD_D_KO",
  2251. "onmousedown": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_chjyjTeacherDeskIconInfo[i]]),
  2255. "onclick": U.UF.C.closure(function (obj) {
  2256. //防止拖动图标即打开了桌面应用
  2257. U.MD.D.click(this, obj);
  2258. }, [_chjyjTeacherDeskIconInfo[i]])
  2259. }, _frag); //
  2260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2263. }
  2264. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2265. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2266. _content = $$("div", {
  2267. className: "U_MD_D_KO",
  2268. "onmousedown": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_szjkyAdminDeskIconInfo[i]]),
  2272. "onclick": U.UF.C.closure(function (obj) {
  2273. //防止拖动图标即打开了桌面应用
  2274. U.MD.D.click(this, obj);
  2275. }, [_szjkyAdminDeskIconInfo[i]])
  2276. }, _frag); //
  2277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2280. }//
  2281. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2282. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2283. _content = $$("div", {
  2284. className: "U_MD_D_KO",
  2285. "onmousedown": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_szjkyTeacherDeskIconInfo[i]]),
  2289. "onclick": U.UF.C.closure(function (obj) {
  2290. //防止拖动图标即打开了桌面应用
  2291. U.MD.D.click(this, obj);
  2292. }, [_szjkyTeacherDeskIconInfo[i]])
  2293. }, _frag); //
  2294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2297. }
  2298. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2299. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2300. _content = $$("div", {
  2301. className: "U_MD_D_KO",
  2302. "onmousedown": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_futianAdminDeskIconInfo[i]]),
  2306. "onclick": U.UF.C.closure(function (obj) {
  2307. //防止拖动图标即打开了桌面应用
  2308. U.MD.D.click(this, obj);
  2309. }, [_futianAdminDeskIconInfo[i]])
  2310. }, _frag); //
  2311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2314. }
  2315. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2316. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2317. _content = $$("div", {
  2318. className: "U_MD_D_KO",
  2319. "onmousedown": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_futianTeacherDeskIconInfo[i]]),
  2323. "onclick": U.UF.C.closure(function (obj) {
  2324. //防止拖动图标即打开了桌面应用
  2325. U.MD.D.click(this, obj);
  2326. }, [_futianTeacherDeskIconInfo[i]])
  2327. }, _frag); //
  2328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2331. }
  2332. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2333. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2334. _content = $$("div", {
  2335. className: "U_MD_D_KO",
  2336. "onmousedown": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_MingdeTeacherDeskIcon[i]]),
  2340. "onclick": U.UF.C.closure(function (obj) {
  2341. //防止拖动图标即打开了桌面应用
  2342. U.MD.D.click(this, obj);
  2343. }, [_MingdeTeacherDeskIcon[i]])
  2344. }, _frag); //
  2345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2348. }
  2349. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2350. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_lhsAdminDesktopIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_lhsAdminDesktopIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2365. }
  2366. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2367. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_lhsteacherDesktopIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_lhsteacherDesktopIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2384. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2385. _content = $$("div", {
  2386. className: "U_MD_D_KO",
  2387. "onmousedown": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2391. "onclick": U.UF.C.closure(function (obj) {
  2392. //防止拖动图标即打开了桌面应用
  2393. U.MD.D.click(this, obj);
  2394. }, [_zhoujiateacherDesktopIconInfo[i]])
  2395. }, _frag); //
  2396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2399. }
  2400. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2401. for (i = 0; i < _hanDeskIcon.length; i++) {
  2402. _content = $$("div", {
  2403. className: "U_MD_D_KO",
  2404. "onmousedown": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_hanDeskIcon[i]]),
  2408. "onclick": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_hanDeskIcon[i]])
  2412. }, _frag); //
  2413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2416. }
  2417. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2418. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2419. _content = $$("div", {
  2420. className: "U_MD_D_KO",
  2421. "onmousedown": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_orgStemDeskIcon[i]]),
  2425. "onclick": U.UF.C.closure(function (obj) {
  2426. //防止拖动图标即打开了桌面应用
  2427. U.MD.D.click(this, obj);
  2428. }, [_orgStemDeskIcon[i]])
  2429. }, _frag); //
  2430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2433. }
  2434. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2435. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_szulsDeskIcon[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_szulsDeskIcon[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2450. }
  2451. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2452. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2453. _content = $$("div", {
  2454. className: "U_MD_D_KO",
  2455. "onmousedown": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_orgDesktopIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_orgDesktopIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2467. }
  2468. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2469. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2470. _content = $$("div", {
  2471. className: "U_MD_D_KO",
  2472. "onmousedown": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_schoolDesktopIconInfo[i]]),
  2476. "onclick": U.UF.C.closure(function (obj) {
  2477. //防止拖动图标即打开了桌面应用
  2478. U.MD.D.click(this, obj);
  2479. }, [_schoolDesktopIconInfo[i]])
  2480. }, _frag); //
  2481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2484. }
  2485. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2486. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_GMteacherDesktopIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_GMteacherDesktopIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2503. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_SONGteacherDesktopIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_SONGteacherDesktopIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2518. }
  2519. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2520. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_GMstudentDesktopIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_GMstudentDesktopIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2535. }
  2536. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2537. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_tcTeacherDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_tcTeacherDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2554. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_tcOrganizerDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_tcOrganizerDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2571. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_szscTeacherDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_szscTeacherDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2588. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_szscOrganizerDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_szscOrganizerDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else {
  2605. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_teacherDesktopIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_teacherDesktopIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2620. }
  2621. }
  2622. } else {
  2623. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. style: { 'width': '124px', 'height': '145px' },
  2627. "onmousedown": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_easyDesktopIconInfo[i]]),
  2631. "onclick": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_easyDesktopIconInfo[i]])
  2635. }, _frag); //
  2636. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2637. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2638. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2639. }
  2640. }
  2641. if (type == 1) {
  2642. //加载好后给图标定位
  2643. U.MD.D.iconPostion($(_frag).Child());
  2644. } else {
  2645. //加载好后给图标定位
  2646. U.MD.D.iconPostion2($(_frag).Child());
  2647. }
  2648. //把图标加载到页面
  2649. el.appendChild(_frag);
  2650. }
  2651. /**
  2652. * 显示任务栏
  2653. *
  2654. * @param {element} 桌面元素
  2655. */
  2656. U.MD.D.I.displayTaskbar = function (el) {
  2657. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2658. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2659. //任务栏位置变化
  2660. U.selectEl(el).css({ "bottom": "0px" });
  2661. //桌面位置变话
  2662. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2663. }
  2664. }
  2665. //#region 桌面图标拖动逻辑
  2666. /**
  2667. * 桌面排列图标
  2668. *
  2669. * @param {element} 桌面元素
  2670. * @param {object} 上下相距的距离
  2671. * @param {object} 左右相距的距离
  2672. * @return {object} 命名空间
  2673. */
  2674. U.MD.D.iconPostion = function (childs, top, left) {
  2675. var i; //用于循环处理
  2676. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2677. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2678. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2679. for (i = 0; i < childs.length; i++) {
  2680. //如果竖排top超过了范围处理
  2681. if (top + 95 > US.height - 10) {
  2682. //left超过了页面范围处理,则向上重叠打印处理
  2683. if ((left + 180) > US.width) {
  2684. top -= 110;
  2685. left -= 90;
  2686. }
  2687. //没有超过范围,那么left+90添加到下一个竖排打印
  2688. else {
  2689. left += 90;
  2690. top = 15;
  2691. };
  2692. }
  2693. //给图标的位置赋值
  2694. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2695. if (i < childs.length - 1) {
  2696. //页面图标每次向下加95
  2697. top += 95;
  2698. }
  2699. }
  2700. //返回最后调用的图标的位置
  2701. return [top, left];
  2702. }
  2703. /**
  2704. * 桌面排列图标
  2705. *
  2706. * @param {element} 桌面元素
  2707. * @param {object} 上下相距的距离
  2708. * @param {object} 左右相距的距离
  2709. * @return {object} 命名空间
  2710. */
  2711. U.MD.D.iconPostion2 = function (childs, top, left) {
  2712. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2713. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2714. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2715. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2716. for (i = 0; i < childs.length; i++) {
  2717. //如果竖排top超过了范围处理
  2718. if (left + 150 > US.width - 10) {
  2719. //left超过了页面范围处理,则向上重叠打印处理
  2720. if ((top + 180) > US.Height) {
  2721. top -= 150;
  2722. left -= 150;
  2723. }
  2724. //没有超过范围,那么left+90添加到下一个竖排打印
  2725. else {
  2726. top += 150;
  2727. left = ol;
  2728. };
  2729. }
  2730. //给图标的位置赋值
  2731. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2732. if (i < childs.length - 1) {
  2733. //页面图标每次向下加95
  2734. left += 150;
  2735. }
  2736. }
  2737. //返回最后调用的图标的位置
  2738. return [top, left];
  2739. }
  2740. /**
  2741. * 桌面点击事件逻辑
  2742. *
  2743. * @param {element} 桌面元素
  2744. * @param {object} 上下相距的距离
  2745. * @param {object} 左右相距的距离
  2746. * @return {object} 命名空间
  2747. */
  2748. U.MD.D.click = function (el, obj) {
  2749. var _buttonnumber = event.button; //点击的按钮的事件值
  2750. var _userinfo = US.userInfo;
  2751. U.UF.EV.stopBubble(); //阻止向上冒泡
  2752. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2753. if (_buttonnumber < 2) {
  2754. //如果是click事件的处理
  2755. if (event.type == "click") {
  2756. //如果元素在mousemove事件中没有移动则出发click事件
  2757. if (!U.MD.D.I.IsDrag) {
  2758. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2759. U.alert("请先登录您的账号!");
  2760. setTimeout(() => {
  2761. U.MD.U.L.login();
  2762. }, 2000);
  2763. } else {
  2764. //打开应用处理
  2765. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2766. }
  2767. }
  2768. }
  2769. //如果是mouse事件的处理
  2770. else {
  2771. if (US.Config.type == '1') {
  2772. //拖动处理,添加拖动和拖动结束事件
  2773. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2774. }
  2775. }
  2776. U.MD.D.I.IsDrag = false;
  2777. }
  2778. }
  2779. /**
  2780. * 拖动的处理
  2781. *
  2782. */
  2783. U.MD.D.iconMove = function () {
  2784. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2785. U.MD.D.I.IsDrag = true;
  2786. }
  2787. /**
  2788. * 拖动结束后,这里是定位处理,以网状的形式定位
  2789. *
  2790. * @param {element} 拖动的元素
  2791. * @return {object} 命名空间
  2792. */
  2793. U.MD.D.iconUp = function (el) {
  2794. var _top = 15,
  2795. _left = 20,
  2796. _margin,
  2797. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2798. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2799. if (_positioninfo["OT"] > 15) {
  2800. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2801. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2802. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2803. }
  2804. if (_positioninfo["OL"] > 20) {
  2805. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2806. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2807. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2808. }
  2809. //while循环判断么一个重叠的元素
  2810. do {
  2811. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2812. _top = _positioninfo[0] + 95; //得到定位后的top
  2813. _left = _positioninfo[1]; //得到定位后的left
  2814. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2815. }
  2816. /**
  2817. * 判断拖动后图标是否重叠
  2818. *
  2819. * @param {element} 拖动的元素
  2820. * @param {element} 桌面所有的元素
  2821. * @param {array} 拖动元素的位置
  2822. ----------[0] 上 top
  2823. ----------[1] 左 left
  2824. * @return {object} 命名空间
  2825. */
  2826. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2827. //循环所有的图标
  2828. for (var i = 0; i < childs.length; i++) {
  2829. //判断有没有和该图标诶子重叠的元素
  2830. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2831. return childs[i]; //如果有返回
  2832. }
  2833. }
  2834. }
  2835. //#endregion
  2836. //#endregion
  2837. //#region 桌面应用
  2838. /**
  2839. * 打开应用
  2840. *
  2841. * @param {string} 类型
  2842. -----------------Disk 网盘系统
  2843. -----------------PDisk 学习系统网盘
  2844. -----------------Poto 图片
  2845. -----------------Video 视频
  2846. -----------------Music 音乐
  2847. -----------------Word word
  2848. -----------------Excel excel
  2849. -----------------Txt 记事本
  2850. -----------------PB 学习系统
  2851. -----------------Blog 朋友圈系统
  2852. -----------------FTP ftp系统
  2853. -----------------Group 好友群
  2854. -----------------SY 首页系统
  2855. -----------------Set 个人设置
  2856. -----------------XSet 系统设置
  2857. -----------------App 我们所有的app
  2858. -----------------BC c.1473.cn 平台
  2859. -----------------CWeb d.1473.cn 变成平台
  2860. -----------------其他的外联系统 我们统一用iframe打开
  2861. * @param {array} 类型
  2862. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2863. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2864. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2865. 如果第一个参数为其他,则无第二个参数
  2866. * @returns {array}
  2867. */
  2868. window.addEventListener('message', function (e) { // 监听 message 事件
  2869. // alert(e.data.type);
  2870. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2871. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2872. //3是展示全部阶段 2学生 1老师 4专家
  2873. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2874. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2875. //3是展示全部阶段 2学生 1老师 4专家
  2876. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2877. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2878. //3是展示全部阶段 2学生 1老师 4专家
  2879. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2880. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2881. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2882. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2883. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2884. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2885. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2886. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2887. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2888. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2889. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2890. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2891. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2892. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2893. //3是展示全部阶段 2学生 1老师 4专家
  2894. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2895. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2896. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2897. U.MD.D.I.selectUser();
  2898. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2899. var _formel = document.getElementById("study");
  2900. U.UF.F.windowZooming(_formel);
  2901. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2902. var _formel = document.getElementById("studyDetail");
  2903. U.UF.F.windowZooming(_formel);
  2904. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2905. var _formel = document.getElementById("studyDetail");
  2906. U.UF.F.windowZooming(_formel);
  2907. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2908. var _formel = document.getElementById("studentStudy");
  2909. U.UF.F.windowZooming(_formel);
  2910. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2911. // var _formel = document.getElementById("study");
  2912. //如果最大化了,那么就把他缩小
  2913. // if (_formel.ismaximize) {
  2914. // return;
  2915. // }
  2916. // U.UF.F.windowZooming(_formel);
  2917. // U.UF.F.topWindow(_formel);
  2918. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2919. // var _formel = document.getElementById("studyDetail");
  2920. //如果最大化了,那么就把他缩小
  2921. // if (_formel.ismaximize) {
  2922. // return;
  2923. // }
  2924. // U.UF.F.windowZooming(_formel);
  2925. // U.UF.F.topWindow(_formel);
  2926. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2927. // var _formel = document.getElementById("studentStudy");
  2928. // if (_formel.ismaximize) {
  2929. // return;
  2930. // }
  2931. // U.UF.F.windowZooming(_formel);
  2932. // U.UF.F.topWindow(_formel);
  2933. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2934. var _formel = document.getElementById("study");
  2935. // if (_formel.ismaximize) {
  2936. // return;
  2937. // }
  2938. // U.UF.F.windowZooming(_formel);
  2939. U.UF.F.topWindow(_formel);
  2940. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2941. var _formel = document.getElementById("studentIndex");
  2942. U.UF.F.windowZooming(_formel);
  2943. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2944. var _formel = document.getElementById("studyDetailS");
  2945. U.UF.F.windowZooming(_formel);
  2946. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2947. var _formel = document.getElementById("studioIndex");
  2948. U.UF.F.windowZooming(_formel);
  2949. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2950. var _formel = document.getElementById("studyDetailStudio");
  2951. U.UF.F.windowZooming(_formel);
  2952. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2953. var _formel = document.getElementById("studyDetailStudio");
  2954. U.UF.F.windowZooming(_formel);
  2955. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2956. var _formel = document.getElementById("studyDetailNT");
  2957. U.UF.F.windowZooming(_formel);
  2958. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2959. var _formel = document.getElementById("studyDetailS");
  2960. U.UF.F.windowZooming(_formel);
  2961. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2962. var _formel = document.getElementById("studyDetailS");
  2963. U.UF.F.topWindow(_formel);
  2964. } else if (e.data.tools && e.data.tools == "1") {
  2965. // U.MD.D.I.openApplication("whiteboard")
  2966. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2967. } else if (e.data.tools && e.data.tools == "2") {
  2968. U.MD.D.I.openApplication("note")
  2969. } else if (e.data.tools && e.data.tools == "3") {
  2970. // U.MD.D.I.openApplication("mind")
  2971. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2972. } else if (e.data.tools && e.data.tools == "4") {
  2973. U.MD.D.I.openApplication("investigation")
  2974. } else if (e.data.tools && e.data.tools == "6") {
  2975. // U.MD.D.I.openApplication("doc")
  2976. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2977. } else if (e.data.tools && e.data.tools == "7") {
  2978. // U.MD.D.I.openApplication("mindNetwork")
  2979. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2980. } else if (e.data.tools && e.data.tools == "8") {
  2981. U.MD.D.I.openApplication("library")
  2982. } else if (e.data.tools && e.data.tools == "17") {
  2983. U.MD.D.I.openApplication("stuLibrary")
  2984. } else if (e.data.tools && e.data.tools == "18") {
  2985. U.MD.D.I.openApplication("train")
  2986. } else if (e.data.tools && e.data.tools == "21") {
  2987. U.MD.D.I.openApplication("program")
  2988. } else if (e.data.tools && e.data.tools == "22") {
  2989. U.MD.D.I.openApplication("AIprogram2")
  2990. } else if (e.data.tools && e.data.tools == "23") {
  2991. U.MD.D.I.openApplication("Pythonprogram")
  2992. } else if (e.data.tools && e.data.tools == "24") {
  2993. U.MD.D.I.openApplication("AIprogram")
  2994. } else if (e.data.tools && e.data.tools == "25") {
  2995. U.MD.D.I.openApplication("sys")
  2996. } else if (e.data.tools && e.data.tools == "26") {
  2997. // U.MD.D.I.openApplication("courseDesign")
  2998. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2999. } else if (e.data.tools && e.data.tools == "31") {
  3000. U.MD.D.I.openApplication("netWorkPanel")
  3001. } else if (e.data.tools && e.data.tools == "32") {
  3002. U.MD.D.I.openApplication("codeEdit")
  3003. } else if (e.data.tools && e.data.tools == "57") {
  3004. U.MD.D.I.openApplication("CocoPi")
  3005. } else if (e.data.tools && e.data.tools == "63") {
  3006. U.MD.D.I.openApplication("Wood")
  3007. } else if (e.data.tools && e.data.tools == "58") {
  3008. U.MD.D.I.openApplication("car")
  3009. } else if (e.data.tools && e.data.tools == "59") {
  3010. U.MD.D.I.openApplication("lineSearch")
  3011. } else if (e.data.tools && e.data.tools == "60") {
  3012. U.MD.D.I.openApplication("deepLearning")
  3013. } else if (e.data.tools && e.data.tools == "61") {
  3014. U.MD.D.I.openApplication("allHistory")
  3015. } else if (e.data.tools && e.data.tools == "28") {
  3016. U.MD.D.I.openApplication("translation")
  3017. } else if (e.data.tools && e.data.tools == "37") {
  3018. U.MD.D.I.openApplication("mohe")
  3019. } else if (e.data.tools && e.data.tools == "38") {
  3020. U.MD.D.I.openApplication("24game")
  3021. } else if (e.data.tools && e.data.tools == "39") {
  3022. U.MD.D.I.openApplication("GeoGebra")
  3023. } else if (e.data.tools && e.data.tools == "43") {
  3024. U.MD.D.I.openApplication("studentEvaluate")
  3025. } else if (e.data.tools && e.data.tools == "44") {
  3026. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3027. } else if (e.data.tools && e.data.tools == "46") {
  3028. U.MD.D.I.openApplication("project")
  3029. } else if (e.data.tools && e.data.tools == "71") {
  3030. U.MD.D.I.openApplication("aigptCourse")
  3031. } else if (e.data.tools && e.data.tools == "1s") {
  3032. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3033. } else if (e.data.tools && e.data.tools == "3s") {
  3034. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3035. } else if (e.data.tools && e.data.tools == "6s") {
  3036. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3037. } else if (e.data.tools && e.data.tools == "1studio") {
  3038. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3039. } else if (e.data.tools && e.data.tools == "3studio") {
  3040. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3041. } else if (e.data.tools && e.data.tools == "6studio") {
  3042. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3043. } else if (e.data.tools && e.data.tools == "3y") {
  3044. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3045. } else if (e.data.tools && e.data.tools == "1y") {
  3046. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3047. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3048. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3049. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3050. U.MD.D.I.openApplication("AIAnalyse")
  3051. } else if (e.data.tools && e.data.tools == "1teacher") {
  3052. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3053. } else if (e.data.tools && e.data.tools == "3teacher") {
  3054. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3055. } else if (e.data.tools && e.data.tools == "7teacher") {
  3056. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3057. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3058. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3059. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3060. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3061. } else if (e.data.tools && e.data.tools == "1E") {
  3062. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3063. } else if (e.data.tools && e.data.tools == "3E") {
  3064. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3065. } else if (e.data.tools && e.data.tools == "57y") {
  3066. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3067. } else if (e.data.tools && e.data.tools == "57u") {
  3068. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3069. } else if (e.data.tools && e.data.tools == "57teacher") {
  3070. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3071. } else if (e.data.tools && e.data.tools == "64") {
  3072. U.MD.D.I.openApplication("AIChat")
  3073. } else if (e.data.tools && e.data.tools == "66") {
  3074. U.MD.D.I.openApplication("formulaEdi")
  3075. } else if (e.data.tools && e.data.tools == "67") {
  3076. U.MD.D.I.openApplication("molStr")
  3077. } else if (e.data.tools && e.data.tools == "68") {
  3078. U.MD.D.I.openApplication("timeAxis")
  3079. } else if (e.data.tools && e.data.tools == "openCourse") {
  3080. let _data = {
  3081. typea: e.data.typea || '',
  3082. typeb: e.data.typeb || '',
  3083. typed: e.data.typed || '',
  3084. }
  3085. U.MD.D.I.openInApplication("index", _data)
  3086. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3087. let _data = {
  3088. classid: e.data.classid || '',
  3089. }
  3090. U.MD.D.I.openInApplication("dataClass", _data)
  3091. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3092. let _data = {
  3093. cid: e.data.cid || '',
  3094. gid: e.data.gid || '',
  3095. }
  3096. U.MD.D.I.openInApplication("opencCscl", _data)
  3097. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3098. U.MD.D.I.openApplication("dataBoardTest")
  3099. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3100. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3101. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3102. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3103. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3104. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3105. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3106. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3107. }else if (e.data.tools && e.data.tools == "loginSz") {
  3108. U.MD.D.I.openInApplication("loginSz")
  3109. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3110. if($('#classroom_observation_board')[0]){
  3111. // U.UF.F.closeWindow($('#classroom_observation_board'))
  3112. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3113. }
  3114. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3115. }
  3116. });
  3117. U.MD.D.I.selectUser = function () {
  3118. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3119. if (res.value[0].length > 0) {
  3120. US.userInfo = res.value[0][0];
  3121. $(".userName")[0].innerHTML = US.userInfo.username;
  3122. }
  3123. }, [], { "type": "GET", "withCredentials": true });
  3124. }
  3125. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3126. var _userinfo = US.userInfo, //登录用户信息
  3127. _userid = US.userInfo.userid, //登录用户id
  3128. _oid = _userinfo.organizeid,
  3129. _type = US.userInfo.type,
  3130. _org = US.userInfo.org,
  3131. _role = US.userInfo.role,
  3132. _classId = US.userInfo.classid;
  3133. if (_type == 4) {
  3134. tType = 4
  3135. }
  3136. switch (str) {
  3137. case "studyDetailNT": //无终端模式
  3138. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3139. setTimeout(() => {
  3140. U.MD.U.L.login();
  3141. }, 2000);
  3142. } else {
  3143. _formdiv = new U.UF.UI.form(
  3144. "课程详情",
  3145. $$("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 }), {
  3146. "id": "studyDetailNT",
  3147. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3148. "onresize": function () { }
  3149. }, {
  3150. closecallback: function () { }
  3151. }, { "style": { "height": "36px" } }).form; //创建窗体
  3152. _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); } }
  3153. break;
  3154. }
  3155. case "studyDetail":
  3156. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3157. setTimeout(() => {
  3158. U.MD.U.L.login();
  3159. }, 2000);
  3160. } else {
  3161. _formdiv = new U.UF.UI.form(
  3162. "课程详情",
  3163. $$("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 }), {
  3164. "id": "studyDetail",
  3165. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3166. "onresize": function () { }
  3167. }, {
  3168. closecallback: function () { }
  3169. }, { "style": { "height": "36px" } }).form; //创建窗体
  3170. _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); } }
  3171. break;
  3172. }
  3173. case "studyDetailTrain":
  3174. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3175. setTimeout(() => {
  3176. U.MD.U.L.login();
  3177. }, 2000);
  3178. } else {
  3179. _formdiv = new U.UF.UI.form(
  3180. "培训详情",
  3181. $$("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 }), {
  3182. "id": "studyDetailTrain",
  3183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3184. "onresize": function () { }
  3185. }, {
  3186. closecallback: function () { }
  3187. }, { "style": { "height": "36px" } }).form; //创建窗体
  3188. _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); } }
  3189. break;
  3190. }
  3191. case "studyDetailS":
  3192. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3193. setTimeout(() => {
  3194. U.MD.U.L.login();
  3195. }, 2000);
  3196. } else {
  3197. _formdiv = new U.UF.UI.form(
  3198. "项目详情",
  3199. $$("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 }), {
  3200. "id": "studyDetailS",
  3201. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3202. "onresize": function () { }
  3203. }, {
  3204. closecallback: function () { }
  3205. }, { "style": { "height": "36px" } }).form; //创建窗体
  3206. _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); } }
  3207. break;
  3208. }
  3209. case "studyDetailStudio":
  3210. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3211. setTimeout(() => {
  3212. U.MD.U.L.login();
  3213. }, 2000);
  3214. } else {
  3215. _formdiv = new U.UF.UI.form(
  3216. "工作详情",
  3217. $$("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 }), {
  3218. "id": "studyDetailStudio",
  3219. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3220. "onresize": function () { }
  3221. }, {
  3222. closecallback: function () { }
  3223. }, { "style": { "height": "36px" } }).form; //创建窗体
  3224. _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); } }
  3225. break;
  3226. }
  3227. case "studyDetailS5":
  3228. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3229. setTimeout(() => {
  3230. U.MD.U.L.login();
  3231. }, 2000);
  3232. } else {
  3233. _formdiv = new U.UF.UI.form(
  3234. "项目详情",
  3235. $$("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 }), {
  3236. "id": "studyDetailS",
  3237. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3238. "onresize": function () { }
  3239. }, {
  3240. closecallback: function () { }
  3241. }, { "style": { "height": "36px" } }).form; //创建窗体
  3242. _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); } }
  3243. break;
  3244. }
  3245. case "studyDetailGM":
  3246. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3247. setTimeout(() => {
  3248. U.MD.U.L.login();
  3249. }, 2000);
  3250. } else {
  3251. _formdiv = new U.UF.UI.form(
  3252. "课程详情",
  3253. $$("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 }), {
  3254. "id": "studyDetail",
  3255. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3256. "onresize": function () { }
  3257. }, {
  3258. closecallback: function () { }
  3259. }, { "style": { "height": "36px" } }).form; //创建窗体
  3260. _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); } }
  3261. break;
  3262. }
  3263. case "hanUrl":
  3264. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3265. setTimeout(() => {
  3266. U.MD.U.L.login();
  3267. }, 2000);
  3268. } else {
  3269. _formdiv = new U.UF.UI.form(
  3270. "汉字宫",
  3271. $$("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" }), {
  3272. "id": "hanUrl",
  3273. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3274. "onresize": function () { }
  3275. }, {
  3276. closecallback: function () { }
  3277. }, { "style": { "height": "36px" } }).form; //创建窗体
  3278. _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); } }
  3279. break;
  3280. }
  3281. case "index":
  3282. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3283. setTimeout(() => {
  3284. U.MD.U.L.login();
  3285. }, 2000);
  3286. } else {
  3287. _formdiv = new U.UF.UI.form(
  3288. "课程中心",
  3289. $$("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 }), {
  3290. "id": "study",
  3291. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3292. "onresize": function () { }
  3293. }, {
  3294. closecallback: function () { }
  3295. }, { "style": { "height": "36px" } }).form; //创建窗体
  3296. _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); } }
  3297. break;
  3298. }
  3299. case "dataClass":
  3300. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3301. setTimeout(() => {
  3302. U.MD.U.L.login();
  3303. }, 2000);
  3304. } else {
  3305. _formdiv = new U.UF.UI.form(
  3306. "数据报告",
  3307. $$("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 }), {
  3308. "id": "dataClass",
  3309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3310. "onresize": function () { }
  3311. }, {
  3312. closecallback: function () { }
  3313. }, { "style": { "height": "36px" } }).form; //创建窗体
  3314. _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); } }
  3315. break;
  3316. }
  3317. case "opencCscl":
  3318. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3319. setTimeout(() => {
  3320. U.MD.U.L.login();
  3321. }, 2000);
  3322. } else {
  3323. _formdiv = new U.UF.UI.form(
  3324. "协同建构",
  3325. $$("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 }), {
  3326. "id": "futureClass",
  3327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3328. "onresize": function () { }
  3329. }, {
  3330. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3331. }, { "style": { "height": "36px" } }).form; //创建窗体
  3332. _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); } }
  3333. break;
  3334. }
  3335. case "openCourseUpdate":
  3336. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3337. setTimeout(() => {
  3338. U.MD.U.L.login();
  3339. }, 2000);
  3340. } else {
  3341. _formdiv = new U.UF.UI.form(
  3342. "课程管理",
  3343. $$("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 }), {
  3344. "id": "openCourseUpdate",
  3345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3346. "onresize": function () { }
  3347. }, {
  3348. closecallback: function () { }
  3349. }, { "style": { "height": "36px" } }).form; //创建窗体
  3350. break;
  3351. }
  3352. case "openNewCourseUpdate":
  3353. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3354. setTimeout(() => {
  3355. U.MD.U.L.login();
  3356. }, 2000);
  3357. } else {
  3358. _formdiv = new U.UF.UI.form(
  3359. "课程管理",
  3360. $$("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 }), {
  3361. "id": "openCourseUpdate",
  3362. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3363. "onresize": function () { }
  3364. }, {
  3365. closecallback: function () { }
  3366. }, { "style": { "height": "36px" } }).form; //创建窗体
  3367. break;
  3368. }
  3369. case "openCourseEUpdate":
  3370. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3371. setTimeout(() => {
  3372. U.MD.U.L.login();
  3373. }, 2000);
  3374. } else {
  3375. _formdiv = new U.UF.UI.form(
  3376. "课程管理",
  3377. $$("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 }), {
  3378. "id": "openCourseUpdate",
  3379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3380. "onresize": function () { }
  3381. }, {
  3382. closecallback: function () { }
  3383. }, { "style": { "height": "36px" } }).form; //创建窗体
  3384. break;
  3385. }
  3386. case "openCourseNewUpdate":
  3387. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3388. setTimeout(() => {
  3389. U.MD.U.L.login();
  3390. }, 2000);
  3391. } else {
  3392. _formdiv = new U.UF.UI.form(
  3393. "课程管理",
  3394. $$("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 }), {
  3395. "id": "openCourseUpdate",
  3396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3397. "onresize": function () { }
  3398. }, {
  3399. closecallback: function () { }
  3400. }, { "style": { "height": "36px" } }).form; //创建窗体
  3401. break;
  3402. }
  3403. case "inviteLoginSz":
  3404. _formdiv = new U.UF.UI.form(
  3405. "随机码登录",
  3406. $$("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 }), {
  3407. "id": "loginSz",
  3408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3409. "onresize": function () { }
  3410. }, {
  3411. closecallback: function () { }
  3412. }, { "style": { "height": "36px" } }).form; //创建窗体
  3413. break;
  3414. case "loginSz":
  3415. _formdiv = new U.UF.UI.form(
  3416. "教师登录",
  3417. $$("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" }), {
  3418. "id": "loginSz",
  3419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3420. "onresize": function () { }
  3421. }, {
  3422. closecallback: function () { }
  3423. }, { "style": { "height": "36px" } }).form; //创建窗体
  3424. break;
  3425. case "teacher":
  3426. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3427. setTimeout(() => {
  3428. U.MD.U.L.login();
  3429. }, 2000);
  3430. } else {
  3431. _formdiv = new U.UF.UI.form(
  3432. "教师管理",
  3433. $$("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 }), {
  3434. "id": "teacher",
  3435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3436. "onresize": function () { }
  3437. }, {
  3438. closecallback: function () { }
  3439. }, { "style": { "height": "36px" } }).form; //创建窗体
  3440. break;
  3441. }
  3442. case "dataBoardSZArea":
  3443. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3444. setTimeout(() => {
  3445. U.MD.U.L.login();
  3446. }, 2000);
  3447. } else {
  3448. _formdiv = new U.UF.UI.form(
  3449. "综合数据看板",
  3450. $$("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 }), {
  3451. "id": "dataBoardSZArea",
  3452. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3453. "onresize": function () { }
  3454. }, {
  3455. closecallback: function () { }
  3456. }, { "style": { "height": "36px" } }).form; //创建窗体
  3457. break;
  3458. }
  3459. case "dataBoardSZCity":
  3460. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3461. setTimeout(() => {
  3462. U.MD.U.L.login();
  3463. }, 2000);
  3464. } else {
  3465. _formdiv = new U.UF.UI.form(
  3466. "综合数据看板",
  3467. $$("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 }), {
  3468. "id": "dataBoardSZCity",
  3469. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3470. "onresize": function () { }
  3471. }, {
  3472. closecallback: function () { }
  3473. }, { "style": { "height": "36px" } }).form; //创建窗体
  3474. break;
  3475. }
  3476. case "classroom_observation_board":
  3477. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3478. setTimeout(() => {
  3479. U.MD.U.L.login();
  3480. }, 2000);
  3481. } else {
  3482. _formdiv = new U.UF.UI.form(
  3483. "课堂观察",
  3484. $$("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 }), {
  3485. "id": "classroom_observation_board",
  3486. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3487. "onresize": function () { }
  3488. }, {
  3489. closecallback: function () { }
  3490. }, { "style": { "height": "36px" } }).form; //创建窗体
  3491. break;
  3492. }
  3493. }
  3494. }
  3495. U.MD.D.I.openApplication = function (str, obj, info) {
  3496. obj = obj || {};
  3497. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3498. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3499. _userinfo = US.userInfo, //登录用户信息
  3500. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3501. _oid = obj.organizeid || _userinfo.organizeid,
  3502. _type = US.userInfo.type,
  3503. _org = US.userInfo.org,
  3504. _role = US.userInfo.role,
  3505. _classId = US.userInfo.classid,
  3506. _TscreenType = 1
  3507. _screenType = 2,
  3508. _SscreenType = 3;
  3509. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3510. return;
  3511. }
  3512. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3513. switch (str) {
  3514. case "studnetProject": //好友打开
  3515. _formdiv = new U.UF.UI.form(
  3516. "我的项目",
  3517. $$("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 }), {
  3518. "id": "studnetProject",
  3519. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3520. "onresize": function () { }
  3521. }, {
  3522. closecallback: function () { }
  3523. }, { "style": { "height": "36px" } }).form; //创建窗体
  3524. _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); } }
  3525. break;
  3526. case "studentEvaluate": //好友打开
  3527. _formdiv = new U.UF.UI.form(
  3528. "我的评价",
  3529. $$("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 }), {
  3530. "id": "studentEvaluate",
  3531. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3532. "onresize": function () { }
  3533. }, {
  3534. closecallback: function () { }
  3535. }, { "style": { "height": "36px" } }).form; //创建窗体
  3536. _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); } }
  3537. break;
  3538. case "my":
  3539. _formdiv = new U.UF.UI.form(
  3540. "我的资料",
  3541. $$("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 }), {
  3542. "id": "my",
  3543. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3544. "onresize": function () { }
  3545. }, {
  3546. closecallback: function () { }
  3547. }, { "style": { "height": "36px" } }).form; //创建窗体
  3548. _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); } }
  3549. break;
  3550. case "program":
  3551. _formdiv = new U.UF.UI.form(
  3552. "编程平台",
  3553. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3554. "id": "program",
  3555. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3556. "onresize": function () { }
  3557. }, {
  3558. closecallback: function () { }
  3559. }, { "style": { "height": "36px" } }).form; //创建窗体
  3560. _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); } }
  3561. break;
  3562. case "library":
  3563. _formdiv = new U.UF.UI.form(
  3564. "素材库",
  3565. $$("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 }), {
  3566. "id": "library",
  3567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3568. "onresize": function () { }
  3569. }, {
  3570. closecallback: function () { }
  3571. }, { "style": { "height": "36px" } }).form; //创建窗体
  3572. _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); } }
  3573. break;
  3574. case "whiteboard":
  3575. _formdiv = new U.UF.UI.form(
  3576. "电子白板",
  3577. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3578. "id": "whiteboard",
  3579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3580. "onresize": function () { }
  3581. }, {
  3582. closecallback: function () { }
  3583. }, { "style": { "height": "36px" } }).form; //创建窗体
  3584. _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); } }
  3585. break;
  3586. case "investigation":
  3587. _formdiv = new U.UF.UI.form(
  3588. "问卷调查",
  3589. $$("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 }), {
  3590. "id": "investigation",
  3591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3592. "onresize": function () { }
  3593. }, {
  3594. closecallback: function () { }
  3595. }, { "style": { "height": "36px" } }).form; //创建窗体
  3596. _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); } }
  3597. break;
  3598. case "note":
  3599. _formdiv = new U.UF.UI.form(
  3600. "便签分类",
  3601. $$("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 }), {
  3602. "id": "note",
  3603. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3604. "onresize": function () { }
  3605. }, {
  3606. closecallback: function () { }
  3607. }, { "style": { "height": "36px" } }).form; //创建窗体
  3608. _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); } }
  3609. break;
  3610. // case "score":
  3611. // _formdiv = new U.UF.UI.form(
  3612. // "量规评分",
  3613. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3614. // "id": "score",
  3615. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3616. // "onresize": function() {}
  3617. // }, {
  3618. // closecallback: function() {}
  3619. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3620. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  3621. // break;
  3622. case "mind":
  3623. _formdiv = new U.UF.UI.form(
  3624. "思维导图",
  3625. $$("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"
  3626. "id": "mind",
  3627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3628. "onresize": function () { }
  3629. }, {
  3630. closecallback: function () { }
  3631. }, { "style": { "height": "36px" } }).form; //创建窗体
  3632. _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); } }
  3633. break;
  3634. case "doc":
  3635. // U.MD.D.I.isRoom();
  3636. _formdiv = new U.UF.UI.form(
  3637. "协同文档",
  3638. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3639. "id": "doc",
  3640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3641. "onresize": function () { }
  3642. }, {
  3643. closecallback: function () { }
  3644. }, { "style": { "height": "36px" } }).form; //创建窗体
  3645. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3646. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3647. // })
  3648. _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); } }
  3649. break;
  3650. case "studentStudy":
  3651. _formdiv = new U.UF.UI.form(
  3652. "课程中心",
  3653. $$("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
  3654. "id": "studentStudy",
  3655. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3656. "onresize": function () { }
  3657. }, {
  3658. closecallback: function () { }
  3659. }, { "style": { "height": "36px" } }).form; //创建窗体
  3660. _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); } }
  3661. break;
  3662. case "train": //好友打开
  3663. _formdiv = new U.UF.UI.form(
  3664. "训练平台",
  3665. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3666. "id": "train",
  3667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3668. "onresize": function () { }
  3669. }, {
  3670. closecallback: function () { }
  3671. }, { "style": { "height": "36px" } }).form; //创建窗体
  3672. _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); } }
  3673. break;
  3674. case "mindNetwork": //好友打开
  3675. _formdiv = new U.UF.UI.form(
  3676. "思维网格",
  3677. $$("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 }), {
  3678. "id": "mindNetwork",
  3679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3680. "onresize": function () { }
  3681. }, {
  3682. closecallback: function () { }
  3683. }, { "style": { "height": "36px" } }).form; //创建窗体
  3684. _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); } }
  3685. break;
  3686. case "studentClassRoom": //好友打开
  3687. _formdiv = new U.UF.UI.form(
  3688. "实时课堂",
  3689. $$("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 }), {
  3690. "id": "studentClassRoom",
  3691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3692. "onresize": function () { }
  3693. }, {
  3694. closecallback: function () { }
  3695. }, { "style": { "height": "36px" } }).form; //创建窗体
  3696. _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); } }
  3697. setTimeout(() => {
  3698. U.UF.F.windowZooming(_formdiv)
  3699. }, 0);
  3700. break;
  3701. }
  3702. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3703. switch (str) {
  3704. case "studnetProject": //好友打开
  3705. _formdiv = new U.UF.UI.form(
  3706. "我的项目",
  3707. $$("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 }), {
  3708. "id": "studnetProject",
  3709. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3710. "onresize": function () { }
  3711. }, {
  3712. closecallback: function () { }
  3713. }, { "style": { "height": "36px" } }).form; //创建窗体
  3714. _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); } }
  3715. break;
  3716. case "studentEvaluate": //好友打开
  3717. _formdiv = new U.UF.UI.form(
  3718. "我的评价",
  3719. $$("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 }), {
  3720. "id": "studentEvaluate",
  3721. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3722. "onresize": function () { }
  3723. }, {
  3724. closecallback: function () { }
  3725. }, { "style": { "height": "36px" } }).form; //创建窗体
  3726. _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); } }
  3727. break;
  3728. case "my":
  3729. _formdiv = new U.UF.UI.form(
  3730. "我的资料",
  3731. $$("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 }), {
  3732. "id": "my",
  3733. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3734. "onresize": function () { }
  3735. }, {
  3736. closecallback: function () { }
  3737. }, { "style": { "height": "36px" } }).form; //创建窗体
  3738. _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); } }
  3739. break;
  3740. case "program":
  3741. _formdiv = new U.UF.UI.form(
  3742. "编程平台",
  3743. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3744. "id": "program",
  3745. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3746. "onresize": function () { }
  3747. }, {
  3748. closecallback: function () { }
  3749. }, { "style": { "height": "36px" } }).form; //创建窗体
  3750. _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); } }
  3751. break;
  3752. case "library":
  3753. _formdiv = new U.UF.UI.form(
  3754. "素材库",
  3755. $$("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 }), {
  3756. "id": "library",
  3757. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3758. "onresize": function () { }
  3759. }, {
  3760. closecallback: function () { }
  3761. }, { "style": { "height": "36px" } }).form; //创建窗体
  3762. _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); } }
  3763. break;
  3764. case "whiteboard":
  3765. _formdiv = new U.UF.UI.form(
  3766. "电子白板",
  3767. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3768. "id": "whiteboard",
  3769. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3770. "onresize": function () { }
  3771. }, {
  3772. closecallback: function () { }
  3773. }, { "style": { "height": "36px" } }).form; //创建窗体
  3774. _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); } }
  3775. break;
  3776. case "investigation":
  3777. _formdiv = new U.UF.UI.form(
  3778. "问卷调查",
  3779. $$("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 }), {
  3780. "id": "investigation",
  3781. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3782. "onresize": function () { }
  3783. }, {
  3784. closecallback: function () { }
  3785. }, { "style": { "height": "36px" } }).form; //创建窗体
  3786. _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); } }
  3787. break;
  3788. case "note":
  3789. _formdiv = new U.UF.UI.form(
  3790. "便签分类",
  3791. $$("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 }), {
  3792. "id": "note",
  3793. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3794. "onresize": function () { }
  3795. }, {
  3796. closecallback: function () { }
  3797. }, { "style": { "height": "36px" } }).form; //创建窗体
  3798. _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); } }
  3799. break;
  3800. // case "score":
  3801. // _formdiv = new U.UF.UI.form(
  3802. // "量规评分",
  3803. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3804. // "id": "score",
  3805. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3806. // "onresize": function() {}
  3807. // }, {
  3808. // closecallback: function() {}
  3809. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3810. // _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); } }
  3811. // break;
  3812. case "mind":
  3813. _formdiv = new U.UF.UI.form(
  3814. "思维导图",
  3815. $$("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"
  3816. "id": "mind",
  3817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3818. "onresize": function () { }
  3819. }, {
  3820. closecallback: function () { }
  3821. }, { "style": { "height": "36px" } }).form; //创建窗体
  3822. _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); } }
  3823. break;
  3824. case "doc":
  3825. // U.MD.D.I.isRoom();
  3826. _formdiv = new U.UF.UI.form(
  3827. "协同文档",
  3828. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3829. "id": "doc",
  3830. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3831. "onresize": function () { }
  3832. }, {
  3833. closecallback: function () { }
  3834. }, { "style": { "height": "36px" } }).form; //创建窗体
  3835. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3836. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3837. })
  3838. _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); } }
  3839. break;
  3840. case "train": //好友打开
  3841. _formdiv = new U.UF.UI.form(
  3842. "训练平台",
  3843. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3844. "id": "train",
  3845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3846. "onresize": function () { }
  3847. }, {
  3848. closecallback: function () { }
  3849. }, { "style": { "height": "36px" } }).form; //创建窗体
  3850. _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); } }
  3851. break;
  3852. case "studentStudy":
  3853. _formdiv = new U.UF.UI.form(
  3854. "课程中心",
  3855. $$("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
  3856. "id": "studentStudy",
  3857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3858. "onresize": function () { }
  3859. }, {
  3860. closecallback: function () { }
  3861. }, { "style": { "height": "36px" } }).form; //创建窗体
  3862. _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); } }
  3863. break;
  3864. case "mindNetwork": //好友打开
  3865. _formdiv = new U.UF.UI.form(
  3866. "思维网格",
  3867. $$("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 }), {
  3868. "id": "mindNetwork",
  3869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3870. "onresize": function () { }
  3871. }, {
  3872. closecallback: function () { }
  3873. }, { "style": { "height": "36px" } }).form; //创建窗体
  3874. _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); } }
  3875. break;
  3876. case "studentClassRoom": //好友打开
  3877. _formdiv = new U.UF.UI.form(
  3878. "实时课堂",
  3879. $$("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 }), {
  3880. "id": "studentClassRoom",
  3881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3882. "onresize": function () { }
  3883. }, {
  3884. closecallback: function () { }
  3885. }, { "style": { "height": "36px" } }).form; //创建窗体
  3886. _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); } }
  3887. setTimeout(() => {
  3888. U.UF.F.windowZooming(_formdiv)
  3889. }, 0);
  3890. break;
  3891. }
  3892. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3893. //选择应用处理
  3894. switch (str) {
  3895. case "project": //好友打开
  3896. _formdiv = new U.UF.UI.form(
  3897. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3898. $$("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 }), {
  3899. "id": "project",
  3900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3901. "onresize": function () { }
  3902. }, {
  3903. closecallback: function () { }
  3904. }, { "style": { "height": "36px" } }).form; //创建窗体
  3905. _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); } }
  3906. break;
  3907. case "student":
  3908. _formdiv = new U.UF.UI.form(
  3909. "学生管理",
  3910. $$("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 }), {
  3911. "id": "student",
  3912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3913. "onresize": function () { }
  3914. }, {
  3915. closecallback: function () { }
  3916. }, { "style": { "height": "36px" } }).form; //创建窗体
  3917. _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); } }
  3918. break;
  3919. case "evaluate":
  3920. _formdiv = new U.UF.UI.form(
  3921. "学生评价",
  3922. $$("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 }), {
  3923. "id": "evaluate",
  3924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3925. "onresize": function () { }
  3926. }, {
  3927. closecallback: function () { }
  3928. }, { "style": { "height": "36px" } }).form; //创建窗体
  3929. _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); } }
  3930. break;
  3931. case "sys":
  3932. _formdiv = new U.UF.UI.form(
  3933. "目标管理",
  3934. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3935. "id": "sys",
  3936. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3937. "onresize": function () { }
  3938. }, {
  3939. closecallback: function () { }
  3940. }, { "style": { "height": "36px" } }).form; //创建窗体
  3941. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3942. break;
  3943. case "courseDesign":
  3944. _formdiv = new U.UF.UI.form(
  3945. "项目设计",
  3946. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3947. "id": "courseDesign",
  3948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3949. "onresize": function () { }
  3950. }, {
  3951. closecallback: function () { }
  3952. }, { "style": { "height": "36px" } }).form; //创建窗体
  3953. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3954. break;
  3955. case "program":
  3956. _formdiv = new U.UF.UI.form(
  3957. "编程平台",
  3958. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3959. "id": "program",
  3960. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3961. "onresize": function () { }
  3962. }, {
  3963. closecallback: function () { }
  3964. }, { "style": { "height": "36px" } }).form; //创建窗体
  3965. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3966. break;
  3967. case "class":
  3968. _formdiv = new U.UF.UI.form(
  3969. "班级管理",
  3970. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3971. "id": "class",
  3972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3973. "onresize": function () { }
  3974. }, {
  3975. closecallback: function () { }
  3976. }, { "style": { "height": "36px" } }).form; //创建窗体
  3977. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3978. break;
  3979. case "Grade":
  3980. _formdiv = new U.UF.UI.form(
  3981. "年级管理",
  3982. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3983. "id": "Grade",
  3984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3985. "onresize": function () { }
  3986. }, {
  3987. closecallback: function () { }
  3988. }, { "style": { "height": "36px" } }).form; //创建窗体
  3989. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3990. break;
  3991. case "teacherOffice":
  3992. _formdiv = new U.UF.UI.form(
  3993. "教研室",
  3994. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3995. "id": "teacherOffice",
  3996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3997. "onresize": function () { }
  3998. }, {
  3999. closecallback: function () { }
  4000. }, { "style": { "height": "36px" } }).form; //创建窗体
  4001. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4002. break;
  4003. case "my":
  4004. _formdiv = new U.UF.UI.form(
  4005. "我的资料",
  4006. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4007. "id": "my",
  4008. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4009. "onresize": function () { }
  4010. }, {
  4011. closecallback: function () { }
  4012. }, { "style": { "height": "36px" } }).form; //创建窗体
  4013. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4014. break;
  4015. case "notice":
  4016. _formdiv = new U.UF.UI.form(
  4017. "通知公告",
  4018. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  4019. "id": "notice",
  4020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4021. "onresize": function () { }
  4022. }, {
  4023. closecallback: function () { }
  4024. }, { "style": { "height": "36px" } }).form; //创建窗体
  4025. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4026. break;
  4027. case "library":
  4028. _formdiv = new U.UF.UI.form(
  4029. "素材库",
  4030. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4031. "id": "library",
  4032. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4033. "onresize": function () { }
  4034. }, {
  4035. closecallback: function () { }
  4036. }, { "style": { "height": "36px" } }).form; //创建窗体
  4037. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4038. break;
  4039. case "whiteboard":
  4040. _formdiv = new U.UF.UI.form(
  4041. "电子白板",
  4042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4043. "id": "whiteboard",
  4044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4045. "onresize": function () { }
  4046. }, {
  4047. closecallback: function () { }
  4048. }, { "style": { "height": "36px" } }).form; //创建窗体
  4049. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4050. break;
  4051. case "investigation":
  4052. _formdiv = new U.UF.UI.form(
  4053. "问卷调查",
  4054. $$("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 }), {
  4055. "id": "investigation",
  4056. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4057. "onresize": function () { }
  4058. }, {
  4059. closecallback: function () { }
  4060. }, { "style": { "height": "36px" } }).form; //创建窗体
  4061. _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); } }
  4062. break;
  4063. case "note":
  4064. _formdiv = new U.UF.UI.form(
  4065. "便签分类",
  4066. $$("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 }), {
  4067. "id": "note",
  4068. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4069. "onresize": function () { }
  4070. }, {
  4071. closecallback: function () { }
  4072. }, { "style": { "height": "36px" } }).form; //创建窗体
  4073. _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); } }
  4074. break;
  4075. // case "score":
  4076. // _formdiv = new U.UF.UI.form(
  4077. // "量规评分",
  4078. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4079. // "id": "score",
  4080. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4081. // "onresize": function() {}
  4082. // }, {
  4083. // closecallback: function() {}
  4084. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4085. // _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); } }
  4086. // break;
  4087. case "mind":
  4088. _formdiv = new U.UF.UI.form(
  4089. "思维导图",
  4090. $$("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"
  4091. "id": "mind",
  4092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4093. "onresize": function () { }
  4094. }, {
  4095. closecallback: function () { }
  4096. }, { "style": { "height": "36px" } }).form; //创建窗体
  4097. _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); } }
  4098. break;
  4099. case "doc":
  4100. // U.MD.D.I.isRoom();
  4101. _formdiv = new U.UF.UI.form(
  4102. "协同文档",
  4103. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4104. "id": "doc",
  4105. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4106. "onresize": function () { }
  4107. }, {
  4108. closecallback: function () { }
  4109. }, { "style": { "height": "36px" } }).form; //创建窗体
  4110. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4111. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4112. })
  4113. _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); } }
  4114. break;
  4115. case "study":
  4116. _formdiv = new U.UF.UI.form(
  4117. "课程中心",
  4118. $$("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
  4119. "id": "study",
  4120. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4121. "onresize": function () { }
  4122. }, {
  4123. closecallback: function () { }
  4124. }, { "style": { "height": "36px" } }).form; //创建窗体
  4125. _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); } }
  4126. break;
  4127. case "mindNetwork": //好友打开
  4128. _formdiv = new U.UF.UI.form(
  4129. "思维网格",
  4130. $$("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 }), {
  4131. "id": "mindNetwork",
  4132. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4133. "onresize": function () { }
  4134. }, {
  4135. closecallback: function () { }
  4136. }, { "style": { "height": "36px" } }).form; //创建窗体
  4137. _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); } }
  4138. break;
  4139. case "train": //好友打开
  4140. _formdiv = new U.UF.UI.form(
  4141. "训练平台",
  4142. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4143. "id": "mindNetwork",
  4144. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4145. "onresize": function () { }
  4146. }, {
  4147. closecallback: function () { }
  4148. }, { "style": { "height": "36px" } }).form; //创建窗体
  4149. _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); } }
  4150. break;
  4151. case "teacherClassRoom": //好友打开
  4152. _formdiv = new U.UF.UI.form(
  4153. "实时课堂",
  4154. $$("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 }), {
  4155. "id": "teacherClassRoom",
  4156. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4157. "onresize": function () { }
  4158. }, {
  4159. closecallback: function () { }
  4160. }, { "style": { "height": "36px" } }).form; //创建窗体
  4161. _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); } }
  4162. setTimeout(() => {
  4163. U.UF.F.windowZooming(_formdiv)
  4164. }, 0);
  4165. break;
  4166. }
  4167. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4168. switch (str) {
  4169. case "project": //好友打开
  4170. _formdiv = new U.UF.UI.form(
  4171. "课程管理",
  4172. $$("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 }), {
  4173. "id": "project",
  4174. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4175. "onresize": function () { }
  4176. }, {
  4177. closecallback: function () { }
  4178. }, { "style": { "height": "36px" } }).form; //创建窗体
  4179. _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); } }
  4180. break;
  4181. case "evaluate":
  4182. _formdiv = new U.UF.UI.form(
  4183. "学生评价",
  4184. $$("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 }), {
  4185. "id": "evaluate",
  4186. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4187. "onresize": function () { }
  4188. }, {
  4189. closecallback: function () { }
  4190. }, { "style": { "height": "36px" } }).form; //创建窗体
  4191. _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); } }
  4192. break;
  4193. case "notice":
  4194. _formdiv = new U.UF.UI.form(
  4195. "通知公告",
  4196. $$("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 }), {
  4197. "id": "notice",
  4198. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4199. "onresize": function () { }
  4200. }, {
  4201. closecallback: function () { }
  4202. }, { "style": { "height": "36px" } }).form; //创建窗体
  4203. _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); } }
  4204. break;
  4205. case "stuLibrary":
  4206. _formdiv = new U.UF.UI.form(
  4207. "学习资料",
  4208. $$("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 }), {
  4209. "id": "stuLibrary",
  4210. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4211. "onresize": function () { }
  4212. }, {
  4213. closecallback: function () { }
  4214. }, { "style": { "height": "36px" } }).form; //创建窗体
  4215. _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); } }
  4216. break;
  4217. case "program":
  4218. _formdiv = new U.UF.UI.form(
  4219. "编程平台",
  4220. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4221. "id": "program",
  4222. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4223. "onresize": function () { }
  4224. }, {
  4225. closecallback: function () { }
  4226. }, { "style": { "height": "36px" } }).form; //创建窗体
  4227. _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); } }
  4228. break;
  4229. case "whiteboard":
  4230. _formdiv = new U.UF.UI.form(
  4231. "电子白板",
  4232. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4233. "id": "whiteboard",
  4234. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4235. "onresize": function () { }
  4236. }, {
  4237. closecallback: function () { }
  4238. }, { "style": { "height": "36px" } }).form; //创建窗体
  4239. _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); } }
  4240. break;
  4241. case "investigation":
  4242. _formdiv = new U.UF.UI.form(
  4243. "问卷调查",
  4244. $$("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 }), {
  4245. "id": "investigation",
  4246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4247. "onresize": function () { }
  4248. }, {
  4249. closecallback: function () { }
  4250. }, { "style": { "height": "36px" } }).form; //创建窗体
  4251. _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); } }
  4252. break;
  4253. case "mind":
  4254. _formdiv = new U.UF.UI.form(
  4255. "思维导图",
  4256. $$("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"
  4257. "id": "mind",
  4258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4259. "onresize": function () { }
  4260. }, {
  4261. closecallback: function () { }
  4262. }, { "style": { "height": "36px" } }).form; //创建窗体
  4263. _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); } }
  4264. break;
  4265. case "doc":
  4266. // U.MD.D.I.isRoom();
  4267. _formdiv = new U.UF.UI.form(
  4268. "协同文档",
  4269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4270. "id": "doc",
  4271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4272. "onresize": function () { }
  4273. }, {
  4274. closecallback: function () { }
  4275. }, { "style": { "height": "36px" } }).form; //创建窗体
  4276. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4277. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4278. })
  4279. _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); } }
  4280. break;
  4281. case "study":
  4282. _formdiv = new U.UF.UI.form(
  4283. "课程中心",
  4284. $$("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
  4285. "id": "study",
  4286. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4287. "onresize": function () { }
  4288. }, {
  4289. closecallback: function () { }
  4290. }, { "style": { "height": "36px" } }).form; //创建窗体
  4291. _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); } }
  4292. break;
  4293. case "mindNetwork": //好友打开
  4294. _formdiv = new U.UF.UI.form(
  4295. "思维网格",
  4296. $$("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 }), {
  4297. "id": "mindNetwork",
  4298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4299. "onresize": function () { }
  4300. }, {
  4301. closecallback: function () { }
  4302. }, { "style": { "height": "36px" } }).form; //创建窗体
  4303. _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); } }
  4304. break;
  4305. case "train": //好友打开
  4306. _formdiv = new U.UF.UI.form(
  4307. "训练平台",
  4308. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4309. "id": "train",
  4310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4311. "onresize": function () { }
  4312. }, {
  4313. closecallback: function () { }
  4314. }, { "style": { "height": "36px" } }).form; //创建窗体
  4315. _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); } }
  4316. break;
  4317. case "sys":
  4318. _formdiv = new U.UF.UI.form(
  4319. "目标管理",
  4320. $$("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 }), {
  4321. "id": "sys",
  4322. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4323. "onresize": function () { }
  4324. }, {
  4325. closecallback: function () { }
  4326. }, { "style": { "height": "36px" } }).form; //创建窗体
  4327. _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); } }
  4328. break;
  4329. case "courseDesign":
  4330. _formdiv = new U.UF.UI.form(
  4331. "项目设计",
  4332. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4333. "id": "courseDesign",
  4334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4335. "onresize": function () { }
  4336. }, {
  4337. closecallback: function () { }
  4338. }, { "style": { "height": "36px" } }).form; //创建窗体
  4339. _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); } }
  4340. break;
  4341. }
  4342. } else if (!_type) {
  4343. switch (str) {
  4344. case "my":
  4345. _formdiv = new U.UF.UI.form(
  4346. "我的资料",
  4347. $$("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 }), {
  4348. "id": "my",
  4349. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4350. "onresize": function () { }
  4351. }, {
  4352. closecallback: function () { }
  4353. }, { "style": { "height": "36px" } }).form; //创建窗体
  4354. _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); } }
  4355. break;
  4356. }
  4357. }
  4358. switch (str) {
  4359. // AIprogram2 AI体验 aihub.cocorobo.cn
  4360. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4361. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4362. case "formulaEdi": //公式编辑
  4363. _formdiv = new U.UF.UI.form(
  4364. "公式编辑",
  4365. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4366. "id": "formulaEdi",
  4367. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4368. "onresize": function () { }
  4369. }, {
  4370. closecallback: function () { }
  4371. }, { "style": { "height": "36px" } }).form; //创建窗体
  4372. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4373. break;
  4374. case "molStr": //分子结构
  4375. _formdiv = new U.UF.UI.form(
  4376. "分子结构",
  4377. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4378. "id": "molStr",
  4379. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4380. "onresize": function () { }
  4381. }, {
  4382. closecallback: function () { }
  4383. }, { "style": { "height": "36px" } }).form; //创建窗体
  4384. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4385. break;
  4386. case "timeAxis": //时间轴
  4387. _formdiv = new U.UF.UI.form(
  4388. "时间轴",
  4389. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4390. "id": "timeAxis",
  4391. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4392. "onresize": function () { }
  4393. }, {
  4394. closecallback: function () { }
  4395. }, { "style": { "height": "36px" } }).form; //创建窗体
  4396. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4397. break;
  4398. case "AIprogram2": //AI体验
  4399. _formdiv = new U.UF.UI.form(
  4400. "AI体验",
  4401. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4402. "id": "AIprogram2",
  4403. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4404. "onresize": function () { }
  4405. }, {
  4406. closecallback: function () { }
  4407. }, { "style": { "height": "36px" } }).form; //创建窗体
  4408. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4409. break;
  4410. case "Pythonprogram": //python编程
  4411. _formdiv = new U.UF.UI.form(
  4412. "Python编程",
  4413. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4414. "id": "Pythonprogram",
  4415. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4416. "onresize": function () { }
  4417. }, {
  4418. closecallback: function () { }
  4419. }, { "style": { "height": "36px" } }).form; //创建窗体
  4420. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4421. break;
  4422. case "AIprogram": //ai编程
  4423. _formdiv = new U.UF.UI.form(
  4424. "AI编程平台",
  4425. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4426. "id": "AIprogram",
  4427. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4428. "onresize": function () { }
  4429. }, {
  4430. closecallback: function () { }
  4431. }, { "style": { "height": "36px" } }).form; //创建窗体
  4432. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4433. break;
  4434. case "CocoPi": //CocoPi
  4435. _formdiv = new U.UF.UI.form(
  4436. "CocoPi",
  4437. $$("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" }), {
  4438. "id": "CocoPi",
  4439. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4440. "onresize": function () { }
  4441. }, {
  4442. closecallback: function () { }
  4443. }, { "style": { "height": "36px" } }).form; //创建窗体
  4444. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4445. break;
  4446. case "Wood": //Wood
  4447. _formdiv = new U.UF.UI.form(
  4448. "海龟编程",
  4449. $$("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/" }), {
  4450. "id": "Wood",
  4451. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4452. "onresize": function () { }
  4453. }, {
  4454. closecallback: function () { }
  4455. }, { "style": { "height": "36px" } }).form; //创建窗体
  4456. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4457. break;
  4458. case "car": //模拟驾驶
  4459. _formdiv = new U.UF.UI.form(
  4460. "模拟驾驶",
  4461. $$("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/" }), {
  4462. "id": "car",
  4463. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4464. "onresize": function () { }
  4465. }, {
  4466. closecallback: function () { }
  4467. }, { "style": { "height": "36px" } }).form; //创建窗体
  4468. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4469. break;
  4470. case "lineSearch": //路径搜索
  4471. _formdiv = new U.UF.UI.form(
  4472. "路径搜索",
  4473. $$("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/" }), {
  4474. "id": "lineSearch",
  4475. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4476. "onresize": function () { }
  4477. }, {
  4478. closecallback: function () { }
  4479. }, { "style": { "height": "36px" } }).form; //创建窗体
  4480. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4481. break;
  4482. case "deepLearning": //深度学习
  4483. _formdiv = new U.UF.UI.form(
  4484. "深度学习",
  4485. $$("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/#" }), {
  4486. "id": "deepLearning",
  4487. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4488. "onresize": function () { }
  4489. }, {
  4490. closecallback: function () { }
  4491. }, { "style": { "height": "36px" } }).form; //创建窗体
  4492. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4493. break;
  4494. case "allHistory": //深度学习
  4495. _formdiv = new U.UF.UI.form(
  4496. "全历史",
  4497. $$("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/" }), {
  4498. "id": "allHistory",
  4499. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4500. "onresize": function () { }
  4501. }, {
  4502. closecallback: function () { }
  4503. }, { "style": { "height": "36px" } }).form; //创建窗体
  4504. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4505. break;
  4506. case "chatPDF": //ai编程
  4507. _formdiv = new U.UF.UI.form(
  4508. "chatPDF",
  4509. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4510. "id": "chatPDF",
  4511. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4512. "onresize": function () { }
  4513. }, {
  4514. closecallback: function () { }
  4515. }, { "style": { "height": "36px" } }).form; //创建窗体
  4516. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4517. break;
  4518. case "resources": //国家教育
  4519. _formdiv = new U.UF.UI.form(
  4520. "国家教育",
  4521. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4522. "id": "resources",
  4523. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4524. "onresize": function () { }
  4525. }, {
  4526. closecallback: function () { }
  4527. }, { "style": { "height": "36px" } }).form; //创建窗体
  4528. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4529. break;
  4530. case "codeEdit": //源码编辑
  4531. _formdiv = new U.UF.UI.form(
  4532. "源码编辑",
  4533. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4534. "id": "codeEdit",
  4535. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4536. "onresize": function () { }
  4537. }, {
  4538. closecallback: function () { }
  4539. }, { "style": { "height": "36px" } }).form; //创建窗体
  4540. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4541. break; //
  4542. case "MindMap": //MindMap
  4543. _formdiv = new U.UF.UI.form(
  4544. "MindMap",
  4545. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4546. "id": "MindMap",
  4547. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4548. "onresize": function () { }
  4549. }, {
  4550. closecallback: function () { }
  4551. }, { "style": { "height": "36px" } }).form; //创建窗体
  4552. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4553. break;
  4554. case "netWorkPanel": //netWorkPanel
  4555. _formdiv = new U.UF.UI.form(
  4556. "netWorkPanel",
  4557. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4558. "id": "netWorkPanel",
  4559. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4560. "onresize": function () { }
  4561. }, {
  4562. closecallback: function () { }
  4563. }, { "style": { "height": "36px" } }).form; //创建窗体
  4564. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4565. break;
  4566. case "GeoGebra": //GeoGebra
  4567. _formdiv = new U.UF.UI.form(
  4568. "GeoGebra",
  4569. $$("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" }), {
  4570. "id": "GeoGebra",
  4571. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4572. "onresize": function () { }
  4573. }, {
  4574. closecallback: function () { }
  4575. }, { "style": { "height": "36px" } }).form; //创建窗体
  4576. _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); } }
  4577. break;
  4578. case "translation": //翻译
  4579. _formdiv = new U.UF.UI.form(
  4580. "翻译",
  4581. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4582. "id": "translation",
  4583. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4584. "onresize": function () { }
  4585. }, {
  4586. closecallback: function () { }
  4587. }, { "style": { "height": "36px" } }).form; //创建窗体
  4588. _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); } }
  4589. break;
  4590. case "mohe": //魔盒
  4591. _formdiv = new U.UF.UI.form(
  4592. "魔盒识字",
  4593. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4594. "id": "mohe",
  4595. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4596. "onresize": function () { }
  4597. }, {
  4598. closecallback: function () { }
  4599. }, { "style": { "height": "36px" } }).form; //创建窗体
  4600. _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); } }
  4601. break;
  4602. case "24game": //24点
  4603. _formdiv = new U.UF.UI.form(
  4604. "24点",
  4605. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4606. "id": "24game",
  4607. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4608. "onresize": function () { }
  4609. }, {
  4610. closecallback: function () { }
  4611. }, { "style": { "height": "36px" } }).form; //创建窗体
  4612. _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); } }
  4613. break;
  4614. case "case":
  4615. _formdiv = new U.UF.UI.form(
  4616. "课程进展",
  4617. $$("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 }), {
  4618. "id": "case",
  4619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4620. "onresize": function () { }
  4621. }, {
  4622. closecallback: function () { }
  4623. }, { "style": { "height": "36px" } }).form; //创建窗体
  4624. _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); } }
  4625. break;
  4626. case "snf":
  4627. _formdiv = new U.UF.UI.form(
  4628. "赛诺梵",
  4629. $$("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" }), {
  4630. "id": "snf",
  4631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4632. "onresize": function () { }
  4633. }, {
  4634. closecallback: function () { }
  4635. }, { "style": { "height": "36px" } }).form; //创建窗体
  4636. _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); } }
  4637. break;
  4638. case "hanFamily":
  4639. _formdiv = new U.UF.UI.form(
  4640. "汉字家族",
  4641. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4642. "id": "hanFamily",
  4643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4644. "onresize": function () { }
  4645. }, {
  4646. closecallback: function () { }
  4647. }, { "style": { "height": "36px" } }).form; //创建窗体
  4648. _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); } }
  4649. break;
  4650. case "hanClassics":
  4651. _formdiv = new U.UF.UI.form(
  4652. "国学经典",
  4653. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4654. "id": "hanClassics",
  4655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4656. "onresize": function () { }
  4657. }, {
  4658. closecallback: function () { }
  4659. }, { "style": { "height": "36px" } }).form; //创建窗体
  4660. _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); } }
  4661. break;
  4662. case "hanTraining":
  4663. _formdiv = new U.UF.UI.form(
  4664. "笔画训练",
  4665. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4666. "id": "hanTraining",
  4667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4668. "onresize": function () { }
  4669. }, {
  4670. closecallback: function () { }
  4671. }, { "style": { "height": "36px" } }).form; //创建窗体
  4672. _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); } }
  4673. break;
  4674. case "hanClass":
  4675. _formdiv = new U.UF.UI.form(
  4676. "书法课堂",
  4677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4678. "id": "hanClass",
  4679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4680. "onresize": function () { }
  4681. }, {
  4682. closecallback: function () { }
  4683. }, { "style": { "height": "36px" } }).form; //创建窗体
  4684. _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); } }
  4685. break;
  4686. case "han":
  4687. _formdiv = new U.UF.UI.form(
  4688. "汉字宫",
  4689. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4690. "id": "han",
  4691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4692. "onresize": function () { }
  4693. }, {
  4694. closecallback: function () { }
  4695. }, { "style": { "height": "36px" } }).form; //创建窗体
  4696. _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); } }
  4697. break;
  4698. case "projectGM": //课程管理
  4699. _formdiv = new U.UF.UI.form(
  4700. "课程管理",
  4701. $$("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 }), {
  4702. "id": "projectGM",
  4703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4704. "onresize": function () { }
  4705. }, {
  4706. closecallback: function () { }
  4707. }, { "style": { "height": "36px" } }).form; //创建窗体
  4708. _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); } }
  4709. break;
  4710. case "studyGM": //课程中心
  4711. _formdiv = new U.UF.UI.form(
  4712. "课程中心",
  4713. $$("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
  4714. "id": "study",
  4715. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4716. "onresize": function () { }
  4717. }, {
  4718. closecallback: function () { }
  4719. }, { "style": { "height": "36px" } }).form; //创建窗体
  4720. _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); } }
  4721. break;
  4722. // studentGM
  4723. case "studentGM": //学生管理
  4724. _formdiv = new U.UF.UI.form(
  4725. "学生管理",
  4726. $$("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 }), {
  4727. "id": "studentGM",
  4728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4729. "onresize": function () { }
  4730. }, {
  4731. closecallback: function () { }
  4732. }, { "style": { "height": "36px" } }).form; //创建窗体
  4733. _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); } }
  4734. break;
  4735. case "evaluateGM": //学生评价
  4736. _formdiv = new U.UF.UI.form(
  4737. "学生评价",
  4738. $$("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 }), {
  4739. "id": "evaluateGM",
  4740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4741. "onresize": function () { }
  4742. }, {
  4743. closecallback: function () { }
  4744. }, { "style": { "height": "36px" } }).form; //创建窗体
  4745. _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); } }
  4746. break;
  4747. // classGM
  4748. case "classGM": //班级管理
  4749. _formdiv = new U.UF.UI.form(
  4750. "班级管理",
  4751. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4752. "id": "classGM",
  4753. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4754. "onresize": function () { }
  4755. }, {
  4756. closecallback: function () { }
  4757. }, { "style": { "height": "36px" } }).form; //创建窗体
  4758. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4759. break;
  4760. // dataGM
  4761. case "dataGM":
  4762. _formdiv = new U.UF.UI.form(
  4763. "我的资料",
  4764. $$("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 }), {
  4765. "id": "dataGM",
  4766. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4767. "onresize": function () { }
  4768. }, {
  4769. closecallback: function () { }
  4770. }, { "style": { "height": "36px" } }).form; //创建窗体
  4771. _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); } }
  4772. break;
  4773. // caseGM
  4774. case "caseGM": //课程进展
  4775. _formdiv = new U.UF.UI.form(
  4776. "课程进展",
  4777. $$("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 }), {
  4778. "id": "caseGM",
  4779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4780. "onresize": function () { }
  4781. }, {
  4782. closecallback: function () { }
  4783. }, { "style": { "height": "36px" } }).form; //创建窗体
  4784. _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); } }
  4785. break;
  4786. // meterialGM
  4787. case "meterialGM": //素材库
  4788. _formdiv = new U.UF.UI.form(
  4789. "素材库",
  4790. $$("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 }), {
  4791. "id": "meterialGM",
  4792. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4793. "onresize": function () { }
  4794. }, {
  4795. closecallback: function () { }
  4796. }, { "style": { "height": "36px" } }).form; //创建窗体
  4797. _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); } }
  4798. break;
  4799. // evaluateSGM
  4800. case "evaluateSGM": //我的评价
  4801. _formdiv = new U.UF.UI.form(
  4802. "我的评价",
  4803. $$("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 }), {
  4804. "id": "evaluateSGM",
  4805. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4806. "onresize": function () { }
  4807. }, {
  4808. closecallback: function () { }
  4809. }, { "style": { "height": "36px" } }).form; //创建窗体
  4810. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4811. break;
  4812. case "jupyter": //jupyter
  4813. _formdiv = new U.UF.UI.form(
  4814. "jupyter",
  4815. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4816. "id": "jupyter",
  4817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4818. "onresize": function () { }
  4819. }, {
  4820. closecallback: function () { }
  4821. }, { "style": { "height": "36px" } }).form; //创建窗体
  4822. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4823. break;
  4824. case "number": //数字实验室
  4825. _formdiv = new U.UF.UI.form(
  4826. "数字实验室",
  4827. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  4828. "id": "number",
  4829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4830. "onresize": function () { }
  4831. }, {
  4832. closecallback: function () { }
  4833. }, { "style": { "height": "36px" } }).form; //创建窗体
  4834. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4835. break;
  4836. case "studentCourse": //项目管理 学生
  4837. _formdiv = new U.UF.UI.form(
  4838. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4839. $$("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 }), {
  4840. "id": "studentCourse",
  4841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4842. "onresize": function () { }
  4843. }, {
  4844. closecallback: function () { }
  4845. }, { "style": { "height": "36px" } }).form; //创建窗体
  4846. _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); } }
  4847. break;
  4848. case "studentCourseS": //项目管理 老师
  4849. _formdiv = new U.UF.UI.form(
  4850. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4851. $$("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 }), {
  4852. "id": "studentCourseS",
  4853. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4854. "onresize": function () { }
  4855. }, {
  4856. closecallback: function () { }
  4857. }, { "style": { "height": "36px" } }).form; //创建窗体
  4858. _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); } }
  4859. break;
  4860. case "studentIndex": //项目中心
  4861. _formdiv = new U.UF.UI.form(
  4862. "项目中心",
  4863. $$("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 }), {
  4864. "id": "studentIndex",
  4865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4866. "onresize": function () { }
  4867. }, {
  4868. closecallback: function () { }
  4869. }, { "style": { "height": "36px" } }).form; //创建窗体
  4870. _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); } }
  4871. break;
  4872. case "CaseDesignS":
  4873. _formdiv = new U.UF.UI.form(
  4874. "项目进展",
  4875. $$("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 }), {
  4876. "id": "case",
  4877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4878. "onresize": function () { }
  4879. }, {
  4880. closecallback: function () { }
  4881. }, { "style": { "height": "36px" } }).form; //创建窗体
  4882. _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); } }
  4883. break;
  4884. case "tcStudent": //腾讯学生管理
  4885. _formdiv = new U.UF.UI.form(
  4886. "学生管理",
  4887. $$("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 }), {
  4888. "id": "tcStudent",
  4889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4890. "onresize": function () { }
  4891. }, {
  4892. closecallback: function () { }
  4893. }, { "style": { "height": "36px" } }).form; //创建窗体
  4894. _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); } }
  4895. break;
  4896. case "tcSchool": //腾讯学校管理
  4897. _formdiv = new U.UF.UI.form(
  4898. "学校管理",
  4899. $$("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 }), {
  4900. "id": "tcSchool",
  4901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4902. "onresize": function () { }
  4903. }, {
  4904. closecallback: function () { }
  4905. }, { "style": { "height": "36px" } }).form; //创建窗体
  4906. _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); } }
  4907. break;
  4908. case "tcTeacher": //腾讯学校管理
  4909. _formdiv = new U.UF.UI.form(
  4910. "教师管理",
  4911. $$("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 }), {
  4912. "id": "tcTeacher",
  4913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4914. "onresize": function () { }
  4915. }, {
  4916. closecallback: function () { }
  4917. }, { "style": { "height": "36px" } }).form; //创建窗体
  4918. _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); } }
  4919. break;
  4920. case "tcData": //腾讯我的资料
  4921. _formdiv = new U.UF.UI.form(
  4922. "我的资料",
  4923. $$("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 }), {
  4924. "id": "tcData",
  4925. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4926. "onresize": function () { }
  4927. }, {
  4928. closecallback: function () { }
  4929. }, { "style": { "height": "36px" } }).form; //创建窗体
  4930. _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); } }
  4931. break;
  4932. case "tcNotice": //腾讯消息通知
  4933. _formdiv = new U.UF.UI.form(
  4934. "消息通知",
  4935. $$("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 }), {
  4936. "id": "tcNotice",
  4937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4938. "onresize": function () { }
  4939. }, {
  4940. closecallback: function () { }
  4941. }, { "style": { "height": "36px" } }).form; //创建窗体
  4942. _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); } }
  4943. break;
  4944. case "myReport": //好友打开
  4945. _formdiv = new U.UF.UI.form(
  4946. "我的评价",
  4947. $$("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 }), {
  4948. "id": "myReport",
  4949. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4950. "onresize": function () { }
  4951. }, {
  4952. closecallback: function () { }
  4953. }, { "style": { "height": "36px" } }).form; //创建窗体
  4954. _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); } }
  4955. break;
  4956. case "learnAna": //好友打开
  4957. _formdiv = new U.UF.UI.form(
  4958. "学习分析",
  4959. $$("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 }), {
  4960. "id": "learnAna",
  4961. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4962. "onresize": function () { }
  4963. }, {
  4964. closecallback: function () { }
  4965. }, { "style": { "height": "36px" } }).form; //创建窗体
  4966. _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); } }
  4967. break;
  4968. case "AIChat": //AI共创
  4969. _formdiv = new U.UF.UI.form(
  4970. "AI共创",
  4971. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4972. "id": "AIChat",
  4973. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4974. "onresize": function () { }
  4975. }, {
  4976. istop: true,
  4977. closecallback: function () { $("#aichat_icon").remove(); },
  4978. narrowcallback: function () {
  4979. if (!$("#aichat_icon")[0]) {
  4980. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4981. }
  4982. },
  4983. }, { "style": { "height": "36px" } }).form; //创建窗体
  4984. _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); } }
  4985. break;
  4986. case "ainew": //AI共创
  4987. _formdiv = new U.UF.UI.form(
  4988. "AI协同",
  4989. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4990. "id": "ainew",
  4991. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4992. "onresize": function () { }
  4993. }, {
  4994. closecallback: function () { }
  4995. }, { "style": { "height": "36px" } }).form; //创建窗体
  4996. _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); } }
  4997. break;
  4998. case "gpt4": //gpt4
  4999. _formdiv = new U.UF.UI.form(
  5000. "AI助手",
  5001. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/gpt4/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5002. "id": "gpt4",
  5003. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5004. "onresize": function () { }
  5005. }, {
  5006. closecallback: function () { }
  5007. }, { "style": { "height": "36px" } }).form; //创建窗体
  5008. _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); } }
  5009. break;
  5010. case "aigpt": //gpt4
  5011. _formdiv = new U.UF.UI.form(
  5012. "AI助手+",
  5013. $$("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 }), {
  5014. "id": "aigpt",
  5015. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5016. "onresize": function () { }
  5017. }, {
  5018. closecallback: function () { }
  5019. }, { "style": { "height": "36px" } }).form; //创建窗体
  5020. _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); } }
  5021. break;
  5022. case "futureClass": //AI共创
  5023. _formdiv = new U.UF.UI.form(
  5024. "协同建构",
  5025. $$("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
  5026. "id": "synergyCourse",
  5027. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5028. "onresize": function () { }
  5029. }, {
  5030. closecallback: function () {
  5031. $("iframe", _formdiv)[0].contentWindow.loginout();
  5032. }
  5033. }, { "style": { "height": "36px" } }).form; //创建窗体
  5034. _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); } }
  5035. break;
  5036. case "aiagent": //ai agent
  5037. _formdiv = new U.UF.UI.form(
  5038. "AI Agent",
  5039. $$("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" }), {
  5040. "id": "AIAgent",
  5041. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5042. "onresize": function () { }
  5043. }, {
  5044. closecallback: function () { }
  5045. }, { "style": { "height": "36px" } }).form; //创建窗体
  5046. _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); } }
  5047. break;
  5048. case "dataBoard": //数据看板
  5049. _formdiv = new U.UF.UI.form(
  5050. "数据看板",
  5051. $$("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 }), {
  5052. "id": "dataBoard",
  5053. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5054. "onresize": function () { }
  5055. }, {
  5056. closecallback: function () { }
  5057. }, { "style": { "height": "36px" } }).form; //创建窗体
  5058. _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); } }
  5059. break;
  5060. case "dataBoardSies": //数据融合
  5061. _formdiv = new U.UF.UI.form(
  5062. "数据融合",
  5063. $$("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 }), {
  5064. "id": "dataBoardSies",
  5065. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5066. "onresize": function () { }
  5067. }, {
  5068. closecallback: function () { }
  5069. }, { "style": { "height": "36px" } }).form; //创建窗体
  5070. _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); } }
  5071. break;
  5072. case "dataBoardNew": //数据看板
  5073. _formdiv = new U.UF.UI.form(
  5074. "综合看板",
  5075. $$("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 }), {
  5076. "id": "dataBoardNew",
  5077. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5078. "onresize": function () { }
  5079. }, {
  5080. closecallback: function () { }
  5081. }, { "style": { "height": "36px" } }).form; //创建窗体
  5082. _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); } }
  5083. break;
  5084. case "dataBoardTest": //数据看板
  5085. _formdiv = new U.UF.UI.form(
  5086. "评测看板",
  5087. $$("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 }), {
  5088. "id": "dataBoardTest",
  5089. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5090. "onresize": function () { }
  5091. }, {
  5092. closecallback: function () { }
  5093. }, { "style": { "height": "36px" } }).form; //创建窗体
  5094. _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); } }
  5095. break;
  5096. case "AIAnalyse": //AI共创
  5097. _formdiv = new U.UF.UI.form(
  5098. "AI分析",
  5099. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5100. "id": "AIAnalyse",
  5101. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5102. "onresize": function () { }
  5103. }, {
  5104. closecallback: function () { }
  5105. }, { "style": { "height": "36px" } }).form; //创建窗体
  5106. _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); } }
  5107. break;
  5108. case "studioCourse": //AI共创
  5109. _formdiv = new U.UF.UI.form(
  5110. "工作管理",
  5111. $$("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 }), {
  5112. "id": "studioCourse",
  5113. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5114. "onresize": function () { }
  5115. }, {
  5116. closecallback: function () { }
  5117. }, { "style": { "height": "36px" } }).form; //创建窗体
  5118. _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); } }
  5119. break;
  5120. case "studioIndex": //AI共创
  5121. _formdiv = new U.UF.UI.form(
  5122. "工作中心",
  5123. $$("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 }), {
  5124. "id": "studioIndex",
  5125. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5126. "onresize": function () { }
  5127. }, {
  5128. closecallback: function () { }
  5129. }, { "style": { "height": "36px" } }).form; //创建窗体
  5130. _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); } }
  5131. break;
  5132. case "source":
  5133. _formdiv = new U.UF.UI.form(
  5134. "教学资源",
  5135. $$("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 }), {
  5136. "id": "source",
  5137. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5138. "onresize": function () { }
  5139. }, {
  5140. closecallback: function () { }
  5141. }, { "style": { "height": "36px" } }).form; //创建窗体
  5142. _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); } }
  5143. break;
  5144. case "testTeacher":
  5145. _formdiv = new U.UF.UI.form(
  5146. "教师管理",
  5147. $$("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 }), {
  5148. "id": "testTeacher",
  5149. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5150. "onresize": function () { }
  5151. }, {
  5152. closecallback: function () { }
  5153. }, { "style": { "height": "36px" } }).form; //创建窗体
  5154. _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); } }
  5155. break;
  5156. case "testStudent":
  5157. _formdiv = new U.UF.UI.form(
  5158. "教师中心",
  5159. $$("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 }), {
  5160. "id": "testStudent",
  5161. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5162. "onresize": function () { }
  5163. }, {
  5164. closecallback: function () { }
  5165. }, { "style": { "height": "36px" } }).form; //创建窗体
  5166. _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); } }
  5167. break;
  5168. case "testTeacherSies":
  5169. _formdiv = new U.UF.UI.form(
  5170. "教师管理",
  5171. $$("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 }), {
  5172. "id": "testTeacherSies",
  5173. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. _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); } }
  5179. break;
  5180. case "testStudentSies":
  5181. _formdiv = new U.UF.UI.form(
  5182. "教师中心",
  5183. $$("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 }), {
  5184. "id": "testStudentSies",
  5185. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5186. "onresize": function () { }
  5187. }, {
  5188. closecallback: function () { }
  5189. }, { "style": { "height": "36px" } }).form; //创建窗体
  5190. _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); } }
  5191. break;
  5192. case "ytpbl": //消息通知
  5193. _formdiv = new U.UF.UI.form(
  5194. "案例征集",
  5195. $$("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 }), {
  5196. "id": "ytpbl",
  5197. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, { "style": { "height": "36px" } }).form; //创建窗体
  5202. _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); } }
  5203. // 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");
  5204. break;
  5205. case "aiCourseResource": //人工智能窗体
  5206. _formdiv = new U.UF.UI.form(
  5207. false,
  5208. $$("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 }), {
  5209. "id": "aiCourseResource",
  5210. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5211. "onresize": function () { },
  5212. "isdrag": false,
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _taskbar = ''
  5217. break;
  5218. case "szdjgCocooroboX": //图形化编程
  5219. _formdiv = new U.UF.UI.form(
  5220. "图形化编程",
  5221. $$("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" }), {
  5222. "id": "szdjgCocooroboX",
  5223. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5224. "onresize": function () { }
  5225. }, {
  5226. closecallback: function () { }
  5227. }, { "style": { "height": "36px" } }).form; //创建窗体
  5228. _taskbar = ''
  5229. break;
  5230. case "szdjgPython": //python编程
  5231. _formdiv = new U.UF.UI.form(
  5232. "Python编程",
  5233. $$("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" }), {
  5234. "id": "szdjgPython",
  5235. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5236. "onresize": function () { }
  5237. }, {
  5238. closecallback: function () { }
  5239. }, { "style": { "height": "36px" } }).form; //创建窗体
  5240. _taskbar = ''
  5241. break;
  5242. case "Record":
  5243. _formdiv = new U.UF.UI.form(
  5244. "观察记录",
  5245. $$("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 }), {
  5246. "id": "Record",
  5247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5248. "onresize": function () { }
  5249. }, {
  5250. closecallback: function () { }
  5251. }, { "style": { "height": "36px" } }).form; //创建窗体
  5252. _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); } }
  5253. break;
  5254. case "aigptCourse":
  5255. _formdiv = new U.UF.UI.form(
  5256. "AI智能体",
  5257. $$("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' }), {
  5258. "id": "aigptCourse",
  5259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5260. "onresize": function () { }
  5261. }, {
  5262. closecallback: function () { }
  5263. }, { "style": { "height": "36px" } }).form; //创建窗体
  5264. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5265. break;
  5266. case "classroomObservation":
  5267. _formdiv = new U.UF.UI.form(
  5268. "课堂观察",
  5269. $$("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 }), {
  5270. "id": "classroomObservation",
  5271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //创建窗体
  5276. _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); } }
  5277. break;
  5278. case "pblCourse":
  5279. _formdiv = new U.UF.UI.form(
  5280. "学生PBL",
  5281. $$("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 }), {
  5282. "id": "pblCourse",
  5283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _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); } }
  5289. break;
  5290. }
  5291. //U.MD.D.I.openClick(str);
  5292. //如果有任务栏信息
  5293. if (_taskbar) {
  5294. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5295. }
  5296. }
  5297. // U.MD.D.I.openClick = function(str){
  5298. // var click = '';
  5299. // switch(str){
  5300. // case 'friend':
  5301. // click = '我的好友';
  5302. // break;
  5303. // case 'domain':
  5304. // click = '域名管理';
  5305. // break;
  5306. // case 'disk':
  5307. // click = '我的云盘';
  5308. // break;
  5309. // case 'word':
  5310. // click = 'Word';
  5311. // break;
  5312. // case 'excel':
  5313. // click = 'Execl';
  5314. // break;
  5315. // case 'txt':
  5316. // click = '文本文件';
  5317. // break;
  5318. // case 'lookupFriend':
  5319. // click = '查找好友';
  5320. // break;
  5321. // case 'ftp':
  5322. // click = 'FTP';
  5323. // break;
  5324. // case 'group':
  5325. // click = '群组';
  5326. // break;
  5327. // case 'set':
  5328. // click = '我的设置';
  5329. // break;
  5330. // case 'systemSet':
  5331. // click = '系统设置';
  5332. // break;
  5333. // case 'boomYun':
  5334. // click = '互联办公';
  5335. // break;
  5336. // case 'xz':
  5337. // click = '云端下载';
  5338. // break;
  5339. // case 'client':
  5340. // click = '有思浏览器';
  5341. // break;
  5342. // case 'backEndProgramming':
  5343. // click = '在线后台编程';
  5344. // break;
  5345. // case 'frontEndProgramming':
  5346. // click = '在线前端编程';
  5347. // break;
  5348. // default: break;
  5349. // }
  5350. // if(U.MD.D.I.Ip && click){
  5351. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5352. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5353. // })
  5354. // }
  5355. // }
  5356. /**
  5357. *函数作用:ajax简易函数,使用post格式
  5358. *@param url {data} 后台地址
  5359. *@param data {data} 参数json
  5360. *@param fn {data} 回调函数
  5361. *
  5362. */
  5363. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5364. // var xhr = new XMLHttpRequest();
  5365. // xhr.open("GET",url,true);
  5366. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5367. // xhr.onreadystatechange = function(){
  5368. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5369. // fn.call(this,xhr.responseText);
  5370. // }
  5371. // };
  5372. // xhr.send();
  5373. // }
  5374. /*判断是否是内网IP*/
  5375. // U.MD.D.I.isInnerIPFn = function(str){
  5376. // var curPageUrl = str;
  5377. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5378. // curPageUrl =curPageUrl.replace(reg1,'');
  5379. // // console.log('curPageUrl-1 '+curPageUrl);
  5380. // var reg2 = /\:+/g;//替换冒号为一点
  5381. // curPageUrl =curPageUrl.replace(reg2,'.');
  5382. // // console.log('curPageUrl-2 '+curPageUrl);
  5383. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5384. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5385. // if(curPageUrl[2] != '16'){
  5386. // return ipAddress;
  5387. // }else{
  5388. // return false;
  5389. // }
  5390. // }
  5391. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5392. // //compatibility for firefox and chrome
  5393. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5394. // var pc = new myPeerConnection({
  5395. // iceServers: []
  5396. // }),
  5397. // noop = function() {},
  5398. // localIPs = {},
  5399. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5400. // key;
  5401. // function iterateIP(ip) {
  5402. // if (!localIPs[ip]) onNewIP(ip);
  5403. // localIPs[ip] = true;
  5404. // }
  5405. // //create a bogus data channel
  5406. // pc.createDataChannel("");
  5407. // // create offer and set local description
  5408. // pc.createOffer().then(function(sdp) {
  5409. // sdp.sdp.split('\n').forEach(function(line) {
  5410. // if (line.indexOf('candidate') < 0) return;
  5411. // line.match(ipRegex).forEach(iterateIP);
  5412. // });
  5413. // pc.setLocalDescription(sdp, noop, noop);
  5414. // }).catch(function(reason) {
  5415. // // An error occurred, so handle the failure to connect
  5416. // });
  5417. // //sten for candidate events
  5418. // pc.onicecandidate = function(ice) {
  5419. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5420. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5421. // };
  5422. // }
  5423. // U.MD.D.I.getUserIpBool = function(callback){
  5424. // U.MD.D.I.getUserIP(function(ip){
  5425. // alert("Got IP! :" + ip);
  5426. // });
  5427. //}
  5428. //#endregion
  5429. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5430. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5431. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5432. _userinfo = US.userInfo, //登录用户信息
  5433. _userid = US.userInfo.userid //登录用户id
  5434. let _iframe;
  5435. let _cid = cid,
  5436. _stage = stage,
  5437. _task = task,
  5438. _tool = tool;
  5439. var _jie = $$("div", {
  5440. "style": {
  5441. "position": "absolute",
  5442. "bottom": "50px",
  5443. "right": "50px",
  5444. "zIndex": "9999",
  5445. "backgroundColor": "#2268bc",
  5446. "color": "#fff",
  5447. "padding": "12px 20px",
  5448. "cursor": "pointer",
  5449. "borderRadius": "4px",
  5450. },
  5451. "innerHTML": "提交作业"
  5452. })
  5453. let aTool = ''
  5454. let _loading = document.createElement('div')
  5455. _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;"
  5456. // _loading.id = "";
  5457. let _lchild = document.createElement('div')
  5458. let _limg = document.createElement('img')
  5459. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5460. _limg.style = "width: 26px;margin-right: 10px;"
  5461. _lchild.appendChild(_limg)
  5462. let _lspan = document.createElement('span')
  5463. _lspan.innerHTML = "上传中..."
  5464. _lchild.appendChild(_lspan)
  5465. _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%);"
  5466. _loading.appendChild(_lchild)
  5467. var _box = $$('div', {
  5468. "style": {
  5469. "position": "relative",
  5470. "width": "100%",
  5471. "height": "100%",
  5472. },
  5473. })
  5474. _box.appendChild(_loading)
  5475. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5476. switch (str) {
  5477. case "whiteboard":
  5478. aTool = 1;
  5479. _iframe = $$("iframe", {
  5480. "frameborder": "no",
  5481. "border": "0",
  5482. "scrolling ": "no",
  5483. "style": {
  5484. "cssText": "border:0;width:100%;height:100%"
  5485. },
  5486. "src": "https://beta.iwb.cocorobo.cn?cocorobo="+new Date().getTime()
  5487. })
  5488. _box.appendChild(_iframe);
  5489. _box.appendChild(_jie);
  5490. _formdiv = new U.UF.UI.form(
  5491. "电子白板",
  5492. _box, {
  5493. "id": "whiteboard" + cid + stage + task + tool,
  5494. "style": {
  5495. "width": "90%",
  5496. "height": "90%",
  5497. "overflow": 'hidden'
  5498. },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, {
  5503. "style": {
  5504. "height": "36px"
  5505. }
  5506. }).form; //创建窗体
  5507. _taskbar = {
  5508. "id": str + _formdiv.id,
  5509. "style": {
  5510. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5511. },
  5512. "name": "电子白板",
  5513. "forms": _formdiv,
  5514. "click": function () {
  5515. U.MD.D.I.openApplication(str, obj, info);
  5516. }
  5517. }
  5518. break;
  5519. case "mind":
  5520. aTool = 3;
  5521. _iframe = $$("iframe", {
  5522. "frameborder": "no",
  5523. "border": "0",
  5524. "scrolling ": "no",
  5525. "style": {
  5526. "cssText": "border:0;width:100%;height:100%"
  5527. },
  5528. "src": "/kityminder-editor/dist/index.html"
  5529. })
  5530. _box.appendChild(_iframe);
  5531. _box.appendChild(_jie);
  5532. _formdiv = new U.UF.UI.form(
  5533. "思维导图",
  5534. _box, { //"/jsmind/example/demo.html"
  5535. "id": "mind" + cid + stage + task + tool,
  5536. "style": {
  5537. "width": "90%",
  5538. "height": "90%",
  5539. "overflow": 'hidden'
  5540. },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, {
  5545. "style": {
  5546. "height": "36px"
  5547. }
  5548. }).form; //创建窗体
  5549. _taskbar = {
  5550. "id": str + _formdiv.id,
  5551. "style": {
  5552. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5553. },
  5554. "name": "思维导图",
  5555. "forms": _formdiv,
  5556. "click": function () {
  5557. U.MD.D.I.openApplication(str, obj, info);
  5558. }
  5559. }
  5560. break;
  5561. case "MindMap":
  5562. aTool = 3;
  5563. _iframe = $$("iframe", {
  5564. "frameborder": "no",
  5565. "border": "0",
  5566. "scrolling ": "no",
  5567. "style": {
  5568. "cssText": "border:0;width:100%;height:100%"
  5569. },
  5570. "src": "//cloud.cocorobo.cn/mind/"
  5571. })
  5572. _box.appendChild(_iframe);
  5573. _box.appendChild(_jie);
  5574. _formdiv = new U.UF.UI.form(
  5575. "思维导图",
  5576. _box, { //"/jsmind/example/demo.html"
  5577. "id": "mind" + cid + stage + task + tool,
  5578. "style": {
  5579. "width": "90%",
  5580. "height": "90%",
  5581. "overflow": 'hidden'
  5582. },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, {
  5587. "style": {
  5588. "height": "36px"
  5589. }
  5590. }).form; //创建窗体
  5591. _taskbar = {
  5592. "id": str + _formdiv.id,
  5593. "style": {
  5594. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5595. },
  5596. "name": "思维导图",
  5597. "forms": _formdiv,
  5598. "click": function () {
  5599. U.MD.D.I.openApplication(str, obj, info);
  5600. }
  5601. }
  5602. break;
  5603. case "doc":
  5604. aTool = 6;
  5605. _iframe = $$("iframe", {
  5606. "frameborder": "no",
  5607. "border": "0",
  5608. "scrolling ": "no",
  5609. "style": {
  5610. "cssText": "border:0;width:100%;height:100%"
  5611. },
  5612. "src": "/Office/Word/WordEditArea.htm"
  5613. })
  5614. _box.appendChild(_iframe);
  5615. _box.appendChild(_jie);
  5616. _formdiv = new U.UF.UI.form(
  5617. "协同文档",
  5618. _box, {
  5619. "id": "doc" + cid + stage + task + tool,
  5620. "style": {
  5621. "width": "90%",
  5622. "height": "90%",
  5623. "overflow": 'hidden'
  5624. },
  5625. "onresize": function () { }
  5626. }, {
  5627. closecallback: function () { }
  5628. }, {
  5629. "style": {
  5630. "height": "36px"
  5631. }
  5632. }).form; //创建窗体
  5633. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5634. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5635. })
  5636. _taskbar = {
  5637. "id": str + _formdiv.id,
  5638. "style": {
  5639. "backgroundImage": "url(/img/icon/doc.png)"
  5640. },
  5641. "name": "协同文档",
  5642. "forms": _formdiv,
  5643. "click": function () {
  5644. U.MD.D.I.openApplication(str, obj, info);
  5645. }
  5646. }
  5647. break;
  5648. case "mindNetwork": //好友打开
  5649. aTool = 7;
  5650. _iframe = $$("iframe", {
  5651. "webkitallowfullscreen": "",
  5652. "mozallowfullscreen": "",
  5653. "allowfullscreen": "",
  5654. "frameborder": "no",
  5655. "border": "0",
  5656. "scrolling ": "no",
  5657. "style": {
  5658. "cssText": "border:0; width:100%; height:100%;"
  5659. },
  5660. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5661. })
  5662. _box.appendChild(_iframe);
  5663. _box.appendChild(_jie);
  5664. _formdiv = new U.UF.UI.form(
  5665. "思维网格",
  5666. _box, {
  5667. "id": "mindNetwork" + cid + stage + task + tool,
  5668. "style": {
  5669. "width": "90%",
  5670. "height": "90%",
  5671. "overflow": 'hidden'
  5672. },
  5673. "onresize": function () { }
  5674. }, {
  5675. closecallback: function () { }
  5676. }, {
  5677. "style": {
  5678. "height": "36px"
  5679. }
  5680. }).form; //创建窗体
  5681. _taskbar = {
  5682. "id": str + _formdiv.id,
  5683. "style": {
  5684. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5685. },
  5686. "name": "思维网格",
  5687. "forms": _formdiv,
  5688. "click": function () {
  5689. U.MD.D.I.openApplication(str, obj, info);
  5690. }
  5691. }
  5692. break;
  5693. case "courseDesign":
  5694. _iframe = $$("iframe", {
  5695. "webkitallowfullscreen": "",
  5696. "mozallowfullscreen": "",
  5697. "allowfullscreen": "",
  5698. "frameborder": "no",
  5699. "border": "0",
  5700. "scrolling ": "no",
  5701. "style": {
  5702. "cssText": "border:0; width:100%; height:100%;"
  5703. },
  5704. "src": "/course-design-vue"
  5705. })
  5706. _box.appendChild(_iframe);
  5707. _box.appendChild(_jie);
  5708. _formdiv = new U.UF.UI.form(
  5709. "项目设计",
  5710. _box, {
  5711. "id": "courseDesign" + cid + stage + task + tool,
  5712. "style": {
  5713. "width": "90%",
  5714. "height": "90%",
  5715. "overflow": 'hidden'
  5716. },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, {
  5721. "style": {
  5722. "height": "36px"
  5723. }
  5724. }).form; //创建窗体
  5725. _taskbar = {
  5726. "id": str + _formdiv.id,
  5727. "style": {
  5728. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5729. },
  5730. "name": "项目设计",
  5731. "forms": _formdiv,
  5732. "click": function () {
  5733. U.MD.D.I.openApplication(str, obj, info);
  5734. }
  5735. }
  5736. break;
  5737. }
  5738. const script1 = document.createElement("script");
  5739. script1.type = "text/javascript";
  5740. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5741. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5742. const script2 = document.createElement("script");
  5743. script2.type = "text/javascript";
  5744. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5745. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5746. const script3 = document.createElement("script");
  5747. script3.type = "text/javascript";
  5748. script3.charset = "UTF-8";
  5749. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5750. const script4 = document.createElement("script");
  5751. script4.type = "text/javascript";
  5752. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5753. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5754. if (_iframe) {
  5755. if (str == 'doc') {
  5756. _iframe = _formdiv.querySelector('iframe')
  5757. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5758. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5759. _iframe.contentWindow.document.body.appendChild(script1);
  5760. _iframe.contentWindow.document.body.appendChild(script2);
  5761. // _iframe.contentWindow.document.body.appendChild(script3);
  5762. _iframe.contentWindow.document.body.appendChild(script4);
  5763. })
  5764. if (onloadListener) {
  5765. _iframe.contentDocument.location.reload()
  5766. } else {
  5767. _iframe.contentDocument.location.reload()
  5768. }
  5769. } else if (str == 'courseDesign') {
  5770. U.UF.DL.iframeLoad(_iframe, function () {
  5771. // _iframe.contentWindow.U.MD.O.W.load();
  5772. // _iframe.contentWindow.document.body.appendChild(script1);
  5773. _iframe.contentWindow.document.body.appendChild(script2);
  5774. _iframe.contentWindow.document.body.appendChild(script4);
  5775. })
  5776. } else if (str == 'mind') {
  5777. _iframe = _formdiv.querySelector('iframe')
  5778. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5779. //
  5780. _iframe.contentWindow.document.body.appendChild(script1);
  5781. _iframe.contentWindow.document.body.appendChild(script2);
  5782. _iframe.contentWindow.document.body.appendChild(script4);
  5783. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5784. })
  5785. if (onloadListener) {
  5786. _iframe.contentDocument.location.reload()
  5787. } else {
  5788. _iframe.contentDocument.location.reload()
  5789. }
  5790. } else if (str == 'whiteboard') {
  5791. _iframe = _formdiv.querySelector('iframe')
  5792. let onloadListener = _iframe.onload = () => {
  5793. _iframe.contentWindow.document.body.appendChild(script1);
  5794. _iframe.contentWindow.document.body.appendChild(script2);
  5795. _iframe.contentWindow.document.body.appendChild(script4);
  5796. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5797. };
  5798. if (onloadListener) {
  5799. try {
  5800. _iframe.src += ""
  5801. _iframe.contentWindow.document.location.reload()
  5802. } catch (error) {
  5803. }
  5804. } else {
  5805. _iframe.contentDocument.location.reload()
  5806. }
  5807. } else {
  5808. _iframe.onload = () => {
  5809. _iframe.contentWindow.document.body.appendChild(script1);
  5810. _iframe.contentWindow.document.body.appendChild(script2);
  5811. // _iframe.contentWindow.document.body.appendChild(script3);
  5812. _iframe.contentWindow.document.body.appendChild(script4);
  5813. };
  5814. }
  5815. _jie.onclick = async () => {
  5816. let text = ''
  5817. if (aTool == 1) {
  5818. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5819. } else if (aTool == 6) {
  5820. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5821. } else if (aTool == 3) {
  5822. text = await U.MD.D.I.getEditorContent(_iframe);
  5823. }
  5824. _loading.style.display = 'flex'
  5825. console.log(_loading);
  5826. var _ajs = _iframe.contentWindow.document.createElement("script");
  5827. _ajs.type = "text/javascript";
  5828. _ajs.innerHTML =
  5829. // 'console.log(' + _loading + ');\n' +
  5830. 'var _js = document.createElement("script");\n' +
  5831. '_js.type="text/javascript";\n' +
  5832. '_js.charset="UTF-8";\n' +
  5833. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5834. "_js.onload = function(){\n" +
  5835. ' var a = document.getElementsByTagName("img")\n' +
  5836. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5837. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5838. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5839. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5840. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5841. "beforeUpload_shishi(file," +
  5842. "'" +
  5843. _userid +
  5844. "'" +
  5845. ", " +
  5846. "'" +
  5847. _cid +
  5848. "'" +
  5849. ", " +
  5850. "'" +
  5851. _stage +
  5852. "'" +
  5853. ", " +
  5854. "'" +
  5855. _task +
  5856. "'" +
  5857. ", " +
  5858. "'" +
  5859. _tool +
  5860. "'" +
  5861. ", " +
  5862. "'" +
  5863. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5864. "'" +
  5865. ", " +
  5866. "'" +
  5867. aTool +
  5868. "'" +
  5869. ", " +
  5870. "`" +
  5871. text +
  5872. "`" +
  5873. ")\n" +
  5874. " });\n" +
  5875. "}\n" +
  5876. "document.head.appendChild(_js);\n";
  5877. _iframe.contentWindow.document.head.appendChild(_ajs);
  5878. }
  5879. }
  5880. //U.MD.D.I.openClick(str);
  5881. //如果有任务栏信息
  5882. // if (_taskbar) {
  5883. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5884. // }
  5885. }
  5886. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5887. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5888. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5889. _userinfo = US.userInfo, //登录用户信息
  5890. _userid = US.userInfo.userid //登录用户id
  5891. let _iframe;
  5892. let _cid = cid,
  5893. _stage = stage,
  5894. _task = task,
  5895. _tool = tool;
  5896. var _jie = $$("div", {
  5897. "style": {
  5898. "position": "absolute",
  5899. "bottom": "50px",
  5900. "right": "50px",
  5901. "zIndex": "9999",
  5902. "backgroundColor": "#2268bc",
  5903. "color": "#fff",
  5904. "padding": "12px 20px",
  5905. "cursor": "pointer",
  5906. "borderRadius": "4px",
  5907. },
  5908. "innerHTML": "提交作业"
  5909. })
  5910. let aTool = ''
  5911. let _loading = document.createElement('div')
  5912. _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;"
  5913. // _loading.id = "";
  5914. let _lchild = document.createElement('div')
  5915. let _limg = document.createElement('img')
  5916. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5917. _limg.style = "width: 26px;margin-right: 10px;"
  5918. _lchild.appendChild(_limg)
  5919. let _lspan = document.createElement('span')
  5920. _lspan.innerHTML = "上传中..."
  5921. _lchild.appendChild(_lspan)
  5922. _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%);"
  5923. _loading.appendChild(_lchild)
  5924. var _box = $$('div', {
  5925. "style": {
  5926. "position": "relative",
  5927. "width": "100%",
  5928. "height": "100%",
  5929. },
  5930. })
  5931. _box.appendChild(_loading)
  5932. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5933. switch (str) {
  5934. case "whiteboard":
  5935. aTool = 1;
  5936. _iframe = $$("iframe", {
  5937. "frameborder": "no",
  5938. "border": "0",
  5939. "scrolling ": "no",
  5940. "style": {
  5941. "cssText": "border:0;width:100%;height:100%"
  5942. },
  5943. "src": "https://beta.iwb.cocorobo.cn?cocorobo="+new Date().getTime()
  5944. })
  5945. _box.appendChild(_iframe);
  5946. _box.appendChild(_jie);
  5947. _formdiv = new U.UF.UI.form(
  5948. "电子白板",
  5949. _box, {
  5950. "id": "whiteboard" + cid + stage + task + tool,
  5951. "style": {
  5952. "width": "90%",
  5953. "height": "90%",
  5954. "overflow": 'hidden'
  5955. },
  5956. "onresize": function () { }
  5957. }, {
  5958. closecallback: function () { }
  5959. }, {
  5960. "style": {
  5961. "height": "36px"
  5962. }
  5963. }).form; //创建窗体
  5964. _taskbar = {
  5965. "id": str + _formdiv.id,
  5966. "style": {
  5967. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5968. },
  5969. "name": "电子白板",
  5970. "forms": _formdiv,
  5971. "click": function () {
  5972. U.MD.D.I.openApplication(str, obj, info);
  5973. }
  5974. }
  5975. break;
  5976. case "mind":
  5977. aTool = 3;
  5978. _iframe = $$("iframe", {
  5979. "frameborder": "no",
  5980. "border": "0",
  5981. "scrolling ": "no",
  5982. "style": {
  5983. "cssText": "border:0;width:100%;height:100%"
  5984. },
  5985. "src": "/kityminder-editor/dist/index.html"
  5986. })
  5987. _box.appendChild(_iframe);
  5988. _box.appendChild(_jie);
  5989. _formdiv = new U.UF.UI.form(
  5990. "思维导图",
  5991. _box, { //"/jsmind/example/demo.html"
  5992. "id": "mind" + cid + stage + task + tool,
  5993. "style": {
  5994. "width": "90%",
  5995. "height": "90%",
  5996. "overflow": 'hidden'
  5997. },
  5998. "onresize": function () { }
  5999. }, {
  6000. closecallback: function () { }
  6001. }, {
  6002. "style": {
  6003. "height": "36px"
  6004. }
  6005. }).form; //创建窗体
  6006. _taskbar = {
  6007. "id": str + _formdiv.id,
  6008. "style": {
  6009. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6010. },
  6011. "name": "思维导图",
  6012. "forms": _formdiv,
  6013. "click": function () {
  6014. U.MD.D.I.openApplication(str, obj, info);
  6015. }
  6016. }
  6017. break;
  6018. case "MindMap":
  6019. aTool = 3;
  6020. _iframe = $$("iframe", {
  6021. "frameborder": "no",
  6022. "border": "0",
  6023. "scrolling ": "no",
  6024. "style": {
  6025. "cssText": "border:0;width:100%;height:100%"
  6026. },
  6027. "src": "//cloud.cocorobo.cn/mind/"
  6028. })
  6029. _box.appendChild(_iframe);
  6030. _box.appendChild(_jie);
  6031. _formdiv = new U.UF.UI.form(
  6032. "思维导图",
  6033. _box, { //"/jsmind/example/demo.html"
  6034. "id": "mind" + cid + stage + task + tool,
  6035. "style": {
  6036. "width": "90%",
  6037. "height": "90%",
  6038. "overflow": 'hidden'
  6039. },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, {
  6044. "style": {
  6045. "height": "36px"
  6046. }
  6047. }).form; //创建窗体
  6048. _taskbar = {
  6049. "id": str + _formdiv.id,
  6050. "style": {
  6051. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6052. },
  6053. "name": "思维导图",
  6054. "forms": _formdiv,
  6055. "click": function () {
  6056. U.MD.D.I.openApplication(str, obj, info);
  6057. }
  6058. }
  6059. break;
  6060. case "doc":
  6061. aTool = 6;
  6062. _iframe = $$("iframe", {
  6063. "frameborder": "no",
  6064. "border": "0",
  6065. "scrolling ": "no",
  6066. "style": {
  6067. "cssText": "border:0;width:100%;height:100%"
  6068. },
  6069. "src": "/Office/Word/WordEditArea.htm"
  6070. })
  6071. _box.appendChild(_iframe);
  6072. _box.appendChild(_jie);
  6073. _formdiv = new U.UF.UI.form(
  6074. "协同文档",
  6075. _box, {
  6076. "id": "doc" + cid + stage + task + tool,
  6077. "style": {
  6078. "width": "90%",
  6079. "height": "90%",
  6080. "overflow": 'hidden'
  6081. },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, {
  6086. "style": {
  6087. "height": "36px"
  6088. }
  6089. }).form; //创建窗体
  6090. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6091. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6092. })
  6093. _taskbar = {
  6094. "id": str + _formdiv.id,
  6095. "style": {
  6096. "backgroundImage": "url(/img/icon/doc.png)"
  6097. },
  6098. "name": "协同文档",
  6099. "forms": _formdiv,
  6100. "click": function () {
  6101. U.MD.D.I.openApplication(str, obj, info);
  6102. }
  6103. }
  6104. break;
  6105. case "mindNetwork": //好友打开
  6106. aTool = 7;
  6107. _iframe = $$("iframe", {
  6108. "webkitallowfullscreen": "",
  6109. "mozallowfullscreen": "",
  6110. "allowfullscreen": "",
  6111. "frameborder": "no",
  6112. "border": "0",
  6113. "scrolling ": "no",
  6114. "style": {
  6115. "cssText": "border:0; width:100%; height:100%;"
  6116. },
  6117. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6118. })
  6119. _box.appendChild(_iframe);
  6120. _box.appendChild(_jie);
  6121. _formdiv = new U.UF.UI.form(
  6122. "思维网格",
  6123. _box, {
  6124. "id": "mindNetwork" + cid + stage + task + tool,
  6125. "style": {
  6126. "width": "90%",
  6127. "height": "90%",
  6128. "overflow": 'hidden'
  6129. },
  6130. "onresize": function () { }
  6131. }, {
  6132. closecallback: function () { }
  6133. }, {
  6134. "style": {
  6135. "height": "36px"
  6136. }
  6137. }).form; //创建窗体
  6138. _taskbar = {
  6139. "id": str + _formdiv.id,
  6140. "style": {
  6141. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6142. },
  6143. "name": "思维网格",
  6144. "forms": _formdiv,
  6145. "click": function () {
  6146. U.MD.D.I.openApplication(str, obj, info);
  6147. }
  6148. }
  6149. break;
  6150. case "courseDesign":
  6151. _iframe = $$("iframe", {
  6152. "webkitallowfullscreen": "",
  6153. "mozallowfullscreen": "",
  6154. "allowfullscreen": "",
  6155. "frameborder": "no",
  6156. "border": "0",
  6157. "scrolling ": "no",
  6158. "style": {
  6159. "cssText": "border:0; width:100%; height:100%;"
  6160. },
  6161. "src": "/course-design-vue"
  6162. })
  6163. _box.appendChild(_iframe);
  6164. _box.appendChild(_jie);
  6165. _formdiv = new U.UF.UI.form(
  6166. "项目设计",
  6167. _box, {
  6168. "id": "courseDesign" + cid + stage + task + tool,
  6169. "style": {
  6170. "width": "90%",
  6171. "height": "90%",
  6172. "overflow": 'hidden'
  6173. },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () { }
  6177. }, {
  6178. "style": {
  6179. "height": "36px"
  6180. }
  6181. }).form; //创建窗体
  6182. _taskbar = {
  6183. "id": str + _formdiv.id,
  6184. "style": {
  6185. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6186. },
  6187. "name": "项目设计",
  6188. "forms": _formdiv,
  6189. "click": function () {
  6190. U.MD.D.I.openApplication(str, obj, info);
  6191. }
  6192. }
  6193. break;
  6194. }
  6195. const script1 = document.createElement("script");
  6196. script1.type = "text/javascript";
  6197. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6198. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6199. const script2 = document.createElement("script");
  6200. script2.type = "text/javascript";
  6201. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6202. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6203. const script3 = document.createElement("script");
  6204. script3.type = "text/javascript";
  6205. script3.charset = "UTF-8";
  6206. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6207. const script4 = document.createElement("script");
  6208. script4.type = "text/javascript";
  6209. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6210. script4.src = window.origin + "/js/Common/jietu2E.js";
  6211. if (_iframe) {
  6212. if (str == 'doc') {
  6213. _iframe = _formdiv.querySelector('iframe')
  6214. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6215. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6216. _iframe.contentWindow.document.body.appendChild(script1);
  6217. _iframe.contentWindow.document.body.appendChild(script2);
  6218. // _iframe.contentWindow.document.body.appendChild(script3);
  6219. _iframe.contentWindow.document.body.appendChild(script4);
  6220. })
  6221. if (onloadListener) {
  6222. _iframe.contentDocument.location.reload()
  6223. } else {
  6224. _iframe.contentDocument.location.reload()
  6225. }
  6226. } else if (str == 'courseDesign') {
  6227. U.UF.DL.iframeLoad(_iframe, function () {
  6228. // _iframe.contentWindow.U.MD.O.W.load();
  6229. // _iframe.contentWindow.document.body.appendChild(script1);
  6230. _iframe.contentWindow.document.body.appendChild(script2);
  6231. _iframe.contentWindow.document.body.appendChild(script4);
  6232. })
  6233. } else if (str == 'mind') {
  6234. _iframe = _formdiv.querySelector('iframe')
  6235. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6236. //
  6237. _iframe.contentWindow.document.body.appendChild(script1);
  6238. _iframe.contentWindow.document.body.appendChild(script2);
  6239. _iframe.contentWindow.document.body.appendChild(script4);
  6240. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6241. })
  6242. if (onloadListener) {
  6243. _iframe.contentDocument.location.reload()
  6244. } else {
  6245. _iframe.contentDocument.location.reload()
  6246. }
  6247. } else if (str == 'whiteboard') {
  6248. _iframe = _formdiv.querySelector('iframe')
  6249. let onloadListener = _iframe.onload = () => {
  6250. _iframe.contentWindow.document.body.appendChild(script1);
  6251. _iframe.contentWindow.document.body.appendChild(script2);
  6252. _iframe.contentWindow.document.body.appendChild(script4);
  6253. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6254. };
  6255. if (onloadListener) {
  6256. try {
  6257. _iframe.src += ""
  6258. _iframe.contentWindow.document.location.reload()
  6259. } catch (error) {
  6260. }
  6261. } else {
  6262. _iframe.contentDocument.location.reload()
  6263. }
  6264. } else {
  6265. _iframe.onload = () => {
  6266. _iframe.contentWindow.document.body.appendChild(script1);
  6267. _iframe.contentWindow.document.body.appendChild(script2);
  6268. // _iframe.contentWindow.document.body.appendChild(script3);
  6269. _iframe.contentWindow.document.body.appendChild(script4);
  6270. };
  6271. }
  6272. _jie.onclick = async () => {
  6273. let text = ''
  6274. if (aTool == 1) {
  6275. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6276. } else if (aTool == 6) {
  6277. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6278. } else if (aTool == 3) {
  6279. text = await U.MD.D.I.getEditorContent(_iframe);
  6280. }
  6281. _loading.style.display = 'flex'
  6282. console.log(_loading);
  6283. var _ajs = _iframe.contentWindow.document.createElement("script");
  6284. _ajs.type = "text/javascript";
  6285. _ajs.innerHTML =
  6286. // 'console.log(' + _loading + ');\n' +
  6287. 'var _js = document.createElement("script");\n' +
  6288. '_js.type="text/javascript";\n' +
  6289. '_js.charset="UTF-8";\n' +
  6290. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6291. "_js.onload = function(){\n" +
  6292. ' var a = document.getElementsByTagName("img")\n' +
  6293. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6294. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6295. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6296. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6297. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6298. "beforeUpload_shishi(file," +
  6299. "'" +
  6300. _userid +
  6301. "'" +
  6302. ", " +
  6303. "'" +
  6304. _cid +
  6305. "'" +
  6306. ", " +
  6307. "'" +
  6308. _stage +
  6309. "'" +
  6310. ", " +
  6311. "'" +
  6312. _task +
  6313. "'" +
  6314. ", " +
  6315. "'" +
  6316. _tool +
  6317. "'" +
  6318. ", " +
  6319. "'" +
  6320. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6321. "'" +
  6322. ", " +
  6323. "'" +
  6324. aTool +
  6325. "'" +
  6326. ", " +
  6327. "`" +
  6328. text +
  6329. "`" +
  6330. ")\n" +
  6331. " });\n" +
  6332. "}\n" +
  6333. "document.head.appendChild(_js);\n";
  6334. _iframe.contentWindow.document.head.appendChild(_ajs);
  6335. }
  6336. }
  6337. //U.MD.D.I.openClick(str);
  6338. //如果有任务栏信息
  6339. // if (_taskbar) {
  6340. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6341. // }
  6342. }
  6343. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6344. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6345. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6346. _userid = student.userid, //登录用户id
  6347. _username = student.student //用户名字
  6348. let _iframe;
  6349. let _cid = cid,
  6350. _stage = stage,
  6351. _task = task,
  6352. _tool = tool;
  6353. var _jie = $$("div", {
  6354. "style": {
  6355. "position": "absolute",
  6356. "bottom": "50px",
  6357. "right": "50px",
  6358. "zIndex": "9999",
  6359. "backgroundColor": "#2268bc",
  6360. "color": "#fff",
  6361. "padding": "12px 20px",
  6362. "cursor": "pointer",
  6363. "borderRadius": "4px",
  6364. },
  6365. "innerHTML": "提交作业"
  6366. })
  6367. let aTool = ''
  6368. let _loading = document.createElement('div')
  6369. _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;"
  6370. // _loading.id = "";
  6371. let _lchild = document.createElement('div')
  6372. let _limg = document.createElement('img')
  6373. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6374. _limg.style = "width: 26px;margin-right: 10px;"
  6375. _lchild.appendChild(_limg)
  6376. let _lspan = document.createElement('span')
  6377. _lspan.innerHTML = "上传中..."
  6378. _lchild.appendChild(_lspan)
  6379. _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%);"
  6380. _loading.appendChild(_lchild)
  6381. var _box = $$('div', {
  6382. "style": {
  6383. "position": "relative",
  6384. "width": "100%",
  6385. "height": "100%",
  6386. },
  6387. })
  6388. _box.appendChild(_loading)
  6389. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6390. switch (str) {
  6391. case "whiteboard":
  6392. aTool = 1;
  6393. _iframe = $$("iframe", {
  6394. "frameborder": "no",
  6395. "border": "0",
  6396. "scrolling ": "no",
  6397. "style": {
  6398. "cssText": "border:0;width:100%;height:100%"
  6399. },
  6400. "src": "https://beta.iwb.cocorobo.cn?cocorobo="+new Date().getTime()
  6401. })
  6402. _box.appendChild(_iframe);
  6403. _box.appendChild(_jie);
  6404. _formdiv = new U.UF.UI.form(
  6405. "电子白板-" + _username,
  6406. _box, {
  6407. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6408. "style": {
  6409. "width": "90%",
  6410. "height": "90%",
  6411. "overflow": 'hidden'
  6412. },
  6413. "onresize": function () { }
  6414. }, {
  6415. closecallback: function () { }
  6416. }, {
  6417. "style": {
  6418. "height": "36px"
  6419. }
  6420. }).form; //创建窗体
  6421. _taskbar = {
  6422. "id": str + _formdiv.id,
  6423. "style": {
  6424. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6425. },
  6426. "name": "电子白板",
  6427. "forms": _formdiv,
  6428. "click": function () {
  6429. U.MD.D.I.openApplication(str, obj, info);
  6430. }
  6431. }
  6432. break;
  6433. case "mind":
  6434. aTool = 3;
  6435. _iframe = $$("iframe", {
  6436. "frameborder": "no",
  6437. "border": "0",
  6438. "scrolling ": "no",
  6439. "style": {
  6440. "cssText": "border:0;width:100%;height:100%"
  6441. },
  6442. "src": "/kityminder-editor/dist/index.html"
  6443. })
  6444. _box.appendChild(_iframe);
  6445. _box.appendChild(_jie);
  6446. _formdiv = new U.UF.UI.form(
  6447. "思维导图-" + _username,
  6448. _box, { //"/jsmind/example/demo.html"
  6449. "id": "mind" + cid + stage + task + tool + _userid,
  6450. "style": {
  6451. "width": "90%",
  6452. "height": "90%",
  6453. "overflow": 'hidden'
  6454. },
  6455. "onresize": function () { }
  6456. }, {
  6457. closecallback: function () { }
  6458. }, {
  6459. "style": {
  6460. "height": "36px"
  6461. }
  6462. }).form; //创建窗体
  6463. _taskbar = {
  6464. "id": str + _formdiv.id,
  6465. "style": {
  6466. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6467. },
  6468. "name": "思维导图",
  6469. "forms": _formdiv,
  6470. "click": function () {
  6471. U.MD.D.I.openApplication(str, obj, info);
  6472. }
  6473. }
  6474. break;
  6475. case "MindMap":
  6476. aTool = 3;
  6477. _iframe = $$("iframe", {
  6478. "frameborder": "no",
  6479. "border": "0",
  6480. "scrolling ": "no",
  6481. "style": {
  6482. "cssText": "border:0;width:100%;height:100%"
  6483. },
  6484. "src": "//cloud.cocorobo.cn/mind/"
  6485. })
  6486. _box.appendChild(_iframe);
  6487. _box.appendChild(_jie);
  6488. _formdiv = new U.UF.UI.form(
  6489. "思维导图-" + _username,
  6490. _box, { //"/jsmind/example/demo.html"
  6491. "id": "mind" + cid + stage + task + tool + _userid,
  6492. "style": {
  6493. "width": "90%",
  6494. "height": "90%",
  6495. "overflow": 'hidden'
  6496. },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, {
  6501. "style": {
  6502. "height": "36px"
  6503. }
  6504. }).form; //创建窗体
  6505. _taskbar = {
  6506. "id": str + _formdiv.id,
  6507. "style": {
  6508. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6509. },
  6510. "name": "思维导图",
  6511. "forms": _formdiv,
  6512. "click": function () {
  6513. U.MD.D.I.openApplication(str, obj, info);
  6514. }
  6515. }
  6516. break;
  6517. case "doc":
  6518. aTool = 6;
  6519. _iframe = $$("iframe", {
  6520. "frameborder": "no",
  6521. "border": "0",
  6522. "scrolling ": "no",
  6523. "style": {
  6524. "cssText": "border:0;width:100%;height:100%"
  6525. },
  6526. "src": "/Office/Word/WordEditArea.htm"
  6527. })
  6528. _box.appendChild(_iframe);
  6529. _box.appendChild(_jie);
  6530. _formdiv = new U.UF.UI.form(
  6531. "协同文档-" + _username,
  6532. _box, {
  6533. "id": "doc" + cid + stage + task + tool + _userid,
  6534. "style": {
  6535. "width": "90%",
  6536. "height": "90%",
  6537. "overflow": 'hidden'
  6538. },
  6539. "onresize": function () { }
  6540. }, {
  6541. closecallback: function () { }
  6542. }, {
  6543. "style": {
  6544. "height": "36px"
  6545. }
  6546. }).form; //创建窗体
  6547. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6548. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6549. })
  6550. _taskbar = {
  6551. "id": str + _formdiv.id,
  6552. "style": {
  6553. "backgroundImage": "url(/img/icon/doc.png)"
  6554. },
  6555. "name": "协同文档",
  6556. "forms": _formdiv,
  6557. "click": function () {
  6558. U.MD.D.I.openApplication(str, obj, info);
  6559. }
  6560. }
  6561. break;
  6562. case "mindNetwork": //好友打开
  6563. aTool = 7;
  6564. _iframe = $$("iframe", {
  6565. "webkitallowfullscreen": "",
  6566. "mozallowfullscreen": "",
  6567. "allowfullscreen": "",
  6568. "frameborder": "no",
  6569. "border": "0",
  6570. "scrolling ": "no",
  6571. "style": {
  6572. "cssText": "border:0; width:100%; height:100%;"
  6573. },
  6574. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6575. })
  6576. _box.appendChild(_iframe);
  6577. _box.appendChild(_jie);
  6578. _formdiv = new U.UF.UI.form(
  6579. "思维网格-" + _username,
  6580. _box, {
  6581. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6582. "style": {
  6583. "width": "90%",
  6584. "height": "90%",
  6585. "overflow": 'hidden'
  6586. },
  6587. "onresize": function () { }
  6588. }, {
  6589. closecallback: function () { }
  6590. }, {
  6591. "style": {
  6592. "height": "36px"
  6593. }
  6594. }).form; //创建窗体
  6595. _taskbar = {
  6596. "id": str + _formdiv.id,
  6597. "style": {
  6598. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6599. },
  6600. "name": "思维网格",
  6601. "forms": _formdiv,
  6602. "click": function () {
  6603. U.MD.D.I.openApplication(str, obj, info);
  6604. }
  6605. }
  6606. break;
  6607. case "courseDesign":
  6608. _iframe = $$("iframe", {
  6609. "webkitallowfullscreen": "",
  6610. "mozallowfullscreen": "",
  6611. "allowfullscreen": "",
  6612. "frameborder": "no",
  6613. "border": "0",
  6614. "scrolling ": "no",
  6615. "style": {
  6616. "cssText": "border:0; width:100%; height:100%;"
  6617. },
  6618. "src": "/course-design-vue"
  6619. })
  6620. _box.appendChild(_iframe);
  6621. _box.appendChild(_jie);
  6622. _formdiv = new U.UF.UI.form(
  6623. "项目设计-" + _username,
  6624. _box, {
  6625. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6626. "style": {
  6627. "width": "90%",
  6628. "height": "90%",
  6629. "overflow": 'hidden'
  6630. },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () { }
  6634. }, {
  6635. "style": {
  6636. "height": "36px"
  6637. }
  6638. }).form; //创建窗体
  6639. _taskbar = {
  6640. "id": str + _formdiv.id,
  6641. "style": {
  6642. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6643. },
  6644. "name": "项目设计",
  6645. "forms": _formdiv,
  6646. "click": function () {
  6647. U.MD.D.I.openApplication(str, obj, info);
  6648. }
  6649. }
  6650. break;
  6651. }
  6652. const script1 = document.createElement("script");
  6653. script1.type = "text/javascript";
  6654. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6655. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6656. const script2 = document.createElement("script");
  6657. script2.type = "text/javascript";
  6658. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6659. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6660. const script3 = document.createElement("script");
  6661. script3.type = "text/javascript";
  6662. script3.charset = "UTF-8";
  6663. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6664. const script4 = document.createElement("script");
  6665. script4.type = "text/javascript";
  6666. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6667. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6668. if (_iframe) {
  6669. if (str == 'doc') {
  6670. _iframe = _formdiv.querySelector('iframe')
  6671. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6672. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6673. _iframe.contentWindow.document.body.appendChild(script1);
  6674. _iframe.contentWindow.document.body.appendChild(script2);
  6675. // _iframe.contentWindow.document.body.appendChild(script3);
  6676. _iframe.contentWindow.document.body.appendChild(script4);
  6677. })
  6678. if (onloadListener) {
  6679. _iframe.contentDocument.location.reload()
  6680. } else {
  6681. _iframe.contentDocument.location.reload()
  6682. }
  6683. } else if (str == 'courseDesign') {
  6684. U.UF.DL.iframeLoad(_iframe, function () {
  6685. // _iframe.contentWindow.U.MD.O.W.load();
  6686. // _iframe.contentWindow.document.body.appendChild(script1);
  6687. _iframe.contentWindow.document.body.appendChild(script2);
  6688. _iframe.contentWindow.document.body.appendChild(script4);
  6689. })
  6690. } else if (str == 'mind') {
  6691. _iframe = _formdiv.querySelector('iframe')
  6692. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6693. //
  6694. _iframe.contentWindow.document.body.appendChild(script1);
  6695. _iframe.contentWindow.document.body.appendChild(script2);
  6696. _iframe.contentWindow.document.body.appendChild(script4);
  6697. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6698. })
  6699. if (onloadListener) {
  6700. _iframe.contentDocument.location.reload()
  6701. } else {
  6702. _iframe.contentDocument.location.reload()
  6703. }
  6704. } else if (str == 'whiteboard') {
  6705. _iframe = _formdiv.querySelector('iframe')
  6706. let onloadListener = _iframe.onload = () => {
  6707. _iframe.contentWindow.document.body.appendChild(script1);
  6708. _iframe.contentWindow.document.body.appendChild(script2);
  6709. _iframe.contentWindow.document.body.appendChild(script4);
  6710. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6711. };
  6712. if (onloadListener) {
  6713. try {
  6714. _iframe.src += ""
  6715. _iframe.contentWindow.document.location.reload()
  6716. } catch (error) {
  6717. }
  6718. } else {
  6719. _iframe.contentDocument.location.reload()
  6720. }
  6721. } else {
  6722. _iframe.onload = () => {
  6723. _iframe.contentWindow.document.body.appendChild(script1);
  6724. _iframe.contentWindow.document.body.appendChild(script2);
  6725. // _iframe.contentWindow.document.body.appendChild(script3);
  6726. _iframe.contentWindow.document.body.appendChild(script4);
  6727. };
  6728. }
  6729. _jie.onclick = async () => {
  6730. let text = ''
  6731. if (aTool == 1) {
  6732. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6733. } else if (aTool == 6) {
  6734. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6735. } else if (aTool == 3) {
  6736. text = await U.MD.D.I.getEditorContent(_iframe);
  6737. }
  6738. _loading.style.display = 'flex'
  6739. console.log(_loading);
  6740. var _ajs = _iframe.contentWindow.document.createElement("script");
  6741. _ajs.type = "text/javascript";
  6742. _ajs.innerHTML =
  6743. // 'console.log(' + _loading + ');\n' +
  6744. 'var _js = document.createElement("script");\n' +
  6745. '_js.type="text/javascript";\n' +
  6746. '_js.charset="UTF-8";\n' +
  6747. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6748. "_js.onload = function(){\n" +
  6749. ' var a = document.getElementsByTagName("img")\n' +
  6750. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6751. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6752. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6753. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6754. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6755. "beforeUpload_shishi(file," +
  6756. "'" +
  6757. _userid +
  6758. "'" +
  6759. ", " +
  6760. "'" +
  6761. _cid +
  6762. "'" +
  6763. ", " +
  6764. "'" +
  6765. _stage +
  6766. "'" +
  6767. ", " +
  6768. "'" +
  6769. _task +
  6770. "'" +
  6771. ", " +
  6772. "'" +
  6773. _tool +
  6774. "'" +
  6775. ", " +
  6776. "'" +
  6777. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6778. "'" +
  6779. ", " +
  6780. "'" +
  6781. aTool +
  6782. "'" +
  6783. ", " +
  6784. "`" +
  6785. text +
  6786. "`" +
  6787. ")\n" +
  6788. " });\n" +
  6789. "}\n" +
  6790. "document.head.appendChild(_js);\n";
  6791. _iframe.contentWindow.document.head.appendChild(_ajs);
  6792. }
  6793. }
  6794. }
  6795. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6796. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6797. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6798. _userid = student.userid, //登录用户id
  6799. _username = student.student //用户名字
  6800. let _iframe;
  6801. let _cid = cid,
  6802. _stage = stage,
  6803. _task = task,
  6804. _tool = tool;
  6805. var _jie = $$("div", {
  6806. "style": {
  6807. "position": "absolute",
  6808. "bottom": "50px",
  6809. "right": "50px",
  6810. "zIndex": "9999",
  6811. "backgroundColor": "#2268bc",
  6812. "color": "#fff",
  6813. "padding": "12px 20px",
  6814. "cursor": "pointer",
  6815. "borderRadius": "4px",
  6816. },
  6817. "innerHTML": "提交作业"
  6818. })
  6819. let aTool = ''
  6820. let _loading = document.createElement('div')
  6821. _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;"
  6822. // _loading.id = "";
  6823. let _lchild = document.createElement('div')
  6824. let _limg = document.createElement('img')
  6825. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6826. _limg.style = "width: 26px;margin-right: 10px;"
  6827. _lchild.appendChild(_limg)
  6828. let _lspan = document.createElement('span')
  6829. _lspan.innerHTML = "上传中..."
  6830. _lchild.appendChild(_lspan)
  6831. _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%);"
  6832. _loading.appendChild(_lchild)
  6833. var _box = $$('div', {
  6834. "style": {
  6835. "position": "relative",
  6836. "width": "100%",
  6837. "height": "100%",
  6838. },
  6839. })
  6840. _box.appendChild(_loading)
  6841. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6842. switch (str) {
  6843. case "whiteboard":
  6844. aTool = 1;
  6845. _iframe = $$("iframe", {
  6846. "frameborder": "no",
  6847. "border": "0",
  6848. "scrolling ": "no",
  6849. "style": {
  6850. "cssText": "border:0;width:100%;height:100%"
  6851. },
  6852. "src": "https://beta.iwb.cocorobo.cn?cocorobo="+new Date().getTime()
  6853. })
  6854. _box.appendChild(_iframe);
  6855. _box.appendChild(_jie);
  6856. _formdiv = new U.UF.UI.form(
  6857. "电子白板-" + _username,
  6858. _box, {
  6859. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6860. "style": {
  6861. "width": "90%",
  6862. "height": "90%",
  6863. "overflow": 'hidden'
  6864. },
  6865. "onresize": function () { }
  6866. }, {
  6867. closecallback: function () { }
  6868. }, {
  6869. "style": {
  6870. "height": "36px"
  6871. }
  6872. }).form; //创建窗体
  6873. _taskbar = {
  6874. "id": str + _formdiv.id,
  6875. "style": {
  6876. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6877. },
  6878. "name": "电子白板",
  6879. "forms": _formdiv,
  6880. "click": function () {
  6881. U.MD.D.I.openApplication(str, obj, info);
  6882. }
  6883. }
  6884. break;
  6885. case "mind":
  6886. aTool = 3;
  6887. _iframe = $$("iframe", {
  6888. "frameborder": "no",
  6889. "border": "0",
  6890. "scrolling ": "no",
  6891. "style": {
  6892. "cssText": "border:0;width:100%;height:100%"
  6893. },
  6894. "src": "/kityminder-editor/dist/index.html"
  6895. })
  6896. _box.appendChild(_iframe);
  6897. _box.appendChild(_jie);
  6898. _formdiv = new U.UF.UI.form(
  6899. "思维导图-" + _username,
  6900. _box, { //"/jsmind/example/demo.html"
  6901. "id": "mind" + cid + stage + task + tool + _userid,
  6902. "style": {
  6903. "width": "90%",
  6904. "height": "90%",
  6905. "overflow": 'hidden'
  6906. },
  6907. "onresize": function () { }
  6908. }, {
  6909. closecallback: function () { }
  6910. }, {
  6911. "style": {
  6912. "height": "36px"
  6913. }
  6914. }).form; //创建窗体
  6915. _taskbar = {
  6916. "id": str + _formdiv.id,
  6917. "style": {
  6918. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6919. },
  6920. "name": "思维导图",
  6921. "forms": _formdiv,
  6922. "click": function () {
  6923. U.MD.D.I.openApplication(str, obj, info);
  6924. }
  6925. }
  6926. break;
  6927. case "MindMap":
  6928. aTool = 3;
  6929. _iframe = $$("iframe", {
  6930. "frameborder": "no",
  6931. "border": "0",
  6932. "scrolling ": "no",
  6933. "style": {
  6934. "cssText": "border:0;width:100%;height:100%"
  6935. },
  6936. "src": "//cloud.cocorobo.cn/mind/"
  6937. })
  6938. _box.appendChild(_iframe);
  6939. _box.appendChild(_jie);
  6940. _formdiv = new U.UF.UI.form(
  6941. "思维导图-" + _username,
  6942. _box, { //"/jsmind/example/demo.html"
  6943. "id": "mind" + cid + stage + task + tool + _userid,
  6944. "style": {
  6945. "width": "90%",
  6946. "height": "90%",
  6947. "overflow": 'hidden'
  6948. },
  6949. "onresize": function () { }
  6950. }, {
  6951. closecallback: function () { }
  6952. }, {
  6953. "style": {
  6954. "height": "36px"
  6955. }
  6956. }).form; //创建窗体
  6957. _taskbar = {
  6958. "id": str + _formdiv.id,
  6959. "style": {
  6960. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6961. },
  6962. "name": "思维导图",
  6963. "forms": _formdiv,
  6964. "click": function () {
  6965. U.MD.D.I.openApplication(str, obj, info);
  6966. }
  6967. }
  6968. break;
  6969. case "doc":
  6970. aTool = 6;
  6971. _iframe = $$("iframe", {
  6972. "frameborder": "no",
  6973. "border": "0",
  6974. "scrolling ": "no",
  6975. "style": {
  6976. "cssText": "border:0;width:100%;height:100%"
  6977. },
  6978. "src": "/Office/Word/WordEditArea.htm"
  6979. })
  6980. _box.appendChild(_iframe);
  6981. _box.appendChild(_jie);
  6982. _formdiv = new U.UF.UI.form(
  6983. "协同文档-" + _username,
  6984. _box, {
  6985. "id": "doc" + cid + stage + task + tool + _userid,
  6986. "style": {
  6987. "width": "90%",
  6988. "height": "90%",
  6989. "overflow": 'hidden'
  6990. },
  6991. "onresize": function () { }
  6992. }, {
  6993. closecallback: function () { }
  6994. }, {
  6995. "style": {
  6996. "height": "36px"
  6997. }
  6998. }).form; //创建窗体
  6999. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7000. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7001. })
  7002. _taskbar = {
  7003. "id": str + _formdiv.id,
  7004. "style": {
  7005. "backgroundImage": "url(/img/icon/doc.png)"
  7006. },
  7007. "name": "协同文档",
  7008. "forms": _formdiv,
  7009. "click": function () {
  7010. U.MD.D.I.openApplication(str, obj, info);
  7011. }
  7012. }
  7013. break;
  7014. case "mindNetwork": //好友打开
  7015. aTool = 7;
  7016. _iframe = $$("iframe", {
  7017. "webkitallowfullscreen": "",
  7018. "mozallowfullscreen": "",
  7019. "allowfullscreen": "",
  7020. "frameborder": "no",
  7021. "border": "0",
  7022. "scrolling ": "no",
  7023. "style": {
  7024. "cssText": "border:0; width:100%; height:100%;"
  7025. },
  7026. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7027. })
  7028. _box.appendChild(_iframe);
  7029. _box.appendChild(_jie);
  7030. _formdiv = new U.UF.UI.form(
  7031. "思维网格-" + _username,
  7032. _box, {
  7033. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7034. "style": {
  7035. "width": "90%",
  7036. "height": "90%",
  7037. "overflow": 'hidden'
  7038. },
  7039. "onresize": function () { }
  7040. }, {
  7041. closecallback: function () { }
  7042. }, {
  7043. "style": {
  7044. "height": "36px"
  7045. }
  7046. }).form; //创建窗体
  7047. _taskbar = {
  7048. "id": str + _formdiv.id,
  7049. "style": {
  7050. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7051. },
  7052. "name": "思维网格",
  7053. "forms": _formdiv,
  7054. "click": function () {
  7055. U.MD.D.I.openApplication(str, obj, info);
  7056. }
  7057. }
  7058. break;
  7059. case "courseDesign":
  7060. _iframe = $$("iframe", {
  7061. "webkitallowfullscreen": "",
  7062. "mozallowfullscreen": "",
  7063. "allowfullscreen": "",
  7064. "frameborder": "no",
  7065. "border": "0",
  7066. "scrolling ": "no",
  7067. "style": {
  7068. "cssText": "border:0; width:100%; height:100%;"
  7069. },
  7070. "src": "/course-design-vue"
  7071. })
  7072. _box.appendChild(_iframe);
  7073. _box.appendChild(_jie);
  7074. _formdiv = new U.UF.UI.form(
  7075. "项目设计-" + _username,
  7076. _box, {
  7077. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7078. "style": {
  7079. "width": "90%",
  7080. "height": "90%",
  7081. "overflow": 'hidden'
  7082. },
  7083. "onresize": function () { }
  7084. }, {
  7085. closecallback: function () { }
  7086. }, {
  7087. "style": {
  7088. "height": "36px"
  7089. }
  7090. }).form; //创建窗体
  7091. _taskbar = {
  7092. "id": str + _formdiv.id,
  7093. "style": {
  7094. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7095. },
  7096. "name": "项目设计",
  7097. "forms": _formdiv,
  7098. "click": function () {
  7099. U.MD.D.I.openApplication(str, obj, info);
  7100. }
  7101. }
  7102. break;
  7103. }
  7104. const script1 = document.createElement("script");
  7105. script1.type = "text/javascript";
  7106. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7107. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7108. const script2 = document.createElement("script");
  7109. script2.type = "text/javascript";
  7110. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7111. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7112. const script3 = document.createElement("script");
  7113. script3.type = "text/javascript";
  7114. script3.charset = "UTF-8";
  7115. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7116. const script4 = document.createElement("script");
  7117. script4.type = "text/javascript";
  7118. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7119. script4.src = window.origin + "/js/Common/jietu2E.js";
  7120. if (_iframe) {
  7121. if (str == 'doc') {
  7122. _iframe = _formdiv.querySelector('iframe')
  7123. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7124. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7125. _iframe.contentWindow.document.body.appendChild(script1);
  7126. _iframe.contentWindow.document.body.appendChild(script2);
  7127. // _iframe.contentWindow.document.body.appendChild(script3);
  7128. _iframe.contentWindow.document.body.appendChild(script4);
  7129. })
  7130. if (onloadListener) {
  7131. _iframe.contentDocument.location.reload()
  7132. } else {
  7133. _iframe.contentDocument.location.reload()
  7134. }
  7135. } else if (str == 'courseDesign') {
  7136. U.UF.DL.iframeLoad(_iframe, function () {
  7137. // _iframe.contentWindow.U.MD.O.W.load();
  7138. // _iframe.contentWindow.document.body.appendChild(script1);
  7139. _iframe.contentWindow.document.body.appendChild(script2);
  7140. _iframe.contentWindow.document.body.appendChild(script4);
  7141. })
  7142. } else if (str == 'mind') {
  7143. _iframe = _formdiv.querySelector('iframe')
  7144. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7145. //
  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, '2', _iframe)
  7150. })
  7151. if (onloadListener) {
  7152. _iframe.contentDocument.location.reload()
  7153. } else {
  7154. _iframe.contentDocument.location.reload()
  7155. }
  7156. } else if (str == 'whiteboard') {
  7157. _iframe = _formdiv.querySelector('iframe')
  7158. let onloadListener = _iframe.onload = () => {
  7159. _iframe.contentWindow.document.body.appendChild(script1);
  7160. _iframe.contentWindow.document.body.appendChild(script2);
  7161. _iframe.contentWindow.document.body.appendChild(script4);
  7162. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7163. };
  7164. if (onloadListener) {
  7165. try {
  7166. _iframe.src += ""
  7167. _iframe.contentWindow.document.location.reload()
  7168. } catch (error) {
  7169. }
  7170. } else {
  7171. _iframe.contentDocument.location.reload()
  7172. }
  7173. } else {
  7174. _iframe.onload = () => {
  7175. _iframe.contentWindow.document.body.appendChild(script1);
  7176. _iframe.contentWindow.document.body.appendChild(script2);
  7177. // _iframe.contentWindow.document.body.appendChild(script3);
  7178. _iframe.contentWindow.document.body.appendChild(script4);
  7179. };
  7180. }
  7181. _jie.onclick = async () => {
  7182. let text = ''
  7183. if (aTool == 1) {
  7184. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7185. } else if (aTool == 6) {
  7186. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7187. } else if (aTool == 3) {
  7188. text = await U.MD.D.I.getEditorContent(_iframe);
  7189. }
  7190. _loading.style.display = 'flex'
  7191. console.log(_loading);
  7192. var _ajs = _iframe.contentWindow.document.createElement("script");
  7193. _ajs.type = "text/javascript";
  7194. _ajs.innerHTML =
  7195. // 'console.log(' + _loading + ');\n' +
  7196. 'var _js = document.createElement("script");\n' +
  7197. '_js.type="text/javascript";\n' +
  7198. '_js.charset="UTF-8";\n' +
  7199. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7200. "_js.onload = function(){\n" +
  7201. ' var a = document.getElementsByTagName("img")\n' +
  7202. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7203. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7204. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7205. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7206. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7207. "beforeUpload_shishi(file," +
  7208. "'" +
  7209. _userid +
  7210. "'" +
  7211. ", " +
  7212. "'" +
  7213. _cid +
  7214. "'" +
  7215. ", " +
  7216. "'" +
  7217. _stage +
  7218. "'" +
  7219. ", " +
  7220. "'" +
  7221. _task +
  7222. "'" +
  7223. ", " +
  7224. "'" +
  7225. _tool +
  7226. "'" +
  7227. ", " +
  7228. "'" +
  7229. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7230. "'" +
  7231. ", " +
  7232. "'" +
  7233. aTool +
  7234. "'" +
  7235. ", " +
  7236. "`" +
  7237. text +
  7238. "`" +
  7239. ")\n" +
  7240. " });\n" +
  7241. "}\n" +
  7242. "document.head.appendChild(_js);\n";
  7243. _iframe.contentWindow.document.head.appendChild(_ajs);
  7244. }
  7245. }
  7246. }
  7247. U.MD.D.I.getEditorContent = function (iframe) {
  7248. return new Promise((resolve, reject) => {
  7249. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7250. console.log(content);
  7251. resolve(content)
  7252. });
  7253. });
  7254. }
  7255. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7256. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7257. // if (res.value[0].length > 0) {
  7258. // // resolve(res.value[0][0].text);
  7259. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7260. // $(fileInput).val('');
  7261. // });
  7262. // }
  7263. // }, [], { "type": "GET", "withCredentials": true });
  7264. var xmlhttp;
  7265. var Mac, Sn, DeviceId
  7266. if (window.XMLHttpRequest) {
  7267. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7268. xmlhttp = new XMLHttpRequest();
  7269. } else {
  7270. // IE6, IE5 浏览器执行代码
  7271. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7272. }
  7273. xmlhttp.onreadystatechange = function () {
  7274. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7275. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7276. // resolve(res.value[0][0].text);
  7277. if (type == '2') {
  7278. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7279. } else if (type == '3') {
  7280. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7281. }
  7282. } else {
  7283. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7284. }
  7285. }
  7286. }
  7287. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7288. xmlhttp.send();
  7289. }
  7290. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7291. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7292. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7293. _userinfo = US.userInfo, //登录用户信息
  7294. _userid = US.userInfo.userid //登录用户id
  7295. let _iframe;
  7296. let _cid = cid,
  7297. _stage = stage,
  7298. _task = task,
  7299. _tool = tool;
  7300. var _jie = $$("div", {
  7301. "style": {
  7302. "position": "absolute",
  7303. "bottom": "50px",
  7304. "right": "50px",
  7305. "zIndex": "9999",
  7306. "backgroundColor": "#2268bc",
  7307. "color": "#fff",
  7308. "padding": "12px 20px",
  7309. "cursor": "pointer",
  7310. "borderRadius": "4px",
  7311. },
  7312. "innerHTML": "确认并提交"
  7313. })
  7314. let aTool = ''
  7315. let _loading = document.createElement('div')
  7316. _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;"
  7317. // _loading.id = "";
  7318. let _lchild = document.createElement('div')
  7319. let _limg = document.createElement('img')
  7320. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7321. _limg.style = "width: 26px;margin-right: 10px;"
  7322. _lchild.appendChild(_limg)
  7323. let _lspan = document.createElement('span')
  7324. _lspan.innerHTML = "上传中..."
  7325. _lchild.appendChild(_lspan)
  7326. _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%);"
  7327. _loading.appendChild(_lchild)
  7328. var _box = $$('div', {
  7329. "style": {
  7330. "position": "relative",
  7331. "width": "100%",
  7332. "height": "100%",
  7333. },
  7334. })
  7335. _box.appendChild(_loading)
  7336. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7337. switch (str) {
  7338. case "whiteboard":
  7339. aTool = 1;
  7340. _iframe = $$("iframe", {
  7341. "frameborder": "no",
  7342. "border": "0",
  7343. "scrolling ": "no",
  7344. "style": {
  7345. "cssText": "border:0;width:100%;height:100%"
  7346. },
  7347. "src": "https://beta.iwb.cocorobo.cn?cocorobo="+new Date().getTime()
  7348. })
  7349. _box.appendChild(_iframe);
  7350. _box.appendChild(_jie);
  7351. _formdiv = new U.UF.UI.form(
  7352. "电子白板",
  7353. _box, {
  7354. "id": "whiteboards" + cid + stage + task + tool,
  7355. "style": {
  7356. "width": "90%",
  7357. "height": "90%",
  7358. "overflow": 'hidden'
  7359. },
  7360. "onresize": function () { }
  7361. }, {
  7362. closecallback: function () { }
  7363. }, {
  7364. "style": {
  7365. "height": "36px"
  7366. }
  7367. }).form; //创建窗体
  7368. _taskbar = {
  7369. "id": str + _formdiv.id,
  7370. "style": {
  7371. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7372. },
  7373. "name": "电子白板",
  7374. "forms": _formdiv,
  7375. "click": function () {
  7376. U.MD.D.I.openApplication(str, obj, info);
  7377. }
  7378. }
  7379. break;
  7380. case "mind":
  7381. aTool = 3;
  7382. _iframe = $$("iframe", {
  7383. "frameborder": "no",
  7384. "border": "0",
  7385. "scrolling ": "no",
  7386. "style": {
  7387. "cssText": "border:0;width:100%;height:100%"
  7388. },
  7389. "src": "/kityminder-editor/dist/index.html"
  7390. });
  7391. _box.appendChild(_iframe);
  7392. _box.appendChild(_jie);
  7393. _formdiv = new U.UF.UI.form(
  7394. "思维导图",
  7395. _box, { //"/jsmind/example/demo.html"
  7396. "id": "minds" + cid + stage + task + tool,
  7397. "style": {
  7398. "width": "90%",
  7399. "height": "90%",
  7400. "overflow": 'hidden'
  7401. },
  7402. "onresize": function () { }
  7403. }, {
  7404. closecallback: function () { }
  7405. }, {
  7406. "style": {
  7407. "height": "36px"
  7408. }
  7409. }).form; //创建窗体
  7410. _taskbar = {
  7411. "id": str + _formdiv.id,
  7412. "style": {
  7413. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7414. },
  7415. "name": "思维导图",
  7416. "forms": _formdiv,
  7417. "click": function () {
  7418. U.MD.D.I.openApplication(str, obj, info);
  7419. }
  7420. }
  7421. break;
  7422. case "doc":
  7423. aTool = 6;
  7424. _iframe = $$("iframe", {
  7425. "frameborder": "no",
  7426. "border": "0",
  7427. "scrolling ": "no",
  7428. "style": {
  7429. "cssText": "border:0;width:100%;height:100%"
  7430. },
  7431. "src": "/Office/Word/WordEditArea.htm"
  7432. })
  7433. _box.appendChild(_iframe);
  7434. _box.appendChild(_jie);
  7435. _formdiv = new U.UF.UI.form(
  7436. "协同文档",
  7437. _box, {
  7438. "id": "docs" + cid + stage + task + tool,
  7439. "style": {
  7440. "width": "90%",
  7441. "height": "90%",
  7442. "overflow": 'hidden'
  7443. },
  7444. "onresize": function () { }
  7445. }, {
  7446. closecallback: function () { }
  7447. }, {
  7448. "style": {
  7449. "height": "36px"
  7450. }
  7451. }).form; //创建窗体
  7452. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7453. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7454. })
  7455. _taskbar = {
  7456. "id": str + _formdiv.id,
  7457. "style": {
  7458. "backgroundImage": "url(/img/icon/doc.png)"
  7459. },
  7460. "name": "协同文档",
  7461. "forms": _formdiv,
  7462. "click": function () {
  7463. U.MD.D.I.openApplication(str, obj, info);
  7464. }
  7465. }
  7466. break;
  7467. }
  7468. const script1 = document.createElement("script");
  7469. script1.type = "text/javascript";
  7470. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7471. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7472. const script2 = document.createElement("script");
  7473. script2.type = "text/javascript";
  7474. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7475. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7476. const script3 = document.createElement("script");
  7477. script3.type = "text/javascript";
  7478. script3.charset = "UTF-8";
  7479. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7480. const script4 = document.createElement("script");
  7481. script4.type = "text/javascript";
  7482. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7483. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7484. if (_iframe) {
  7485. if (str == 'doc') {
  7486. _iframe = _formdiv.querySelector('iframe')
  7487. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7488. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7489. _iframe.contentWindow.document.body.appendChild(script1);
  7490. _iframe.contentWindow.document.body.appendChild(script2);
  7491. // _iframe.contentWindow.document.body.appendChild(script3);
  7492. _iframe.contentWindow.document.body.appendChild(script4);
  7493. })
  7494. if (onloadListener) {
  7495. _iframe.contentDocument.location.reload()
  7496. } else {
  7497. _iframe.contentDocument.location.reload()
  7498. }
  7499. } else if (str == 'mind') {
  7500. _iframe = _formdiv.querySelector('iframe')
  7501. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7502. _iframe.contentWindow.document.body.appendChild(script1);
  7503. _iframe.contentWindow.document.body.appendChild(script2);
  7504. _iframe.contentWindow.document.body.appendChild(script4);
  7505. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7506. })
  7507. if (onloadListener) {
  7508. _iframe.contentDocument.location.reload()
  7509. } else {
  7510. _iframe.contentDocument.location.reload()
  7511. }
  7512. } else {
  7513. _iframe.onload = () => {
  7514. _iframe.contentWindow.document.body.appendChild(script1);
  7515. _iframe.contentWindow.document.body.appendChild(script2);
  7516. // _iframe.contentWindow.document.body.appendChild(script3);
  7517. _iframe.contentWindow.document.body.appendChild(script4);
  7518. };
  7519. }
  7520. _jie.onclick = async () => {
  7521. let text = ''
  7522. if (aTool == 6) {
  7523. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7524. } else if (aTool == 3) {
  7525. text = await U.MD.D.I.getEditorContent(_iframe);
  7526. }
  7527. _loading.style.display = 'flex'
  7528. console.log(_loading);
  7529. var _ajs = _iframe.contentWindow.document.createElement("script");
  7530. _ajs.type = "text/javascript";
  7531. _ajs.innerHTML =
  7532. // 'console.log(' + _loading + ');\n' +
  7533. 'var _js = document.createElement("script");\n' +
  7534. '_js.type="text/javascript";\n' +
  7535. '_js.charset="UTF-8";\n' +
  7536. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7537. "_js.onload = function(){\n" +
  7538. ' var a = document.getElementsByTagName("img")\n' +
  7539. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7540. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7541. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7542. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7543. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7544. "beforeUpload_shishi(file," +
  7545. "'" +
  7546. _userid +
  7547. "'" +
  7548. ", " +
  7549. "'" +
  7550. _cid +
  7551. "'" +
  7552. ", " +
  7553. "'" +
  7554. _stage +
  7555. "'" +
  7556. ", " +
  7557. "'" +
  7558. _task +
  7559. "'" +
  7560. ", " +
  7561. "'" +
  7562. _tool +
  7563. "'" +
  7564. ", " +
  7565. "'" +
  7566. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7567. "'" +
  7568. ", " +
  7569. "'" +
  7570. aTool +
  7571. "'" +
  7572. ", " +
  7573. "`" +
  7574. text +
  7575. "`" +
  7576. ")\n" +
  7577. " });\n" +
  7578. "}\n" +
  7579. "document.head.appendChild(_js);\n";
  7580. _iframe.contentWindow.document.head.appendChild(_ajs);
  7581. }
  7582. }
  7583. //U.MD.D.I.openClick(str);
  7584. //如果有任务栏信息
  7585. // if (_taskbar) {
  7586. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7587. // }
  7588. }
  7589. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7590. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7591. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7592. _userinfo = US.userInfo, //登录用户信息
  7593. _userid = US.userInfo.userid //登录用户id
  7594. let _iframe;
  7595. let _cid = cid,
  7596. _stage = stage,
  7597. _task = task,
  7598. _tool = tool;
  7599. var _jie = $$("div", {
  7600. "style": {
  7601. "position": "absolute",
  7602. "bottom": "50px",
  7603. "right": "50px",
  7604. "zIndex": "9999",
  7605. "backgroundColor": "#2268bc",
  7606. "color": "#fff",
  7607. "padding": "12px 20px",
  7608. "cursor": "pointer",
  7609. "borderRadius": "4px",
  7610. },
  7611. "innerHTML": "确认并提交"
  7612. })
  7613. let aTool = ''
  7614. let _loading = document.createElement('div')
  7615. _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;"
  7616. // _loading.id = "";
  7617. let _lchild = document.createElement('div')
  7618. let _limg = document.createElement('img')
  7619. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7620. _limg.style = "width: 26px;margin-right: 10px;"
  7621. _lchild.appendChild(_limg)
  7622. let _lspan = document.createElement('span')
  7623. _lspan.innerHTML = "上传中..."
  7624. _lchild.appendChild(_lspan)
  7625. _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%);"
  7626. _loading.appendChild(_lchild)
  7627. var _box = $$('div', {
  7628. "style": {
  7629. "position": "relative",
  7630. "width": "100%",
  7631. "height": "100%",
  7632. },
  7633. })
  7634. _box.appendChild(_loading)
  7635. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7636. switch (str) {
  7637. case "whiteboard":
  7638. aTool = 1;
  7639. _iframe = $$("iframe", {
  7640. "frameborder": "no",
  7641. "border": "0",
  7642. "scrolling ": "no",
  7643. "style": {
  7644. "cssText": "border:0;width:100%;height:100%"
  7645. },
  7646. "src": "https://beta.iwb.cocorobo.cn?cocorobo="+new Date().getTime()
  7647. })
  7648. _box.appendChild(_iframe);
  7649. _box.appendChild(_jie);
  7650. _formdiv = new U.UF.UI.form(
  7651. "电子白板",
  7652. _box, {
  7653. "id": "whiteboards" + cid + stage + task + tool,
  7654. "style": {
  7655. "width": "90%",
  7656. "height": "90%",
  7657. "overflow": 'hidden'
  7658. },
  7659. "onresize": function () { }
  7660. }, {
  7661. closecallback: function () { }
  7662. }, {
  7663. "style": {
  7664. "height": "36px"
  7665. }
  7666. }).form; //创建窗体
  7667. _taskbar = {
  7668. "id": str + _formdiv.id,
  7669. "style": {
  7670. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7671. },
  7672. "name": "电子白板",
  7673. "forms": _formdiv,
  7674. "click": function () {
  7675. U.MD.D.I.openApplication(str, obj, info);
  7676. }
  7677. }
  7678. break;
  7679. case "mind":
  7680. aTool = 3;
  7681. _iframe = $$("iframe", {
  7682. "frameborder": "no",
  7683. "border": "0",
  7684. "scrolling ": "no",
  7685. "style": {
  7686. "cssText": "border:0;width:100%;height:100%"
  7687. },
  7688. "src": "/kityminder-editor/dist/index.html"
  7689. });
  7690. _box.appendChild(_iframe);
  7691. _box.appendChild(_jie);
  7692. _formdiv = new U.UF.UI.form(
  7693. "思维导图",
  7694. _box, { //"/jsmind/example/demo.html"
  7695. "id": "minds" + cid + stage + task + tool,
  7696. "style": {
  7697. "width": "90%",
  7698. "height": "90%",
  7699. "overflow": 'hidden'
  7700. },
  7701. "onresize": function () { }
  7702. }, {
  7703. closecallback: function () { }
  7704. }, {
  7705. "style": {
  7706. "height": "36px"
  7707. }
  7708. }).form; //创建窗体
  7709. _taskbar = {
  7710. "id": str + _formdiv.id,
  7711. "style": {
  7712. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7713. },
  7714. "name": "思维导图",
  7715. "forms": _formdiv,
  7716. "click": function () {
  7717. U.MD.D.I.openApplication(str, obj, info);
  7718. }
  7719. }
  7720. break;
  7721. case "doc":
  7722. aTool = 6;
  7723. _iframe = $$("iframe", {
  7724. "frameborder": "no",
  7725. "border": "0",
  7726. "scrolling ": "no",
  7727. "style": {
  7728. "cssText": "border:0;width:100%;height:100%"
  7729. },
  7730. "src": "/Office/Word/WordEditArea.htm"
  7731. })
  7732. _box.appendChild(_iframe);
  7733. _box.appendChild(_jie);
  7734. _formdiv = new U.UF.UI.form(
  7735. "协同文档",
  7736. _box, {
  7737. "id": "docs" + cid + stage + task + tool,
  7738. "style": {
  7739. "width": "90%",
  7740. "height": "90%",
  7741. "overflow": 'hidden'
  7742. },
  7743. "onresize": function () { }
  7744. }, {
  7745. closecallback: function () { }
  7746. }, {
  7747. "style": {
  7748. "height": "36px"
  7749. }
  7750. }).form; //创建窗体
  7751. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7752. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7753. })
  7754. _taskbar = {
  7755. "id": str + _formdiv.id,
  7756. "style": {
  7757. "backgroundImage": "url(/img/icon/doc.png)"
  7758. },
  7759. "name": "协同文档",
  7760. "forms": _formdiv,
  7761. "click": function () {
  7762. U.MD.D.I.openApplication(str, obj, info);
  7763. }
  7764. }
  7765. break;
  7766. }
  7767. const script1 = document.createElement("script");
  7768. script1.type = "text/javascript";
  7769. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7770. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7771. const script2 = document.createElement("script");
  7772. script2.type = "text/javascript";
  7773. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7774. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7775. const script3 = document.createElement("script");
  7776. script3.type = "text/javascript";
  7777. script3.charset = "UTF-8";
  7778. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7779. const script4 = document.createElement("script");
  7780. script4.type = "text/javascript";
  7781. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7782. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7783. if (_iframe) {
  7784. if (str == 'doc') {
  7785. _iframe = _formdiv.querySelector('iframe')
  7786. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7787. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7788. _iframe.contentWindow.document.body.appendChild(script1);
  7789. _iframe.contentWindow.document.body.appendChild(script2);
  7790. // _iframe.contentWindow.document.body.appendChild(script3);
  7791. _iframe.contentWindow.document.body.appendChild(script4);
  7792. })
  7793. if (onloadListener) {
  7794. _iframe.contentDocument.location.reload()
  7795. } else {
  7796. _iframe.contentDocument.location.reload()
  7797. }
  7798. } else if (str == 'mind') {
  7799. _iframe = _formdiv.querySelector('iframe')
  7800. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7801. _iframe.contentWindow.document.body.appendChild(script1);
  7802. _iframe.contentWindow.document.body.appendChild(script2);
  7803. _iframe.contentWindow.document.body.appendChild(script4);
  7804. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7805. })
  7806. if (onloadListener) {
  7807. _iframe.contentDocument.location.reload()
  7808. } else {
  7809. _iframe.contentDocument.location.reload()
  7810. }
  7811. } else {
  7812. _iframe.onload = () => {
  7813. _iframe.contentWindow.document.body.appendChild(script1);
  7814. _iframe.contentWindow.document.body.appendChild(script2);
  7815. // _iframe.contentWindow.document.body.appendChild(script3);
  7816. _iframe.contentWindow.document.body.appendChild(script4);
  7817. };
  7818. }
  7819. _jie.onclick = async () => {
  7820. let text = ''
  7821. if (aTool == 6) {
  7822. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7823. } else if (aTool == 3) {
  7824. text = await U.MD.D.I.getEditorContent(_iframe);
  7825. }
  7826. _loading.style.display = 'flex'
  7827. console.log(_loading);
  7828. var _ajs = _iframe.contentWindow.document.createElement("script");
  7829. _ajs.type = "text/javascript";
  7830. _ajs.innerHTML =
  7831. // 'console.log(' + _loading + ');\n' +
  7832. 'var _js = document.createElement("script");\n' +
  7833. '_js.type="text/javascript";\n' +
  7834. '_js.charset="UTF-8";\n' +
  7835. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7836. "_js.onload = function(){\n" +
  7837. ' var a = document.getElementsByTagName("img")\n' +
  7838. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7839. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7840. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7841. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7842. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7843. "beforeUpload_shishi(file," +
  7844. "'" +
  7845. _userid +
  7846. "'" +
  7847. ", " +
  7848. "'" +
  7849. _cid +
  7850. "'" +
  7851. ", " +
  7852. "'" +
  7853. _stage +
  7854. "'" +
  7855. ", " +
  7856. "'" +
  7857. _task +
  7858. "'" +
  7859. ", " +
  7860. "'" +
  7861. _tool +
  7862. "'" +
  7863. ", " +
  7864. "'" +
  7865. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7866. "'" +
  7867. ", " +
  7868. "'" +
  7869. aTool +
  7870. "'" +
  7871. ", " +
  7872. "`" +
  7873. text +
  7874. "`" +
  7875. ")\n" +
  7876. " });\n" +
  7877. "}\n" +
  7878. "document.head.appendChild(_js);\n";
  7879. _iframe.contentWindow.document.head.appendChild(_ajs);
  7880. }
  7881. }
  7882. //U.MD.D.I.openClick(str);
  7883. //如果有任务栏信息
  7884. // if (_taskbar) {
  7885. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7886. // }
  7887. }
  7888. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7889. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7890. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7891. _userinfo = US.userInfo, //登录用户信息
  7892. _userid = US.userInfo.userid //登录用户id
  7893. let _iframe;
  7894. let _cid = cid,
  7895. _stage = stage,
  7896. _task = task,
  7897. _tool = tool;
  7898. var _jie = $$("div", {
  7899. "style": {
  7900. "position": "absolute",
  7901. "bottom": "50px",
  7902. "right": "50px",
  7903. "zIndex": "9999",
  7904. "backgroundColor": "#2268bc",
  7905. "color": "#fff",
  7906. "padding": "12px 20px",
  7907. "cursor": "pointer",
  7908. "borderRadius": "4px",
  7909. },
  7910. "innerHTML": "上传模板"
  7911. })
  7912. let aTool = ''
  7913. let _loading = document.createElement('div')
  7914. _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;"
  7915. // _loading.id = "";
  7916. let _lchild = document.createElement('div')
  7917. let _limg = document.createElement('img')
  7918. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7919. _limg.style = "width: 26px;margin-right: 10px;"
  7920. _lchild.appendChild(_limg)
  7921. let _lspan = document.createElement('span')
  7922. _lspan.innerHTML = "上传中..."
  7923. _lchild.appendChild(_lspan)
  7924. _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%);"
  7925. _loading.appendChild(_lchild)
  7926. var _box = $$('div', {
  7927. "style": {
  7928. "position": "relative",
  7929. "width": "100%",
  7930. "height": "100%",
  7931. },
  7932. })
  7933. _box.appendChild(_loading)
  7934. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7935. switch (str) {
  7936. case "whiteboard":
  7937. aTool = 1;
  7938. _iframe = $$("iframe", {
  7939. "frameborder": "no",
  7940. "border": "0",
  7941. "scrolling ": "no",
  7942. "style": {
  7943. "cssText": "border:0;width:100%;height:100%"
  7944. },
  7945. "src": "https://beta.iwb.cocorobo.cn?cocorobo="+new Date().getTime()
  7946. })
  7947. _box.appendChild(_iframe);
  7948. _box.appendChild(_jie);
  7949. _formdiv = new U.UF.UI.form(
  7950. "电子白板",
  7951. _box, {
  7952. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7953. "style": {
  7954. "width": "90%",
  7955. "height": "90%",
  7956. "overflow": 'hidden'
  7957. },
  7958. "onresize": function () { }
  7959. }, {
  7960. closecallback: function () { }
  7961. }, {
  7962. "style": {
  7963. "height": "36px"
  7964. }
  7965. }).form; //创建窗体
  7966. _taskbar = {
  7967. "id": str + _formdiv.id,
  7968. "style": {
  7969. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7970. },
  7971. "name": "电子白板",
  7972. "forms": _formdiv,
  7973. "click": function () {
  7974. U.MD.D.I.openApplication(str, obj, info);
  7975. }
  7976. }
  7977. break;
  7978. case "mind":
  7979. aTool = 3;
  7980. _iframe = $$("iframe", {
  7981. "frameborder": "no",
  7982. "border": "0",
  7983. "scrolling ": "no",
  7984. "style": {
  7985. "cssText": "border:0;width:100%;height:100%"
  7986. },
  7987. "src": "/kityminder-editor/dist/index.html"
  7988. });
  7989. _box.appendChild(_iframe);
  7990. _box.appendChild(_jie);
  7991. _formdiv = new U.UF.UI.form(
  7992. "思维导图",
  7993. _box, { //"/jsmind/example/demo.html"
  7994. "id": "minds_Yu" + cid + stage + task + tool,
  7995. "style": {
  7996. "width": "90%",
  7997. "height": "90%",
  7998. "overflow": 'hidden'
  7999. },
  8000. "onresize": function () { }
  8001. }, {
  8002. closecallback: function () { }
  8003. }, {
  8004. "style": {
  8005. "height": "36px"
  8006. }
  8007. }).form; //创建窗体
  8008. _taskbar = {
  8009. "id": str + _formdiv.id,
  8010. "style": {
  8011. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8012. },
  8013. "name": "思维导图",
  8014. "forms": _formdiv,
  8015. "click": function () {
  8016. U.MD.D.I.openApplication(str, obj, info);
  8017. }
  8018. }
  8019. break;
  8020. case "doc":
  8021. aTool = 6;
  8022. _iframe = $$("iframe", {
  8023. "frameborder": "no",
  8024. "border": "0",
  8025. "scrolling ": "no",
  8026. "style": {
  8027. "cssText": "border:0;width:100%;height:100%"
  8028. },
  8029. "src": "/Office/Word/WordEditArea.htm"
  8030. })
  8031. _box.appendChild(_iframe);
  8032. _box.appendChild(_jie);
  8033. _formdiv = new U.UF.UI.form(
  8034. "协同文档",
  8035. _box, {
  8036. "id": "docs_Yu" + cid + stage + task + tool,
  8037. "style": {
  8038. "width": "90%",
  8039. "height": "90%",
  8040. "overflow": 'hidden'
  8041. },
  8042. "onresize": function () { }
  8043. }, {
  8044. closecallback: function () { }
  8045. }, {
  8046. "style": {
  8047. "height": "36px"
  8048. }
  8049. }).form; //创建窗体
  8050. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8051. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8052. })
  8053. _taskbar = {
  8054. "id": str + _formdiv.id,
  8055. "style": {
  8056. "backgroundImage": "url(/img/icon/doc.png)"
  8057. },
  8058. "name": "协同文档",
  8059. "forms": _formdiv,
  8060. "click": function () {
  8061. U.MD.D.I.openApplication(str, obj, info);
  8062. }
  8063. }
  8064. break;
  8065. case "CocoPi":
  8066. aTool = 57;
  8067. _iframe = $$("iframe", {
  8068. "allowpaymentrequest": "allowpaymentrequest",
  8069. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8070. "webkitallowfullscreen": "",
  8071. "mozallowfullscreen": "",
  8072. "frameborder": "no",
  8073. "border": "0",
  8074. "scrolling ": "no",
  8075. "style": {
  8076. "cssText": "border:0;width:100%;height:100%"
  8077. },
  8078. "src": "https://pi.cocorobo.cn/"
  8079. })
  8080. _box.appendChild(_iframe);
  8081. _box.appendChild(_jie);
  8082. _formdiv = new U.UF.UI.form(
  8083. "CocoPi",
  8084. _box, {
  8085. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8086. "style": {
  8087. "width": "90%",
  8088. "height": "90%",
  8089. "overflow": 'hidden'
  8090. },
  8091. "onresize": function () { }
  8092. }, {
  8093. closecallback: function () { }
  8094. }, {
  8095. "style": {
  8096. "height": "36px"
  8097. }
  8098. }).form; //创建窗体
  8099. _taskbar = {
  8100. "id": str + _formdiv.id,
  8101. "style": {
  8102. "backgroundImage": "url(/img/icon/cocopi.png)"
  8103. },
  8104. "name": "CocoPi",
  8105. "forms": _formdiv,
  8106. "click": function () {
  8107. U.MD.D.I.openApplication(str, obj, info);
  8108. }
  8109. }
  8110. break;
  8111. }
  8112. if (_iframe) {
  8113. if (str == 'doc') {
  8114. _iframe = _formdiv.querySelector('iframe')
  8115. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8116. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8117. })
  8118. if (onloadListener) {
  8119. _iframe.contentDocument.location.reload()
  8120. } else {
  8121. _iframe.contentDocument.location.reload()
  8122. }
  8123. } else if (str == 'mind') {
  8124. _iframe = _formdiv.querySelector('iframe')
  8125. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8126. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8127. })
  8128. if (onloadListener) {
  8129. _iframe.contentDocument.location.reload()
  8130. } else {
  8131. _iframe.contentDocument.location.reload()
  8132. }
  8133. } else if (str == 'whiteboard') {
  8134. _iframe = _formdiv.querySelector('iframe')
  8135. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8136. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8137. })
  8138. if (onloadListener) {
  8139. try {
  8140. _iframe.src += ""
  8141. _iframe.contentWindow.document.location.reload()
  8142. } catch (error) {
  8143. }
  8144. } else {
  8145. _iframe.contentDocument.location.reload()
  8146. }
  8147. } else if (str == 'CocoPi') {
  8148. _iframe = _formdiv.querySelector('iframe')
  8149. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8150. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8151. })
  8152. if (onloadListener) {
  8153. _iframe.contentDocument.location.reload()
  8154. } else {
  8155. _iframe.contentDocument.location.reload()
  8156. }
  8157. } else {
  8158. _iframe.onload = () => { };
  8159. }
  8160. _jie.onclick = async () => {
  8161. let text = ''
  8162. let type = '2'
  8163. if (aTool == 1) {
  8164. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8165. type = '3'
  8166. } else if (aTool == 6) {
  8167. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8168. type = '1'
  8169. } else if (aTool == 3) {
  8170. text = await U.MD.D.I.getEditorContent(_iframe);
  8171. type = '2'
  8172. } else if (aTool == 57) {
  8173. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8174. type = '4'
  8175. }
  8176. _loading.style.display = 'flex'
  8177. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8178. }
  8179. }
  8180. //U.MD.D.I.openClick(str);
  8181. //如果有任务栏信息
  8182. // if (_taskbar) {
  8183. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8184. // }
  8185. }
  8186. U.MD.D.I.getContents = 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. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8201. }
  8202. }
  8203. }
  8204. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8205. xmlhttp.send();
  8206. }
  8207. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8208. var xmlhttp;
  8209. var Mac, Sn, DeviceId
  8210. if (window.XMLHttpRequest) {
  8211. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8212. xmlhttp = new XMLHttpRequest();
  8213. } else {
  8214. // IE6, IE5 浏览器执行代码
  8215. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8216. }
  8217. xmlhttp.onreadystatechange = function () {
  8218. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8219. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8220. // resolve(res.value[0][0].text);
  8221. if (type == '2') {
  8222. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8223. } else if (type == '3') {
  8224. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8225. } else if (type == '4') {
  8226. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8227. }
  8228. } else {
  8229. if (type == '2') {
  8230. iframe.contentWindow.editor.minder.importData('json', '')
  8231. } else if (type == '3') {
  8232. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8233. } else if (type == '4') {
  8234. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8235. }
  8236. }
  8237. }
  8238. }
  8239. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8240. xmlhttp.send();
  8241. }
  8242. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8243. var xmlhttp;
  8244. var Mac, Sn, DeviceId
  8245. if (window.XMLHttpRequest) {
  8246. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8247. xmlhttp = new XMLHttpRequest();
  8248. } else {
  8249. // IE6, IE5 浏览器执行代码
  8250. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8251. }
  8252. xmlhttp.onreadystatechange = function () {
  8253. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8254. if (xmlhttp.response) {
  8255. // resolve(res.value[0][0].text);
  8256. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8257. // $(fileInput).val('');
  8258. // });
  8259. span.innerHTML = '上传成功'
  8260. setTimeout(() => {
  8261. loading.style.display = 'none'
  8262. }, 1000);
  8263. }
  8264. }
  8265. }
  8266. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8267. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8268. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8269. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8270. // 设置请求头,表示请求体的编码格式
  8271. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8272. // 设置请求体,使用url-encoded格式的数据
  8273. }
  8274. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8275. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8276. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8277. _userinfo = US.userInfo, //登录用户信息
  8278. _userid = US.userInfo.userid //登录用户id
  8279. let _iframe;
  8280. let _cid = cid,
  8281. _stage = stage,
  8282. _task = task,
  8283. _tool = tool;
  8284. var _jie = $$("div", {
  8285. "style": {
  8286. "position": "absolute",
  8287. "bottom": "50px",
  8288. "right": "50px",
  8289. "zIndex": "9999",
  8290. "backgroundColor": "#2268bc",
  8291. "color": "#fff",
  8292. "padding": "12px 20px",
  8293. "cursor": "pointer",
  8294. "borderRadius": "4px",
  8295. },
  8296. "innerHTML": "提交作业"
  8297. })
  8298. let aTool = ''
  8299. let _loading = document.createElement('div')
  8300. _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;"
  8301. // _loading.id = "";
  8302. let _lchild = document.createElement('div')
  8303. let _limg = document.createElement('img')
  8304. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8305. _limg.style = "width: 26px;margin-right: 10px;"
  8306. _lchild.appendChild(_limg)
  8307. let _lspan = document.createElement('span')
  8308. _lspan.innerHTML = "上传中..."
  8309. _lchild.appendChild(_lspan)
  8310. _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%);"
  8311. _loading.appendChild(_lchild)
  8312. var _box = $$('div', {
  8313. "style": {
  8314. "position": "relative",
  8315. "width": "100%",
  8316. "height": "100%",
  8317. },
  8318. })
  8319. _box.appendChild(_loading)
  8320. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8321. switch (str) {
  8322. case "CocoPi":
  8323. aTool = 57;
  8324. _iframe = $$("iframe", {
  8325. "allowpaymentrequest": "allowpaymentrequest",
  8326. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8327. "webkitallowfullscreen": "",
  8328. "mozallowfullscreen": "",
  8329. "frameborder": "no",
  8330. "border": "0",
  8331. "scrolling ": "no",
  8332. "style": {
  8333. "cssText": "border:0;width:100%;height:100%"
  8334. },
  8335. "src": "https://pi.cocorobo.cn/"
  8336. })
  8337. _box.appendChild(_iframe);
  8338. _box.appendChild(_jie);
  8339. _formdiv = new U.UF.UI.form(
  8340. "CocoPi",
  8341. _box, {
  8342. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8343. "style": {
  8344. "width": "90%",
  8345. "height": "90%",
  8346. "overflow": 'hidden'
  8347. },
  8348. "onresize": function () { }
  8349. }, {
  8350. closecallback: function () { }
  8351. }, {
  8352. "style": {
  8353. "height": "36px"
  8354. }
  8355. }).form; //创建窗体
  8356. _taskbar = {
  8357. "id": str + _formdiv.id,
  8358. "style": {
  8359. "backgroundImage": "url(/img/icon/cocopi.png)"
  8360. },
  8361. "name": "CocoPi",
  8362. "forms": _formdiv,
  8363. "click": function () {
  8364. U.MD.D.I.openApplication(str, obj, info);
  8365. }
  8366. }
  8367. break;
  8368. }
  8369. if (_iframe) {
  8370. if (str == 'CocoPi') {
  8371. _iframe = _formdiv.querySelector('iframe')
  8372. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8373. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8374. })
  8375. if (onloadListener) {
  8376. _iframe.contentDocument.location.reload()
  8377. } else {
  8378. _iframe.contentDocument.location.reload()
  8379. }
  8380. }
  8381. _jie.onclick = async () => {
  8382. let text = ''
  8383. if (aTool == 57) {
  8384. text = _iframe.contentWindow.getLoadXmlStr()
  8385. }
  8386. _loading.style.display = 'flex'
  8387. console.log(_loading);
  8388. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8389. _loading.style.display = 'none'
  8390. let _div = document.createElement('div')
  8391. _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;"
  8392. let _inner = document.createElement('div')
  8393. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8394. _inner.innerHTML = "上传成功"
  8395. _div.appendChild(_inner)
  8396. _iframe.contentWindow.window.document.body.appendChild(_div)
  8397. _div.onclick = () => {
  8398. _iframe.contentWindow.window.document.body.removeChild(_div)
  8399. }
  8400. setTimeout(() => {
  8401. _iframe.contentWindow.window.document.body.removeChild(_div)
  8402. }, 1000);
  8403. }, [], { "type": "POST", "withCredentials": true });
  8404. }
  8405. }
  8406. }
  8407. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8408. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8409. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8410. _userid = student.userid, //登录用户id
  8411. _username = student.student //用户名字
  8412. let _iframe;
  8413. let _cid = cid,
  8414. _stage = stage,
  8415. _task = task,
  8416. _tool = tool;
  8417. var _jie = $$("div", {
  8418. "style": {
  8419. "position": "absolute",
  8420. "bottom": "50px",
  8421. "right": "50px",
  8422. "zIndex": "9999",
  8423. "backgroundColor": "#2268bc",
  8424. "color": "#fff",
  8425. "padding": "12px 20px",
  8426. "cursor": "pointer",
  8427. "borderRadius": "4px",
  8428. },
  8429. "innerHTML": "提交作业"
  8430. })
  8431. let aTool = ''
  8432. let _loading = document.createElement('div')
  8433. _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;"
  8434. // _loading.id = "";
  8435. let _lchild = document.createElement('div')
  8436. let _limg = document.createElement('img')
  8437. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8438. _limg.style = "width: 26px;margin-right: 10px;"
  8439. _lchild.appendChild(_limg)
  8440. let _lspan = document.createElement('span')
  8441. _lspan.innerHTML = "上传中..."
  8442. _lchild.appendChild(_lspan)
  8443. _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%);"
  8444. _loading.appendChild(_lchild)
  8445. var _box = $$('div', {
  8446. "style": {
  8447. "position": "relative",
  8448. "width": "100%",
  8449. "height": "100%",
  8450. },
  8451. })
  8452. _box.appendChild(_loading)
  8453. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8454. switch (str) {
  8455. case "CocoPi":
  8456. aTool = 57;
  8457. _iframe = $$("iframe", {
  8458. "allowpaymentrequest": "allowpaymentrequest",
  8459. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8460. "webkitallowfullscreen": "",
  8461. "mozallowfullscreen": "",
  8462. "frameborder": "no",
  8463. "border": "0",
  8464. "scrolling ": "no",
  8465. "style": {
  8466. "cssText": "border:0;width:100%;height:100%"
  8467. },
  8468. "src": "https://pi.cocorobo.cn/"
  8469. })
  8470. _box.appendChild(_iframe);
  8471. _box.appendChild(_jie);
  8472. _formdiv = new U.UF.UI.form(
  8473. "CocoPi-" + _username,
  8474. _box, {
  8475. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8476. "style": {
  8477. "width": "90%",
  8478. "height": "90%",
  8479. "overflow": 'hidden'
  8480. },
  8481. "onresize": function () { }
  8482. }, {
  8483. closecallback: function () { }
  8484. }, {
  8485. "style": {
  8486. "height": "36px"
  8487. }
  8488. }).form; //创建窗体
  8489. _taskbar = {
  8490. "id": str + _formdiv.id,
  8491. "style": {
  8492. "backgroundImage": "url(/img/icon/cocopi.png)"
  8493. },
  8494. "name": "CocoPi",
  8495. "forms": _formdiv,
  8496. "click": function () {
  8497. U.MD.D.I.openApplication(str, obj, info);
  8498. }
  8499. }
  8500. break;
  8501. }
  8502. if (_iframe) {
  8503. if (str == 'CocoPi') {
  8504. _iframe = _formdiv.querySelector('iframe')
  8505. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8506. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8507. })
  8508. if (onloadListener) {
  8509. _iframe.contentDocument.location.reload()
  8510. } else {
  8511. _iframe.contentDocument.location.reload()
  8512. }
  8513. }
  8514. _jie.onclick = async () => {
  8515. let text = ''
  8516. if (aTool == 57) {
  8517. text = _iframe.contentWindow.getLoadXmlStr()
  8518. }
  8519. _loading.style.display = 'flex'
  8520. console.log(_loading);
  8521. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8522. _loading.style.display = 'none'
  8523. let _div = document.createElement('div')
  8524. _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;"
  8525. let _inner = document.createElement('div')
  8526. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8527. _inner.innerHTML = "上传成功"
  8528. _div.appendChild(_inner)
  8529. _iframe.contentWindow.window.document.body.appendChild(_div)
  8530. _div.onclick = () => {
  8531. _iframe.contentWindow.window.document.body.removeChild(_div)
  8532. }
  8533. setTimeout(() => {
  8534. _iframe.contentWindow.window.document.body.removeChild(_div)
  8535. }, 1000);
  8536. }, [], { "type": "POST", "withCredentials": true });
  8537. }
  8538. }
  8539. }
  8540. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8541. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8542. if (res.value[0].length > 0) {
  8543. if (atool == 57) {
  8544. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8545. }
  8546. } else {
  8547. if (atool == 57) {
  8548. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8549. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8550. }
  8551. }
  8552. }, [], { "type": "POST", "withCredentials": true });
  8553. }