DeskTop.js 533 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795
  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. ];
  729. //hk
  730. U.MD.D.I.hkaceStudentDeskIcon = [
  731. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  732. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  733. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  734. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  735. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  737. ];
  738. //香海正覺蓮社佛教正覺中學
  739. U.MD.D.I.hkZJLSteacherDeskIcon = [
  740. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  741. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  743. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  744. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  745. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  746. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  747. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  748. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  749. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  750. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  751. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  752. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  753. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  754. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  755. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  756. ];
  757. //香海正覺蓮社佛教正覺中學
  758. U.MD.D.I.hkZJLSStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  763. ];
  764. //云海
  765. U.MD.D.I.yunhaiTeacherDeskIcon = [
  766. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  767. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  768. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  769. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  770. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  771. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  772. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  773. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  774. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  775. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  776. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  777. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  778. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  779. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  780. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  782. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  783. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  784. ];
  785. //福田
  786. U.MD.D.I.heyuanTeacherDeskIcon = [
  787. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  788. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  789. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  790. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  791. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  792. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  793. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  794. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  795. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  796. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  797. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  798. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  799. ];
  800. //福田
  801. U.MD.D.I.heyuanAdminDeskIcon = [
  802. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  803. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  804. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  805. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  806. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  807. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  808. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  809. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  810. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  811. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  812. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  813. ];
  814. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  815. U.MD.D.I.szherTeacherDeskIcon = [
  816. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  817. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  818. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  819. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  820. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  821. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  822. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  823. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  824. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  827. ];
  828. //dsei
  829. U.MD.D.I.dseiTeacherDeskIcon = [
  830. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  831. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  832. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  833. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  834. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  835. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  836. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  837. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  838. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  839. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  840. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  841. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  842. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  843. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  844. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  845. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  846. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  847. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  848. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  849. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  850. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  851. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  852. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  853. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  854. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  855. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  856. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  857. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  858. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  859. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  860. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  861. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  862. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  863. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  864. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  865. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  866. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  867. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  868. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  869. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  870. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  871. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  872. ];
  873. //dsei
  874. U.MD.D.I.dseiAdminDeskIcon = [
  875. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  876. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  877. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  878. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  879. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  880. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  881. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  882. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  883. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  884. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  885. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  886. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  887. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  888. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  889. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  890. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  891. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  892. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  893. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  894. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  895. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  896. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  897. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  898. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  899. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  900. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  901. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  902. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  903. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  904. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  905. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  906. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  907. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  908. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  909. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  910. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  911. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  912. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  913. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  914. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  915. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  916. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  917. ];
  918. //dsei
  919. U.MD.D.I.dseiStudentDeskIcon = [
  920. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  921. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  922. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  923. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  926. ];
  927. //未来教育基地
  928. U.MD.D.I.szjkyTeacherDeskIcon = [
  929. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  930. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  931. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  932. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  933. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  934. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  935. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  936. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  937. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  938. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  939. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  940. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  941. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  944. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  945. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  946. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  947. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  948. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  950. ];
  951. //未来教育基地
  952. U.MD.D.I.szjkyAdminDeskIcon = [
  953. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  954. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  955. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  956. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  957. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  958. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  959. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  960. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  961. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  962. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  963. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  964. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  965. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  966. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  967. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  968. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  969. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  970. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  971. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  972. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  973. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  974. ];
  975. //未来教育基地
  976. U.MD.D.I.szjkyStudentDeskIcon = [
  977. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  978. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  979. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  980. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  981. ];
  982. //成华教育局
  983. U.MD.D.I.chjyjTeacherDeskIcon = [
  984. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  985. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  989. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  990. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  991. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  992. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  993. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  994. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  997. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  998. ];
  999. //成华教育局chjyj
  1000. U.MD.D.I.chjyjAdminDeskIcon = [
  1001. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1002. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1003. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1004. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1005. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1006. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1007. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1008. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1009. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1010. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1011. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1012. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1014. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1015. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1016. ];
  1017. //成华教育局chjyj
  1018. U.MD.D.I.chjyjStudentDeskIcon = [
  1019. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1020. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1021. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1023. ];
  1024. //tpc
  1025. U.MD.D.I.tpcStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcTeacherDeskIcon = [
  1033. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1034. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1035. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1036. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcAdminDeskIcon = [
  1043. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //THU-IOE
  1052. U.MD.D.I.thuioeTeacherDeskIcon = [
  1053. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1056. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1057. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1058. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1059. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1060. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1061. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1062. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1063. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1064. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1065. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1066. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1067. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1068. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1069. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1070. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1071. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1072. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1073. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1074. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1075. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1076. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1077. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1078. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1079. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1080. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1081. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1082. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1083. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1084. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1085. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1090. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //THU-IOE
  1094. U.MD.D.I.thuioeStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //jccssyl
  1101. U.MD.D.I.jccssylTeacherDeskIcon = [
  1102. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1103. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1104. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1105. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1106. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1109. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1110. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1111. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1112. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1113. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1114. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1115. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1117. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1118. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1119. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1120. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1121. ];
  1122. //jccssyl
  1123. U.MD.D.I.jccssylStudentDeskIcon = [
  1124. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1125. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1126. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1127. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. ];
  1129. //cale
  1130. U.MD.D.I.caleTeacherDeskIcon = [
  1131. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1132. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1133. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1134. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1138. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1139. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1140. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1141. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1142. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1143. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1144. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1146. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1147. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1148. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1149. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1150. ];
  1151. //cale
  1152. U.MD.D.I.caleStudentDeskIcon = [
  1153. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1154. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1155. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. ];
  1158. //lqwmsgzs
  1159. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1160. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1161. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1162. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1163. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1167. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1168. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1169. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1170. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1171. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1172. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1173. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1174. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1175. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1176. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1177. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1178. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1179. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1180. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1181. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1182. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1183. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1184. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1185. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1186. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1187. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1188. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1189. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1190. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1191. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1192. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1193. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1194. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //lqwmsgzs
  1199. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1200. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1201. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1202. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //盐田区幼儿园
  1206. U.MD.D.I.ytyTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1210. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1213. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1216. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1217. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1218. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1219. ];
  1220. //盐田区幼儿园
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //#region 桌面初始化a
  1227. /**
  1228. * 初始化桌面的起始函数
  1229. *
  1230. */
  1231. U.MD.D.I.init = function () {
  1232. if ($("#U_MD_D_K")[0]) {
  1233. //初始化桌面图标
  1234. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1235. // var clickUrl = ':12588/requestIp.php';
  1236. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1237. // U.MD.D.I.Ip = data;
  1238. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1239. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1240. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1241. // })
  1242. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1243. // })
  1244. }
  1245. }
  1246. /**
  1247. * 模式切换
  1248. *
  1249. */
  1250. U.MD.D.I.ModeCheck = function (type) {
  1251. if (US.Config.type == type) {
  1252. return
  1253. }
  1254. US.Config.type = type
  1255. $('.U_PBL_Check .active')[0].className = ''
  1256. if (type == 1) {
  1257. $('.U_PBL_Check div')[0].className = 'active'
  1258. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1259. } else {
  1260. $('.U_PBL_Check div')[1].className = 'active'
  1261. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1262. }
  1263. //初始化桌面图标
  1264. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1265. if (type == 2) {
  1266. U.MD.D.I.openApplication("project")
  1267. }
  1268. }
  1269. /**
  1270. * 隐藏任务栏
  1271. *
  1272. * @param {element} 桌面元素
  1273. */
  1274. U.MD.D.I.hiddenTaskbar = function (el) {
  1275. //任务栏位置变小
  1276. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1277. //桌面的位置变大
  1278. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1279. }
  1280. /**
  1281. * 隐藏任务栏
  1282. *
  1283. * @param {element} 桌面元素
  1284. */
  1285. U.MD.D.I.hiddenTaskbarout = function (el) {
  1286. //任务栏位置变小
  1287. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1288. //任务栏位置变化
  1289. U.selectEl(el).css({ "bottom": "-60px" });
  1290. //桌面的位置变大
  1291. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1292. }
  1293. }
  1294. /**
  1295. * 初始化打印桌面图标
  1296. *
  1297. * @param {element} 桌面元素
  1298. */
  1299. U.MD.D.I.initDesktopIcons = function (el, type) {
  1300. var i, //用于循环
  1301. _content, //桌面图标元素
  1302. _iconcontent, //桌面图标元素
  1303. _frag = $$("frag"), //定义一个碎片元素
  1304. _type = US.userInfo.type,
  1305. _org = US.userInfo.org,
  1306. _oid = US.userInfo.organizeid,
  1307. _role = US.userInfo.role,
  1308. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1309. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1310. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1311. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1312. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1313. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1314. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1315. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1316. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1317. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1318. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1319. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1320. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1321. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1322. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1323. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1324. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1325. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1326. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1327. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1328. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1329. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1330. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1331. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1332. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1333. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1334. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1335. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1336. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1337. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1338. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1339. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1340. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1341. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1342. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1343. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1344. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1345. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1346. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1347. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1348. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1349. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1350. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1351. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1352. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1353. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1354. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1355. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1356. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1357. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1358. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1359. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1360. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1361. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1362. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1363. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1364. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1365. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1366. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1367. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1368. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1369. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1370. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1371. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1372. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1373. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1374. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1375. 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'];
  1376. 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'];
  1377. //清楚桌面图标
  1378. el.innerHTML = "";
  1379. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1380. _teacherDesktopIconInfo.push(
  1381. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1382. { "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)" } },
  1383. )
  1384. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1385. }
  1386. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1387. _teacherDesktopIconInfo.push(
  1388. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1389. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1390. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1391. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1393. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1394. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1395. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1396. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1397. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1398. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1401. { "Name": "课程观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1402. )
  1403. }
  1404. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1405. // _teacherDesktopIconInfo.push(
  1406. // )
  1407. // }
  1408. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1409. _teacherDesktopIconInfo.push(
  1410. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. )
  1413. }
  1414. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1415. _teacherDesktopIconInfo.push(
  1416. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1417. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1418. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1419. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1420. )
  1421. _studentDesktopIconInfo.push(
  1422. )
  1423. }
  1424. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1425. _teacherDesktopIconInfo.push(
  1426. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1427. )
  1428. _studentDesktopIconInfo.push(
  1429. )
  1430. }
  1431. //麒麟二中 和 民新小学
  1432. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1433. _teacherDesktopIconInfo.push(
  1434. )
  1435. }
  1436. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1437. _teacherDesktopIconInfo.push(
  1438. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1439. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1440. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1441. )
  1442. }
  1443. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1444. _teacherDesktopIconInfo.push(
  1445. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1446. )
  1447. }
  1448. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1449. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1450. _teacherDesktopIconInfo.push(
  1451. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1452. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1453. )
  1454. }
  1455. //麒麟二中
  1456. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1457. _studentDesktopIconInfo.push(
  1458. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1459. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1460. )
  1461. }
  1462. //万科双语
  1463. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1464. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1465. if (el.Name == '项目管理') {
  1466. el.Name = 'PBL项目'
  1467. }
  1468. return el
  1469. })
  1470. _studentDesktopIconInfo3.push(
  1471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1472. )
  1473. }
  1474. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1475. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1476. return el.Name != '魔盒识字' && el.Name != '24点'
  1477. })
  1478. }
  1479. 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) {
  1480. _studentDesktopIconInfo.push(
  1481. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1482. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1483. )
  1484. }
  1485. //循环创建桌面图标
  1486. if (type == 1) {
  1487. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1488. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1489. _content = $$("div", {
  1490. className: "U_MD_D_KO",
  1491. "onmousedown": U.UF.C.closure(function (obj) {
  1492. //防止拖动图标即打开了桌面应用
  1493. U.MD.D.click(this, obj);
  1494. }, [_studentDesktopIconInfo[i]]),
  1495. "onclick": U.UF.C.closure(function (obj) {
  1496. //防止拖动图标即打开了桌面应用
  1497. U.MD.D.click(this, obj);
  1498. }, [_studentDesktopIconInfo[i]])
  1499. }, _frag); //
  1500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1503. }
  1504. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1505. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1506. _content = $$("div", {
  1507. className: "U_MD_D_KO",
  1508. "onmousedown": U.UF.C.closure(function (obj) {
  1509. //防止拖动图标即打开了桌面应用
  1510. U.MD.D.click(this, obj);
  1511. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1512. "onclick": U.UF.C.closure(function (obj) {
  1513. //防止拖动图标即打开了桌面应用
  1514. U.MD.D.click(this, obj);
  1515. }, [_hkZJLSStudentDeskIconInfo[i]])
  1516. }, _frag); //
  1517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1520. } //
  1521. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1522. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1523. _content = $$("div", {
  1524. className: "U_MD_D_KO",
  1525. "onmousedown": U.UF.C.closure(function (obj) {
  1526. //防止拖动图标即打开了桌面应用
  1527. U.MD.D.click(this, obj);
  1528. }, [_ytyStudentDeskIconInfo[i]]),
  1529. "onclick": U.UF.C.closure(function (obj) {
  1530. //防止拖动图标即打开了桌面应用
  1531. U.MD.D.click(this, obj);
  1532. }, [_ytyStudentDeskIconInfo[i]])
  1533. }, _frag); //
  1534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1537. } //
  1538. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1539. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1540. _content = $$("div", {
  1541. className: "U_MD_D_KO",
  1542. "onmousedown": U.UF.C.closure(function (obj) {
  1543. //防止拖动图标即打开了桌面应用
  1544. U.MD.D.click(this, obj);
  1545. }, [_jccssylStudentDeskIconInfo[i]]),
  1546. "onclick": U.UF.C.closure(function (obj) {
  1547. //防止拖动图标即打开了桌面应用
  1548. U.MD.D.click(this, obj);
  1549. }, [_jccssylStudentDeskIconInfo[i]])
  1550. }, _frag); //
  1551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1554. }
  1555. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1556. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1557. _content = $$("div", {
  1558. className: "U_MD_D_KO",
  1559. "onmousedown": U.UF.C.closure(function (obj) {
  1560. //防止拖动图标即打开了桌面应用
  1561. U.MD.D.click(this, obj);
  1562. }, [_caleStudentDeskIconInfo[i]]),
  1563. "onclick": U.UF.C.closure(function (obj) {
  1564. //防止拖动图标即打开了桌面应用
  1565. U.MD.D.click(this, obj);
  1566. }, [_caleStudentDeskIconInfo[i]])
  1567. }, _frag); //
  1568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1571. }
  1572. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1573. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1574. _content = $$("div", {
  1575. className: "U_MD_D_KO",
  1576. "onmousedown": U.UF.C.closure(function (obj) {
  1577. //防止拖动图标即打开了桌面应用
  1578. U.MD.D.click(this, obj);
  1579. }, [_thuioeStudentDeskIconInfo[i]]),
  1580. "onclick": U.UF.C.closure(function (obj) {
  1581. //防止拖动图标即打开了桌面应用
  1582. U.MD.D.click(this, obj);
  1583. }, [_thuioeStudentDeskIconInfo[i]])
  1584. }, _frag); //
  1585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1588. }
  1589. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1590. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1591. _content = $$("div", {
  1592. className: "U_MD_D_KO",
  1593. "onmousedown": U.UF.C.closure(function (obj) {
  1594. //防止拖动图标即打开了桌面应用
  1595. U.MD.D.click(this, obj);
  1596. }, [_tpcStudentDeskIconInfo[i]]),
  1597. "onclick": U.UF.C.closure(function (obj) {
  1598. //防止拖动图标即打开了桌面应用
  1599. U.MD.D.click(this, obj);
  1600. }, [_tpcStudentDeskIconInfo[i]])
  1601. }, _frag); //
  1602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1605. } //
  1606. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1607. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1608. _content = $$("div", {
  1609. className: "U_MD_D_KO",
  1610. "onmousedown": U.UF.C.closure(function (obj) {
  1611. //防止拖动图标即打开了桌面应用
  1612. U.MD.D.click(this, obj);
  1613. }, [_chjyjStudentDeskIconInfo[i]]),
  1614. "onclick": U.UF.C.closure(function (obj) {
  1615. //防止拖动图标即打开了桌面应用
  1616. U.MD.D.click(this, obj);
  1617. }, [_chjyjStudentDeskIconInfo[i]])
  1618. }, _frag); //
  1619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1622. }
  1623. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1624. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1625. _content = $$("div", {
  1626. className: "U_MD_D_KO",
  1627. "onmousedown": U.UF.C.closure(function (obj) {
  1628. //防止拖动图标即打开了桌面应用
  1629. U.MD.D.click(this, obj);
  1630. }, [_szjkyStudentDeskIconInfo[i]]),
  1631. "onclick": U.UF.C.closure(function (obj) {
  1632. //防止拖动图标即打开了桌面应用
  1633. U.MD.D.click(this, obj);
  1634. }, [_szjkyStudentDeskIconInfo[i]])
  1635. }, _frag); //
  1636. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1637. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1638. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1639. }
  1640. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1641. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1642. _content = $$("div", {
  1643. className: "U_MD_D_KO",
  1644. "onmousedown": U.UF.C.closure(function (obj) {
  1645. //防止拖动图标即打开了桌面应用
  1646. U.MD.D.click(this, obj);
  1647. }, [_dseiStudentDeskIconInfo[i]]),
  1648. "onclick": U.UF.C.closure(function (obj) {
  1649. //防止拖动图标即打开了桌面应用
  1650. U.MD.D.click(this, obj);
  1651. }, [_dseiStudentDeskIconInfo[i]])
  1652. }, _frag); //
  1653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1656. }
  1657. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1658. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1659. _content = $$("div", {
  1660. className: "U_MD_D_KO",
  1661. "onmousedown": U.UF.C.closure(function (obj) {
  1662. //防止拖动图标即打开了桌面应用
  1663. U.MD.D.click(this, obj);
  1664. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1665. "onclick": U.UF.C.closure(function (obj) {
  1666. //防止拖动图标即打开了桌面应用
  1667. U.MD.D.click(this, obj);
  1668. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1669. }, _frag); //
  1670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1673. }
  1674. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1675. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1676. _content = $$("div", {
  1677. className: "U_MD_D_KO",
  1678. "onmousedown": U.UF.C.closure(function (obj) {
  1679. //防止拖动图标即打开了桌面应用
  1680. U.MD.D.click(this, obj);
  1681. }, [_siesStudentDeskIconInfo[i]]),
  1682. "onclick": U.UF.C.closure(function (obj) {
  1683. //防止拖动图标即打开了桌面应用
  1684. U.MD.D.click(this, obj);
  1685. }, [_siesStudentDeskIconInfo[i]])
  1686. }, _frag); //
  1687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1690. }
  1691. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1692. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1693. _content = $$("div", {
  1694. className: "U_MD_D_KO",
  1695. "onmousedown": U.UF.C.closure(function (obj) {
  1696. //防止拖动图标即打开了桌面应用
  1697. U.MD.D.click(this, obj);
  1698. }, [_hkStudentDeskIconInfo[i]]),
  1699. "onclick": U.UF.C.closure(function (obj) {
  1700. //防止拖动图标即打开了桌面应用
  1701. U.MD.D.click(this, obj);
  1702. }, [_hkStudentDeskIconInfo[i]])
  1703. }, _frag); //
  1704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1707. }
  1708. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1709. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1710. _content = $$("div", {
  1711. className: "U_MD_D_KO",
  1712. "onmousedown": U.UF.C.closure(function (obj) {
  1713. //防止拖动图标即打开了桌面应用
  1714. U.MD.D.click(this, obj);
  1715. }, [_hkaceStudentDeskIconInfo[i]]),
  1716. "onclick": U.UF.C.closure(function (obj) {
  1717. //防止拖动图标即打开了桌面应用
  1718. U.MD.D.click(this, obj);
  1719. }, [_hkaceStudentDeskIconInfo[i]])
  1720. }, _frag); //
  1721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1724. }
  1725. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1726. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1727. _content = $$("div", {
  1728. className: "U_MD_D_KO",
  1729. "onmousedown": U.UF.C.closure(function (obj) {
  1730. //防止拖动图标即打开了桌面应用
  1731. U.MD.D.click(this, obj);
  1732. }, [_studentDesktopIconInfo[i]]),
  1733. "onclick": U.UF.C.closure(function (obj) {
  1734. //防止拖动图标即打开了桌面应用
  1735. U.MD.D.click(this, obj);
  1736. }, [_studentDesktopIconInfo[i]])
  1737. }, _frag); //
  1738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1741. }
  1742. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1743. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1744. _content = $$("div", {
  1745. className: "U_MD_D_KO",
  1746. "onmousedown": U.UF.C.closure(function (obj) {
  1747. //防止拖动图标即打开了桌面应用
  1748. U.MD.D.click(this, obj);
  1749. }, [_tcStudentDeskIconInfo[i]]),
  1750. "onclick": U.UF.C.closure(function (obj) {
  1751. //防止拖动图标即打开了桌面应用
  1752. U.MD.D.click(this, obj);
  1753. }, [_tcStudentDeskIconInfo[i]])
  1754. }, _frag); //
  1755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1758. }
  1759. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1760. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1761. _content = $$("div", {
  1762. className: "U_MD_D_KO",
  1763. "onmousedown": U.UF.C.closure(function (obj) {
  1764. //防止拖动图标即打开了桌面应用
  1765. U.MD.D.click(this, obj);
  1766. }, [_szscStudentDeskIconInfo[i]]),
  1767. "onclick": U.UF.C.closure(function (obj) {
  1768. //防止拖动图标即打开了桌面应用
  1769. U.MD.D.click(this, obj);
  1770. }, [_szscStudentDeskIconInfo[i]])
  1771. }, _frag); //
  1772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1775. }
  1776. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1777. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1778. _content = $$("div", {
  1779. className: "U_MD_D_KO",
  1780. "onmousedown": U.UF.C.closure(function (obj) {
  1781. //防止拖动图标即打开了桌面应用
  1782. U.MD.D.click(this, obj);
  1783. }, [_studentDesktopIconInfo3[i]]),
  1784. "onclick": U.UF.C.closure(function (obj) {
  1785. //防止拖动图标即打开了桌面应用
  1786. U.MD.D.click(this, obj);
  1787. }, [_studentDesktopIconInfo3[i]])
  1788. }, _frag); //
  1789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1792. }
  1793. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1794. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1795. _content = $$("div", {
  1796. className: "U_MD_D_KO",
  1797. "onmousedown": U.UF.C.closure(function (obj) {
  1798. //防止拖动图标即打开了桌面应用
  1799. U.MD.D.click(this, obj);
  1800. }, [_studentDesktopIconInfo2[i]]),
  1801. "onclick": U.UF.C.closure(function (obj) {
  1802. //防止拖动图标即打开了桌面应用
  1803. U.MD.D.click(this, obj);
  1804. }, [_studentDesktopIconInfo2[i]])
  1805. }, _frag); //
  1806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1809. }
  1810. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1811. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1812. _content = $$("div", {
  1813. className: "U_MD_D_KO",
  1814. "onmousedown": U.UF.C.closure(function (obj) {
  1815. //防止拖动图标即打开了桌面应用
  1816. U.MD.D.click(this, obj);
  1817. }, [_wanketeacherDesktopIconInfo[i]]),
  1818. "onclick": U.UF.C.closure(function (obj) {
  1819. //防止拖动图标即打开了桌面应用
  1820. U.MD.D.click(this, obj);
  1821. }, [_wanketeacherDesktopIconInfo[i]])
  1822. }, _frag); //
  1823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1826. }
  1827. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1828. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1829. _content = $$("div", {
  1830. className: "U_MD_D_KO",
  1831. "onmousedown": U.UF.C.closure(function (obj) {
  1832. //防止拖动图标即打开了桌面应用
  1833. U.MD.D.click(this, obj);
  1834. }, [_wankeAdminDesktopIconInfo[i]]),
  1835. "onclick": U.UF.C.closure(function (obj) {
  1836. //防止拖动图标即打开了桌面应用
  1837. U.MD.D.click(this, obj);
  1838. }, [_wankeAdminDesktopIconInfo[i]])
  1839. }, _frag); //
  1840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1843. }
  1844. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1845. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1846. _content = $$("div", {
  1847. className: "U_MD_D_KO",
  1848. "onmousedown": U.UF.C.closure(function (obj) {
  1849. //防止拖动图标即打开了桌面应用
  1850. U.MD.D.click(this, obj);
  1851. }, [_jccssylTeacherDeskIconInfo[i]]),
  1852. "onclick": U.UF.C.closure(function (obj) {
  1853. //防止拖动图标即打开了桌面应用
  1854. U.MD.D.click(this, obj);
  1855. }, [_jccssylTeacherDeskIconInfo[i]])
  1856. }, _frag); //
  1857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1860. }
  1861. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1862. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1863. _content = $$("div", {
  1864. className: "U_MD_D_KO",
  1865. "onmousedown": U.UF.C.closure(function (obj) {
  1866. //防止拖动图标即打开了桌面应用
  1867. U.MD.D.click(this, obj);
  1868. }, [_caleTeacherDeskIconInfo[i]]),
  1869. "onclick": U.UF.C.closure(function (obj) {
  1870. //防止拖动图标即打开了桌面应用
  1871. U.MD.D.click(this, obj);
  1872. }, [_caleTeacherDeskIconInfo[i]])
  1873. }, _frag); //
  1874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1877. }
  1878. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1879. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1880. _content = $$("div", {
  1881. className: "U_MD_D_KO",
  1882. "onmousedown": U.UF.C.closure(function (obj) {
  1883. //防止拖动图标即打开了桌面应用
  1884. U.MD.D.click(this, obj);
  1885. }, [_tpcOrganizerDeskIconInfo[i]]),
  1886. "onclick": U.UF.C.closure(function (obj) {
  1887. //防止拖动图标即打开了桌面应用
  1888. U.MD.D.click(this, obj);
  1889. }, [_tpcOrganizerDeskIconInfo[i]])
  1890. }, _frag); //
  1891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1894. }
  1895. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1896. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1897. _content = $$("div", {
  1898. className: "U_MD_D_KO",
  1899. "onmousedown": U.UF.C.closure(function (obj) {
  1900. //防止拖动图标即打开了桌面应用
  1901. U.MD.D.click(this, obj);
  1902. }, [_tpcTeacherDeskIconInfo[i]]),
  1903. "onclick": U.UF.C.closure(function (obj) {
  1904. //防止拖动图标即打开了桌面应用
  1905. U.MD.D.click(this, obj);
  1906. }, [_tpcTeacherDeskIconInfo[i]])
  1907. }, _frag); //
  1908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1911. }
  1912. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1913. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1914. _content = $$("div", {
  1915. className: "U_MD_D_KO",
  1916. "onmousedown": U.UF.C.closure(function (obj) {
  1917. //防止拖动图标即打开了桌面应用
  1918. U.MD.D.click(this, obj);
  1919. }, [_teacherDesktopIconInfo2[i]]),
  1920. "onclick": U.UF.C.closure(function (obj) {
  1921. //防止拖动图标即打开了桌面应用
  1922. U.MD.D.click(this, obj);
  1923. }, [_teacherDesktopIconInfo2[i]])
  1924. }, _frag); //
  1925. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1926. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1927. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1928. }
  1929. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1930. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1931. _content = $$("div", {
  1932. className: "U_MD_D_KO",
  1933. "onmousedown": U.UF.C.closure(function (obj) {
  1934. //防止拖动图标即打开了桌面应用
  1935. U.MD.D.click(this, obj);
  1936. }, [_thuioeTeacherDeskIconInfo[i]]),
  1937. "onclick": U.UF.C.closure(function (obj) {
  1938. //防止拖动图标即打开了桌面应用
  1939. U.MD.D.click(this, obj);
  1940. }, [_thuioeTeacherDeskIconInfo[i]])
  1941. }, _frag); //
  1942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1945. }
  1946. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1947. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1948. _content = $$("div", {
  1949. className: "U_MD_D_KO",
  1950. "onmousedown": U.UF.C.closure(function (obj) {
  1951. //防止拖动图标即打开了桌面应用
  1952. U.MD.D.click(this, obj);
  1953. }, [_lotechTeacherDeskIconInfo[i]]),
  1954. "onclick": U.UF.C.closure(function (obj) {
  1955. //防止拖动图标即打开了桌面应用
  1956. U.MD.D.click(this, obj);
  1957. }, [_lotechTeacherDeskIconInfo[i]])
  1958. }, _frag); //
  1959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1962. }//
  1963. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1964. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1965. _content = $$("div", {
  1966. className: "U_MD_D_KO",
  1967. "onmousedown": U.UF.C.closure(function (obj) {
  1968. //防止拖动图标即打开了桌面应用
  1969. U.MD.D.click(this, obj);
  1970. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1971. "onclick": U.UF.C.closure(function (obj) {
  1972. //防止拖动图标即打开了桌面应用
  1973. U.MD.D.click(this, obj);
  1974. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1975. }, _frag); //
  1976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1979. }
  1980. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1981. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1982. _content = $$("div", {
  1983. className: "U_MD_D_KO",
  1984. "onmousedown": U.UF.C.closure(function (obj) {
  1985. //防止拖动图标即打开了桌面应用
  1986. U.MD.D.click(this, obj);
  1987. }, [_siesTeacherDeskIconInfo[i]]),
  1988. "onclick": U.UF.C.closure(function (obj) {
  1989. //防止拖动图标即打开了桌面应用
  1990. U.MD.D.click(this, obj);
  1991. }, [_siesTeacherDeskIconInfo[i]])
  1992. }, _frag); //
  1993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  1995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  1996. }
  1997. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  1998. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  1999. _content = $$("div", {
  2000. className: "U_MD_D_KO",
  2001. "onmousedown": U.UF.C.closure(function (obj) {
  2002. //防止拖动图标即打开了桌面应用
  2003. U.MD.D.click(this, obj);
  2004. }, [_longhuaTeacherDeskIconInfo[i]]),
  2005. "onclick": U.UF.C.closure(function (obj) {
  2006. //防止拖动图标即打开了桌面应用
  2007. U.MD.D.click(this, obj);
  2008. }, [_longhuaTeacherDeskIconInfo[i]])
  2009. }, _frag); //
  2010. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2011. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2012. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2013. }
  2014. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2015. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2016. _content = $$("div", {
  2017. className: "U_MD_D_KO",
  2018. "onmousedown": U.UF.C.closure(function (obj) {
  2019. //防止拖动图标即打开了桌面应用
  2020. U.MD.D.click(this, obj);
  2021. }, [_ytyTeacherDeskIconInfo[i]]),
  2022. "onclick": U.UF.C.closure(function (obj) {
  2023. //防止拖动图标即打开了桌面应用
  2024. U.MD.D.click(this, obj);
  2025. }, [_ytyTeacherDeskIconInfo[i]])
  2026. }, _frag); //
  2027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2030. }
  2031. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2032. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2033. _content = $$("div", {
  2034. className: "U_MD_D_KO",
  2035. "onmousedown": U.UF.C.closure(function (obj) {
  2036. //防止拖动图标即打开了桌面应用
  2037. U.MD.D.click(this, obj);
  2038. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2039. "onclick": U.UF.C.closure(function (obj) {
  2040. //防止拖动图标即打开了桌面应用
  2041. U.MD.D.click(this, obj);
  2042. }, [_yunhaiTeacherDeskIconInfo[i]])
  2043. }, _frag); //
  2044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2047. } //_hkStudentDeskIconInfo
  2048. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2049. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2050. _content = $$("div", {
  2051. className: "U_MD_D_KO",
  2052. "onmousedown": U.UF.C.closure(function (obj) {
  2053. //防止拖动图标即打开了桌面应用
  2054. U.MD.D.click(this, obj);
  2055. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2056. "onclick": U.UF.C.closure(function (obj) {
  2057. //防止拖动图标即打开了桌面应用
  2058. U.MD.D.click(this, obj);
  2059. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2060. }, _frag); //
  2061. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2062. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2063. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2064. }
  2065. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2066. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2067. _content = $$("div", {
  2068. className: "U_MD_D_KO",
  2069. "onmousedown": U.UF.C.closure(function (obj) {
  2070. //防止拖动图标即打开了桌面应用
  2071. U.MD.D.click(this, obj);
  2072. }, [_hkTeacherDeskIconInfo[i]]),
  2073. "onclick": U.UF.C.closure(function (obj) {
  2074. //防止拖动图标即打开了桌面应用
  2075. U.MD.D.click(this, obj);
  2076. }, [_hkTeacherDeskIconInfo[i]])
  2077. }, _frag); //
  2078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2081. }
  2082. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2083. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2084. _content = $$("div", {
  2085. className: "U_MD_D_KO",
  2086. "onmousedown": U.UF.C.closure(function (obj) {
  2087. //防止拖动图标即打开了桌面应用
  2088. U.MD.D.click(this, obj);
  2089. }, [_hkaceTeacherDeskIconInfo[i]]),
  2090. "onclick": U.UF.C.closure(function (obj) {
  2091. //防止拖动图标即打开了桌面应用
  2092. U.MD.D.click(this, obj);
  2093. }, [_hkaceTeacherDeskIconInfo[i]])
  2094. }, _frag); //
  2095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2098. }
  2099. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2100. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2101. _content = $$("div", {
  2102. className: "U_MD_D_KO",
  2103. "onmousedown": U.UF.C.closure(function (obj) {
  2104. //防止拖动图标即打开了桌面应用
  2105. U.MD.D.click(this, obj);
  2106. }, [_gdjgAdminDeskIconInfo[i]]),
  2107. "onclick": U.UF.C.closure(function (obj) {
  2108. //防止拖动图标即打开了桌面应用
  2109. U.MD.D.click(this, obj);
  2110. }, [_gdjgAdminDeskIconInfo[i]])
  2111. }, _frag); //
  2112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2115. }
  2116. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2117. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2118. _content = $$("div", {
  2119. className: "U_MD_D_KO",
  2120. "onmousedown": U.UF.C.closure(function (obj) {
  2121. //防止拖动图标即打开了桌面应用
  2122. U.MD.D.click(this, obj);
  2123. }, [_gdjgTeacherDeskIconInfo[i]]),
  2124. "onclick": U.UF.C.closure(function (obj) {
  2125. //防止拖动图标即打开了桌面应用
  2126. U.MD.D.click(this, obj);
  2127. }, [_gdjgTeacherDeskIconInfo[i]])
  2128. }, _frag); //
  2129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2132. }
  2133. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2134. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2135. _content = $$("div", {
  2136. className: "U_MD_D_KO",
  2137. "onmousedown": U.UF.C.closure(function (obj) {
  2138. //防止拖动图标即打开了桌面应用
  2139. U.MD.D.click(this, obj);
  2140. }, [_szherTeacherDeskIconInfo[i]]),
  2141. "onclick": U.UF.C.closure(function (obj) {
  2142. //防止拖动图标即打开了桌面应用
  2143. U.MD.D.click(this, obj);
  2144. }, [_szherTeacherDeskIconInfo[i]])
  2145. }, _frag); //
  2146. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2147. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2148. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2149. }
  2150. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2151. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2152. _content = $$("div", {
  2153. className: "U_MD_D_KO",
  2154. "onmousedown": U.UF.C.closure(function (obj) {
  2155. //防止拖动图标即打开了桌面应用
  2156. U.MD.D.click(this, obj);
  2157. }, [_heyuannAdminDeskIconInfo[i]]),
  2158. "onclick": U.UF.C.closure(function (obj) {
  2159. //防止拖动图标即打开了桌面应用
  2160. U.MD.D.click(this, obj);
  2161. }, [_heyuannAdminDeskIconInfo[i]])
  2162. }, _frag); //
  2163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2166. }
  2167. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2168. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2169. _content = $$("div", {
  2170. className: "U_MD_D_KO",
  2171. "onmousedown": U.UF.C.closure(function (obj) {
  2172. //防止拖动图标即打开了桌面应用
  2173. U.MD.D.click(this, obj);
  2174. }, [_heyuanTeacherDeskIconInfo[i]]),
  2175. "onclick": U.UF.C.closure(function (obj) {
  2176. //防止拖动图标即打开了桌面应用
  2177. U.MD.D.click(this, obj);
  2178. }, [_heyuanTeacherDeskIconInfo[i]])
  2179. }, _frag); //
  2180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2183. } //
  2184. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2185. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2186. _content = $$("div", {
  2187. className: "U_MD_D_KO",
  2188. "onmousedown": U.UF.C.closure(function (obj) {
  2189. //防止拖动图标即打开了桌面应用
  2190. U.MD.D.click(this, obj);
  2191. }, [_dseiAdminDeskIconInfo[i]]),
  2192. "onclick": U.UF.C.closure(function (obj) {
  2193. //防止拖动图标即打开了桌面应用
  2194. U.MD.D.click(this, obj);
  2195. }, [_dseiAdminDeskIconInfo[i]])
  2196. }, _frag); //
  2197. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2198. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2199. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2200. }
  2201. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2202. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2203. _content = $$("div", {
  2204. className: "U_MD_D_KO",
  2205. "onmousedown": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_dseiTeacherDeskIconInfo[i]]),
  2209. "onclick": U.UF.C.closure(function (obj) {
  2210. //防止拖动图标即打开了桌面应用
  2211. U.MD.D.click(this, obj);
  2212. }, [_dseiTeacherDeskIconInfo[i]])
  2213. }, _frag); //
  2214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2217. } //
  2218. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2219. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2220. _content = $$("div", {
  2221. className: "U_MD_D_KO",
  2222. "onmousedown": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_chjyjAdminDeskIconInfo[i]]),
  2226. "onclick": U.UF.C.closure(function (obj) {
  2227. //防止拖动图标即打开了桌面应用
  2228. U.MD.D.click(this, obj);
  2229. }, [_chjyjAdminDeskIconInfo[i]])
  2230. }, _frag); //
  2231. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2232. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2233. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2234. }//
  2235. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2236. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2237. _content = $$("div", {
  2238. className: "U_MD_D_KO",
  2239. "onmousedown": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_chjyjTeacherDeskIconInfo[i]]),
  2243. "onclick": U.UF.C.closure(function (obj) {
  2244. //防止拖动图标即打开了桌面应用
  2245. U.MD.D.click(this, obj);
  2246. }, [_chjyjTeacherDeskIconInfo[i]])
  2247. }, _frag); //
  2248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2251. }
  2252. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2253. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2254. _content = $$("div", {
  2255. className: "U_MD_D_KO",
  2256. "onmousedown": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_szjkyAdminDeskIconInfo[i]]),
  2260. "onclick": U.UF.C.closure(function (obj) {
  2261. //防止拖动图标即打开了桌面应用
  2262. U.MD.D.click(this, obj);
  2263. }, [_szjkyAdminDeskIconInfo[i]])
  2264. }, _frag); //
  2265. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2266. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2267. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2268. }//
  2269. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2270. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2271. _content = $$("div", {
  2272. className: "U_MD_D_KO",
  2273. "onmousedown": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_szjkyTeacherDeskIconInfo[i]]),
  2277. "onclick": U.UF.C.closure(function (obj) {
  2278. //防止拖动图标即打开了桌面应用
  2279. U.MD.D.click(this, obj);
  2280. }, [_szjkyTeacherDeskIconInfo[i]])
  2281. }, _frag); //
  2282. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2283. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2284. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2285. }
  2286. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2287. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2288. _content = $$("div", {
  2289. className: "U_MD_D_KO",
  2290. "onmousedown": U.UF.C.closure(function (obj) {
  2291. //防止拖动图标即打开了桌面应用
  2292. U.MD.D.click(this, obj);
  2293. }, [_futianAdminDeskIconInfo[i]]),
  2294. "onclick": U.UF.C.closure(function (obj) {
  2295. //防止拖动图标即打开了桌面应用
  2296. U.MD.D.click(this, obj);
  2297. }, [_futianAdminDeskIconInfo[i]])
  2298. }, _frag); //
  2299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2302. }
  2303. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2304. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2305. _content = $$("div", {
  2306. className: "U_MD_D_KO",
  2307. "onmousedown": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_futianTeacherDeskIconInfo[i]]),
  2311. "onclick": U.UF.C.closure(function (obj) {
  2312. //防止拖动图标即打开了桌面应用
  2313. U.MD.D.click(this, obj);
  2314. }, [_futianTeacherDeskIconInfo[i]])
  2315. }, _frag); //
  2316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2319. }
  2320. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2321. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2322. _content = $$("div", {
  2323. className: "U_MD_D_KO",
  2324. "onmousedown": U.UF.C.closure(function (obj) {
  2325. //防止拖动图标即打开了桌面应用
  2326. U.MD.D.click(this, obj);
  2327. }, [_MingdeTeacherDeskIcon[i]]),
  2328. "onclick": U.UF.C.closure(function (obj) {
  2329. //防止拖动图标即打开了桌面应用
  2330. U.MD.D.click(this, obj);
  2331. }, [_MingdeTeacherDeskIcon[i]])
  2332. }, _frag); //
  2333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2336. }
  2337. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2338. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2339. _content = $$("div", {
  2340. className: "U_MD_D_KO",
  2341. "onmousedown": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_lhsAdminDesktopIconInfo[i]]),
  2345. "onclick": U.UF.C.closure(function (obj) {
  2346. //防止拖动图标即打开了桌面应用
  2347. U.MD.D.click(this, obj);
  2348. }, [_lhsAdminDesktopIconInfo[i]])
  2349. }, _frag); //
  2350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2353. }
  2354. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2355. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2356. _content = $$("div", {
  2357. className: "U_MD_D_KO",
  2358. "onmousedown": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_lhsteacherDesktopIconInfo[i]]),
  2362. "onclick": U.UF.C.closure(function (obj) {
  2363. //防止拖动图标即打开了桌面应用
  2364. U.MD.D.click(this, obj);
  2365. }, [_lhsteacherDesktopIconInfo[i]])
  2366. }, _frag); //
  2367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2370. }
  2371. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2372. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2373. _content = $$("div", {
  2374. className: "U_MD_D_KO",
  2375. "onmousedown": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2379. "onclick": U.UF.C.closure(function (obj) {
  2380. //防止拖动图标即打开了桌面应用
  2381. U.MD.D.click(this, obj);
  2382. }, [_zhoujiateacherDesktopIconInfo[i]])
  2383. }, _frag); //
  2384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2387. }
  2388. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2389. for (i = 0; i < _hanDeskIcon.length; i++) {
  2390. _content = $$("div", {
  2391. className: "U_MD_D_KO",
  2392. "onmousedown": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_hanDeskIcon[i]]),
  2396. "onclick": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_hanDeskIcon[i]])
  2400. }, _frag); //
  2401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2404. }
  2405. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2406. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2407. _content = $$("div", {
  2408. className: "U_MD_D_KO",
  2409. "onmousedown": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_orgStemDeskIcon[i]]),
  2413. "onclick": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_orgStemDeskIcon[i]])
  2417. }, _frag); //
  2418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2421. }
  2422. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2423. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2424. _content = $$("div", {
  2425. className: "U_MD_D_KO",
  2426. "onmousedown": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_szulsDeskIcon[i]]),
  2430. "onclick": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_szulsDeskIcon[i]])
  2434. }, _frag); //
  2435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2438. }
  2439. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2440. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2441. _content = $$("div", {
  2442. className: "U_MD_D_KO",
  2443. "onmousedown": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_orgDesktopIconInfo[i]]),
  2447. "onclick": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_orgDesktopIconInfo[i]])
  2451. }, _frag); //
  2452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2455. }
  2456. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2457. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2458. _content = $$("div", {
  2459. className: "U_MD_D_KO",
  2460. "onmousedown": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_schoolDesktopIconInfo[i]]),
  2464. "onclick": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_schoolDesktopIconInfo[i]])
  2468. }, _frag); //
  2469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2472. }
  2473. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2474. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2475. _content = $$("div", {
  2476. className: "U_MD_D_KO",
  2477. "onmousedown": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_GMteacherDesktopIconInfo[i]]),
  2481. "onclick": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_GMteacherDesktopIconInfo[i]])
  2485. }, _frag); //
  2486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2489. }
  2490. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2491. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2492. _content = $$("div", {
  2493. className: "U_MD_D_KO",
  2494. "onmousedown": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_SONGteacherDesktopIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_SONGteacherDesktopIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2506. }
  2507. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2508. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2509. _content = $$("div", {
  2510. className: "U_MD_D_KO",
  2511. "onmousedown": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_GMstudentDesktopIconInfo[i]]),
  2515. "onclick": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_GMstudentDesktopIconInfo[i]])
  2519. }, _frag); //
  2520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2523. }
  2524. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2525. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2526. _content = $$("div", {
  2527. className: "U_MD_D_KO",
  2528. "onmousedown": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_tcTeacherDeskIconInfo[i]]),
  2532. "onclick": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_tcTeacherDeskIconInfo[i]])
  2536. }, _frag); //
  2537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2540. }
  2541. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2542. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2543. _content = $$("div", {
  2544. className: "U_MD_D_KO",
  2545. "onmousedown": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_tcOrganizerDeskIconInfo[i]]),
  2549. "onclick": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_tcOrganizerDeskIconInfo[i]])
  2553. }, _frag); //
  2554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2557. }
  2558. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2559. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2560. _content = $$("div", {
  2561. className: "U_MD_D_KO",
  2562. "onmousedown": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_szscTeacherDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_szscTeacherDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2576. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2577. _content = $$("div", {
  2578. className: "U_MD_D_KO",
  2579. "onmousedown": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_szscOrganizerDeskIconInfo[i]]),
  2583. "onclick": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_szscOrganizerDeskIconInfo[i]])
  2587. }, _frag); //
  2588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2591. }
  2592. } else {
  2593. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2594. _content = $$("div", {
  2595. className: "U_MD_D_KO",
  2596. "onmousedown": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_teacherDesktopIconInfo[i]]),
  2600. "onclick": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_teacherDesktopIconInfo[i]])
  2604. }, _frag); //
  2605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2608. }
  2609. }
  2610. } else {
  2611. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. style: { 'width': '124px', 'height': '145px' },
  2615. "onmousedown": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_easyDesktopIconInfo[i]]),
  2619. "onclick": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_easyDesktopIconInfo[i]])
  2623. }, _frag); //
  2624. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2627. }
  2628. }
  2629. if (type == 1) {
  2630. //加载好后给图标定位
  2631. U.MD.D.iconPostion($(_frag).Child());
  2632. } else {
  2633. //加载好后给图标定位
  2634. U.MD.D.iconPostion2($(_frag).Child());
  2635. }
  2636. //把图标加载到页面
  2637. el.appendChild(_frag);
  2638. }
  2639. /**
  2640. * 显示任务栏
  2641. *
  2642. * @param {element} 桌面元素
  2643. */
  2644. U.MD.D.I.displayTaskbar = function (el) {
  2645. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2646. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2647. //任务栏位置变化
  2648. U.selectEl(el).css({ "bottom": "0px" });
  2649. //桌面位置变话
  2650. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2651. }
  2652. }
  2653. //#region 桌面图标拖动逻辑
  2654. /**
  2655. * 桌面排列图标
  2656. *
  2657. * @param {element} 桌面元素
  2658. * @param {object} 上下相距的距离
  2659. * @param {object} 左右相距的距离
  2660. * @return {object} 命名空间
  2661. */
  2662. U.MD.D.iconPostion = function (childs, top, left) {
  2663. var i; //用于循环处理
  2664. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2665. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2666. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2667. for (i = 0; i < childs.length; i++) {
  2668. //如果竖排top超过了范围处理
  2669. if (top + 95 > US.height - 10) {
  2670. //left超过了页面范围处理,则向上重叠打印处理
  2671. if ((left + 180) > US.width) {
  2672. top -= 110;
  2673. left -= 90;
  2674. }
  2675. //没有超过范围,那么left+90添加到下一个竖排打印
  2676. else {
  2677. left += 90;
  2678. top = 15;
  2679. };
  2680. }
  2681. //给图标的位置赋值
  2682. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2683. if (i < childs.length - 1) {
  2684. //页面图标每次向下加95
  2685. top += 95;
  2686. }
  2687. }
  2688. //返回最后调用的图标的位置
  2689. return [top, left];
  2690. }
  2691. /**
  2692. * 桌面排列图标
  2693. *
  2694. * @param {element} 桌面元素
  2695. * @param {object} 上下相距的距离
  2696. * @param {object} 左右相距的距离
  2697. * @return {object} 命名空间
  2698. */
  2699. U.MD.D.iconPostion2 = function (childs, top, left) {
  2700. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2701. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2702. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2703. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2704. for (i = 0; i < childs.length; i++) {
  2705. //如果竖排top超过了范围处理
  2706. if (left + 150 > US.width - 10) {
  2707. //left超过了页面范围处理,则向上重叠打印处理
  2708. if ((top + 180) > US.Height) {
  2709. top -= 150;
  2710. left -= 150;
  2711. }
  2712. //没有超过范围,那么left+90添加到下一个竖排打印
  2713. else {
  2714. top += 150;
  2715. left = ol;
  2716. };
  2717. }
  2718. //给图标的位置赋值
  2719. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2720. if (i < childs.length - 1) {
  2721. //页面图标每次向下加95
  2722. left += 150;
  2723. }
  2724. }
  2725. //返回最后调用的图标的位置
  2726. return [top, left];
  2727. }
  2728. /**
  2729. * 桌面点击事件逻辑
  2730. *
  2731. * @param {element} 桌面元素
  2732. * @param {object} 上下相距的距离
  2733. * @param {object} 左右相距的距离
  2734. * @return {object} 命名空间
  2735. */
  2736. U.MD.D.click = function (el, obj) {
  2737. var _buttonnumber = event.button; //点击的按钮的事件值
  2738. var _userinfo = US.userInfo;
  2739. U.UF.EV.stopBubble(); //阻止向上冒泡
  2740. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2741. if (_buttonnumber < 2) {
  2742. //如果是click事件的处理
  2743. if (event.type == "click") {
  2744. //如果元素在mousemove事件中没有移动则出发click事件
  2745. if (!U.MD.D.I.IsDrag) {
  2746. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2747. U.alert("请先登录您的账号!");
  2748. setTimeout(() => {
  2749. U.MD.U.L.login();
  2750. }, 2000);
  2751. } else {
  2752. //打开应用处理
  2753. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2754. }
  2755. }
  2756. }
  2757. //如果是mouse事件的处理
  2758. else {
  2759. if (US.Config.type == '1') {
  2760. //拖动处理,添加拖动和拖动结束事件
  2761. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2762. }
  2763. }
  2764. U.MD.D.I.IsDrag = false;
  2765. }
  2766. }
  2767. /**
  2768. * 拖动的处理
  2769. *
  2770. */
  2771. U.MD.D.iconMove = function () {
  2772. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2773. U.MD.D.I.IsDrag = true;
  2774. }
  2775. /**
  2776. * 拖动结束后,这里是定位处理,以网状的形式定位
  2777. *
  2778. * @param {element} 拖动的元素
  2779. * @return {object} 命名空间
  2780. */
  2781. U.MD.D.iconUp = function (el) {
  2782. var _top = 15,
  2783. _left = 20,
  2784. _margin,
  2785. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2786. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2787. if (_positioninfo["OT"] > 15) {
  2788. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2789. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2790. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2791. }
  2792. if (_positioninfo["OL"] > 20) {
  2793. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2794. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2795. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2796. }
  2797. //while循环判断么一个重叠的元素
  2798. do {
  2799. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2800. _top = _positioninfo[0] + 95; //得到定位后的top
  2801. _left = _positioninfo[1]; //得到定位后的left
  2802. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2803. }
  2804. /**
  2805. * 判断拖动后图标是否重叠
  2806. *
  2807. * @param {element} 拖动的元素
  2808. * @param {element} 桌面所有的元素
  2809. * @param {array} 拖动元素的位置
  2810. ----------[0] 上 top
  2811. ----------[1] 左 left
  2812. * @return {object} 命名空间
  2813. */
  2814. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2815. //循环所有的图标
  2816. for (var i = 0; i < childs.length; i++) {
  2817. //判断有没有和该图标诶子重叠的元素
  2818. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2819. return childs[i]; //如果有返回
  2820. }
  2821. }
  2822. }
  2823. //#endregion
  2824. //#endregion
  2825. //#region 桌面应用
  2826. /**
  2827. * 打开应用
  2828. *
  2829. * @param {string} 类型
  2830. -----------------Disk 网盘系统
  2831. -----------------PDisk 学习系统网盘
  2832. -----------------Poto 图片
  2833. -----------------Video 视频
  2834. -----------------Music 音乐
  2835. -----------------Word word
  2836. -----------------Excel excel
  2837. -----------------Txt 记事本
  2838. -----------------PB 学习系统
  2839. -----------------Blog 朋友圈系统
  2840. -----------------FTP ftp系统
  2841. -----------------Group 好友群
  2842. -----------------SY 首页系统
  2843. -----------------Set 个人设置
  2844. -----------------XSet 系统设置
  2845. -----------------App 我们所有的app
  2846. -----------------BC c.1473.cn 平台
  2847. -----------------CWeb d.1473.cn 变成平台
  2848. -----------------其他的外联系统 我们统一用iframe打开
  2849. * @param {array} 类型
  2850. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2851. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2852. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2853. 如果第一个参数为其他,则无第二个参数
  2854. * @returns {array}
  2855. */
  2856. window.addEventListener('message', function (e) { // 监听 message 事件
  2857. // alert(e.data.type);
  2858. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2859. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2860. //3是展示全部阶段 2学生 1老师 4专家
  2861. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2862. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2863. //3是展示全部阶段 2学生 1老师 4专家
  2864. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2865. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2866. //3是展示全部阶段 2学生 1老师 4专家
  2867. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2868. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2869. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2870. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2871. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2872. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2873. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2874. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2875. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2876. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2877. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2878. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2879. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2880. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2881. //3是展示全部阶段 2学生 1老师 4专家
  2882. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2883. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2884. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2885. U.MD.D.I.selectUser();
  2886. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2887. var _formel = document.getElementById("study");
  2888. U.UF.F.windowZooming(_formel);
  2889. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2890. var _formel = document.getElementById("studyDetail");
  2891. U.UF.F.windowZooming(_formel);
  2892. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2893. var _formel = document.getElementById("studyDetail");
  2894. U.UF.F.windowZooming(_formel);
  2895. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2896. var _formel = document.getElementById("studentStudy");
  2897. U.UF.F.windowZooming(_formel);
  2898. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2899. // var _formel = document.getElementById("study");
  2900. //如果最大化了,那么就把他缩小
  2901. // if (_formel.ismaximize) {
  2902. // return;
  2903. // }
  2904. // U.UF.F.windowZooming(_formel);
  2905. // U.UF.F.topWindow(_formel);
  2906. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2907. // var _formel = document.getElementById("studyDetail");
  2908. //如果最大化了,那么就把他缩小
  2909. // if (_formel.ismaximize) {
  2910. // return;
  2911. // }
  2912. // U.UF.F.windowZooming(_formel);
  2913. // U.UF.F.topWindow(_formel);
  2914. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2915. // var _formel = document.getElementById("studentStudy");
  2916. // if (_formel.ismaximize) {
  2917. // return;
  2918. // }
  2919. // U.UF.F.windowZooming(_formel);
  2920. // U.UF.F.topWindow(_formel);
  2921. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2922. var _formel = document.getElementById("study");
  2923. // if (_formel.ismaximize) {
  2924. // return;
  2925. // }
  2926. // U.UF.F.windowZooming(_formel);
  2927. U.UF.F.topWindow(_formel);
  2928. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2929. var _formel = document.getElementById("studentIndex");
  2930. U.UF.F.windowZooming(_formel);
  2931. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2932. var _formel = document.getElementById("studyDetailS");
  2933. U.UF.F.windowZooming(_formel);
  2934. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2935. var _formel = document.getElementById("studioIndex");
  2936. U.UF.F.windowZooming(_formel);
  2937. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2938. var _formel = document.getElementById("studyDetailStudio");
  2939. U.UF.F.windowZooming(_formel);
  2940. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2941. var _formel = document.getElementById("studyDetailStudio");
  2942. U.UF.F.windowZooming(_formel);
  2943. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2944. var _formel = document.getElementById("studyDetailNT");
  2945. U.UF.F.windowZooming(_formel);
  2946. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2947. var _formel = document.getElementById("studyDetailS");
  2948. U.UF.F.windowZooming(_formel);
  2949. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2950. var _formel = document.getElementById("studyDetailS");
  2951. U.UF.F.topWindow(_formel);
  2952. } else if (e.data.tools && e.data.tools == "1") {
  2953. // U.MD.D.I.openApplication("whiteboard")
  2954. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2955. } else if (e.data.tools && e.data.tools == "2") {
  2956. U.MD.D.I.openApplication("note")
  2957. } else if (e.data.tools && e.data.tools == "3") {
  2958. // U.MD.D.I.openApplication("mind")
  2959. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2960. } else if (e.data.tools && e.data.tools == "4") {
  2961. U.MD.D.I.openApplication("investigation")
  2962. } else if (e.data.tools && e.data.tools == "6") {
  2963. // U.MD.D.I.openApplication("doc")
  2964. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2965. } else if (e.data.tools && e.data.tools == "7") {
  2966. // U.MD.D.I.openApplication("mindNetwork")
  2967. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2968. } else if (e.data.tools && e.data.tools == "8") {
  2969. U.MD.D.I.openApplication("library")
  2970. } else if (e.data.tools && e.data.tools == "17") {
  2971. U.MD.D.I.openApplication("stuLibrary")
  2972. } else if (e.data.tools && e.data.tools == "18") {
  2973. U.MD.D.I.openApplication("train")
  2974. } else if (e.data.tools && e.data.tools == "21") {
  2975. U.MD.D.I.openApplication("program")
  2976. } else if (e.data.tools && e.data.tools == "22") {
  2977. U.MD.D.I.openApplication("AIprogram2")
  2978. } else if (e.data.tools && e.data.tools == "23") {
  2979. U.MD.D.I.openApplication("Pythonprogram")
  2980. } else if (e.data.tools && e.data.tools == "24") {
  2981. U.MD.D.I.openApplication("AIprogram")
  2982. } else if (e.data.tools && e.data.tools == "25") {
  2983. U.MD.D.I.openApplication("sys")
  2984. } else if (e.data.tools && e.data.tools == "26") {
  2985. // U.MD.D.I.openApplication("courseDesign")
  2986. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2987. } else if (e.data.tools && e.data.tools == "31") {
  2988. U.MD.D.I.openApplication("netWorkPanel")
  2989. } else if (e.data.tools && e.data.tools == "32") {
  2990. U.MD.D.I.openApplication("codeEdit")
  2991. } else if (e.data.tools && e.data.tools == "57") {
  2992. U.MD.D.I.openApplication("CocoPi")
  2993. } else if (e.data.tools && e.data.tools == "63") {
  2994. U.MD.D.I.openApplication("Wood")
  2995. } else if (e.data.tools && e.data.tools == "58") {
  2996. U.MD.D.I.openApplication("car")
  2997. } else if (e.data.tools && e.data.tools == "59") {
  2998. U.MD.D.I.openApplication("lineSearch")
  2999. } else if (e.data.tools && e.data.tools == "60") {
  3000. U.MD.D.I.openApplication("deepLearning")
  3001. } else if (e.data.tools && e.data.tools == "61") {
  3002. U.MD.D.I.openApplication("allHistory")
  3003. } else if (e.data.tools && e.data.tools == "28") {
  3004. U.MD.D.I.openApplication("translation")
  3005. } else if (e.data.tools && e.data.tools == "37") {
  3006. U.MD.D.I.openApplication("mohe")
  3007. } else if (e.data.tools && e.data.tools == "38") {
  3008. U.MD.D.I.openApplication("24game")
  3009. } else if (e.data.tools && e.data.tools == "39") {
  3010. U.MD.D.I.openApplication("GeoGebra")
  3011. } else if (e.data.tools && e.data.tools == "43") {
  3012. U.MD.D.I.openApplication("studentEvaluate")
  3013. } else if (e.data.tools && e.data.tools == "44") {
  3014. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3015. } else if (e.data.tools && e.data.tools == "46") {
  3016. U.MD.D.I.openApplication("project")
  3017. } else if (e.data.tools && e.data.tools == "71") {
  3018. U.MD.D.I.openApplication("aigptCourse")
  3019. } else if (e.data.tools && e.data.tools == "1s") {
  3020. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3021. } else if (e.data.tools && e.data.tools == "3s") {
  3022. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3023. } else if (e.data.tools && e.data.tools == "6s") {
  3024. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3025. } else if (e.data.tools && e.data.tools == "1studio") {
  3026. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3027. } else if (e.data.tools && e.data.tools == "3studio") {
  3028. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3029. } else if (e.data.tools && e.data.tools == "6studio") {
  3030. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3031. } else if (e.data.tools && e.data.tools == "3y") {
  3032. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3033. } else if (e.data.tools && e.data.tools == "1y") {
  3034. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3035. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3036. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3037. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3038. U.MD.D.I.openApplication("AIAnalyse")
  3039. } else if (e.data.tools && e.data.tools == "1teacher") {
  3040. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3041. } else if (e.data.tools && e.data.tools == "3teacher") {
  3042. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3043. } else if (e.data.tools && e.data.tools == "7teacher") {
  3044. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3045. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3046. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3047. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3048. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3049. } else if (e.data.tools && e.data.tools == "1E") {
  3050. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3051. } else if (e.data.tools && e.data.tools == "3E") {
  3052. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3053. } else if (e.data.tools && e.data.tools == "57y") {
  3054. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3055. } else if (e.data.tools && e.data.tools == "57u") {
  3056. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3057. } else if (e.data.tools && e.data.tools == "57teacher") {
  3058. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3059. } else if (e.data.tools && e.data.tools == "64") {
  3060. U.MD.D.I.openApplication("AIChat")
  3061. } else if (e.data.tools && e.data.tools == "66") {
  3062. U.MD.D.I.openApplication("formulaEdi")
  3063. } else if (e.data.tools && e.data.tools == "67") {
  3064. U.MD.D.I.openApplication("molStr")
  3065. } else if (e.data.tools && e.data.tools == "68") {
  3066. U.MD.D.I.openApplication("timeAxis")
  3067. } else if (e.data.tools && e.data.tools == "openCourse") {
  3068. let _data = {
  3069. typea: e.data.typea || '',
  3070. typeb: e.data.typeb || '',
  3071. typed: e.data.typed || '',
  3072. }
  3073. U.MD.D.I.openInApplication("index", _data)
  3074. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3075. let _data = {
  3076. classid: e.data.classid || '',
  3077. }
  3078. U.MD.D.I.openInApplication("dataClass", _data)
  3079. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3080. let _data = {
  3081. cid: e.data.cid || '',
  3082. gid: e.data.gid || '',
  3083. }
  3084. U.MD.D.I.openInApplication("opencCscl", _data)
  3085. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3086. U.MD.D.I.openApplication("dataBoardTest")
  3087. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3088. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3089. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3090. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3091. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3092. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3093. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3094. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3095. }else if (e.data.tools && e.data.tools == "loginSz") {
  3096. U.MD.D.I.openInApplication("loginSz")
  3097. }
  3098. });
  3099. U.MD.D.I.selectUser = function () {
  3100. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3101. if (res.value[0].length > 0) {
  3102. US.userInfo = res.value[0][0];
  3103. $(".userName")[0].innerHTML = US.userInfo.username;
  3104. }
  3105. }, [], { "type": "GET", "withCredentials": true });
  3106. }
  3107. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3108. var _userinfo = US.userInfo, //登录用户信息
  3109. _userid = US.userInfo.userid, //登录用户id
  3110. _oid = _userinfo.organizeid,
  3111. _type = US.userInfo.type,
  3112. _org = US.userInfo.org,
  3113. _role = US.userInfo.role,
  3114. _classId = US.userInfo.classid;
  3115. if (_type == 4) {
  3116. tType = 4
  3117. }
  3118. switch (str) {
  3119. case "studyDetailNT": //无终端模式
  3120. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3121. setTimeout(() => {
  3122. U.MD.U.L.login();
  3123. }, 2000);
  3124. } else {
  3125. _formdiv = new U.UF.UI.form(
  3126. "课程详情",
  3127. $$("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 }), {
  3128. "id": "studyDetailNT",
  3129. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3130. "onresize": function () { }
  3131. }, {
  3132. closecallback: function () { }
  3133. }, { "style": { "height": "36px" } }).form; //创建窗体
  3134. _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); } }
  3135. break;
  3136. }
  3137. case "studyDetail":
  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/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3146. "id": "studyDetail",
  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 "studyDetailTrain":
  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/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3164. "id": "studyDetailTrain",
  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 "studyDetailS":
  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/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3182. "id": "studyDetailS",
  3183. "style": { "width": "95%", "height": "95%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3189. break;
  3190. }
  3191. case "studyDetailStudio":
  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/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3200. "id": "studyDetailStudio",
  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/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3207. break;
  3208. }
  3209. case "studyDetailS5":
  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/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3218. "id": "studyDetailS",
  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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3225. break;
  3226. }
  3227. case "studyDetailGM":
  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/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3236. "id": "studyDetail",
  3237. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3243. break;
  3244. }
  3245. case "hanUrl":
  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": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  3254. "id": "hanUrl",
  3255. "style": { "width": "90%", "height": "90%", "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/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3261. break;
  3262. }
  3263. case "index":
  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": 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 }), {
  3272. "id": "study",
  3273. "style": { "width": "100%", "height": "100%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3279. break;
  3280. }
  3281. case "dataClass":
  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-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  3290. "id": "dataClass",
  3291. "style": { "width": "90%", "height": "90%", "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/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3297. break;
  3298. }
  3299. case "opencCscl":
  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": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  3308. "id": "futureClass",
  3309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3310. "onresize": function () { }
  3311. }, {
  3312. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3313. }, { "style": { "height": "36px" } }).form; //创建窗体
  3314. _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); } }
  3315. break;
  3316. }
  3317. case "openCourseUpdate":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3326. "id": "openCourseUpdate",
  3327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3328. "onresize": function () { }
  3329. }, {
  3330. closecallback: function () { }
  3331. }, { "style": { "height": "36px" } }).form; //创建窗体
  3332. break;
  3333. }
  3334. case "openNewCourseUpdate":
  3335. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3336. setTimeout(() => {
  3337. U.MD.U.L.login();
  3338. }, 2000);
  3339. } else {
  3340. _formdiv = new U.UF.UI.form(
  3341. "课程管理",
  3342. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3343. "id": "openCourseNewUpdate",
  3344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3345. "onresize": function () { }
  3346. }, {
  3347. closecallback: function () { }
  3348. }, { "style": { "height": "36px" } }).form; //创建窗体
  3349. break;
  3350. }
  3351. case "openCourseEUpdate":
  3352. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3353. setTimeout(() => {
  3354. U.MD.U.L.login();
  3355. }, 2000);
  3356. } else {
  3357. _formdiv = new U.UF.UI.form(
  3358. "课程管理",
  3359. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3360. "id": "openCourseUpdate",
  3361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3362. "onresize": function () { }
  3363. }, {
  3364. closecallback: function () { }
  3365. }, { "style": { "height": "36px" } }).form; //创建窗体
  3366. break;
  3367. }
  3368. case "openCourseNewUpdate":
  3369. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3370. setTimeout(() => {
  3371. U.MD.U.L.login();
  3372. }, 2000);
  3373. } else {
  3374. _formdiv = new U.UF.UI.form(
  3375. "课程管理",
  3376. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3377. "id": "openCourseUpdate",
  3378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3379. "onresize": function () { }
  3380. }, {
  3381. closecallback: function () { }
  3382. }, { "style": { "height": "36px" } }).form; //创建窗体
  3383. break;
  3384. }
  3385. case "inviteLoginSz":
  3386. _formdiv = new U.UF.UI.form(
  3387. "随机码登录",
  3388. $$("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 }), {
  3389. "id": "loginSz",
  3390. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3391. "onresize": function () { }
  3392. }, {
  3393. closecallback: function () { }
  3394. }, { "style": { "height": "36px" } }).form; //创建窗体
  3395. break;
  3396. case "loginSz":
  3397. _formdiv = new U.UF.UI.form(
  3398. "教师登录",
  3399. $$("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" }), {
  3400. "id": "loginSz",
  3401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3402. "onresize": function () { }
  3403. }, {
  3404. closecallback: function () { }
  3405. }, { "style": { "height": "36px" } }).form; //创建窗体
  3406. break;
  3407. case "teacher":
  3408. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3409. setTimeout(() => {
  3410. U.MD.U.L.login();
  3411. }, 2000);
  3412. } else {
  3413. _formdiv = new U.UF.UI.form(
  3414. "教师管理",
  3415. $$("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 }), {
  3416. "id": "teacher",
  3417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3418. "onresize": function () { }
  3419. }, {
  3420. closecallback: function () { }
  3421. }, { "style": { "height": "36px" } }).form; //创建窗体
  3422. break;
  3423. }
  3424. case "dataBoardSZArea":
  3425. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3426. setTimeout(() => {
  3427. U.MD.U.L.login();
  3428. }, 2000);
  3429. } else {
  3430. _formdiv = new U.UF.UI.form(
  3431. "综合数据看板",
  3432. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3433. "id": "dataBoardSZArea",
  3434. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3435. "onresize": function () { }
  3436. }, {
  3437. closecallback: function () { }
  3438. }, { "style": { "height": "36px" } }).form; //创建窗体
  3439. break;
  3440. }
  3441. case "dataBoardSZCity":
  3442. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3443. setTimeout(() => {
  3444. U.MD.U.L.login();
  3445. }, 2000);
  3446. } else {
  3447. _formdiv = new U.UF.UI.form(
  3448. "综合数据看板",
  3449. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3450. "id": "dataBoardSZCity",
  3451. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3452. "onresize": function () { }
  3453. }, {
  3454. closecallback: function () { }
  3455. }, { "style": { "height": "36px" } }).form; //创建窗体
  3456. break;
  3457. }
  3458. }
  3459. }
  3460. U.MD.D.I.openApplication = function (str, obj, info) {
  3461. obj = obj || {};
  3462. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3463. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3464. _userinfo = US.userInfo, //登录用户信息
  3465. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3466. _oid = obj.organizeid || _userinfo.organizeid,
  3467. _type = US.userInfo.type,
  3468. _org = US.userInfo.org,
  3469. _role = US.userInfo.role,
  3470. _classId = US.userInfo.classid,
  3471. _TscreenType = 1
  3472. _screenType = 2,
  3473. _SscreenType = 3;
  3474. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3475. return;
  3476. }
  3477. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3478. switch (str) {
  3479. case "studnetProject": //好友打开
  3480. _formdiv = new U.UF.UI.form(
  3481. "我的项目",
  3482. $$("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 }), {
  3483. "id": "studnetProject",
  3484. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3485. "onresize": function () { }
  3486. }, {
  3487. closecallback: function () { }
  3488. }, { "style": { "height": "36px" } }).form; //创建窗体
  3489. _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); } }
  3490. break;
  3491. case "studentEvaluate": //好友打开
  3492. _formdiv = new U.UF.UI.form(
  3493. "我的评价",
  3494. $$("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 }), {
  3495. "id": "studentEvaluate",
  3496. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3497. "onresize": function () { }
  3498. }, {
  3499. closecallback: function () { }
  3500. }, { "style": { "height": "36px" } }).form; //创建窗体
  3501. _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); } }
  3502. break;
  3503. case "my":
  3504. _formdiv = new U.UF.UI.form(
  3505. "我的资料",
  3506. $$("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 }), {
  3507. "id": "my",
  3508. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3509. "onresize": function () { }
  3510. }, {
  3511. closecallback: function () { }
  3512. }, { "style": { "height": "36px" } }).form; //创建窗体
  3513. _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); } }
  3514. break;
  3515. case "program":
  3516. _formdiv = new U.UF.UI.form(
  3517. "编程平台",
  3518. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3519. "id": "program",
  3520. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3521. "onresize": function () { }
  3522. }, {
  3523. closecallback: function () { }
  3524. }, { "style": { "height": "36px" } }).form; //创建窗体
  3525. _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); } }
  3526. break;
  3527. case "library":
  3528. _formdiv = new U.UF.UI.form(
  3529. "素材库",
  3530. $$("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 }), {
  3531. "id": "library",
  3532. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3533. "onresize": function () { }
  3534. }, {
  3535. closecallback: function () { }
  3536. }, { "style": { "height": "36px" } }).form; //创建窗体
  3537. _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); } }
  3538. break;
  3539. case "whiteboard":
  3540. _formdiv = new U.UF.UI.form(
  3541. "电子白板",
  3542. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  3543. "id": "whiteboard",
  3544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3545. "onresize": function () { }
  3546. }, {
  3547. closecallback: function () { }
  3548. }, { "style": { "height": "36px" } }).form; //创建窗体
  3549. _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); } }
  3550. break;
  3551. case "investigation":
  3552. _formdiv = new U.UF.UI.form(
  3553. "问卷调查",
  3554. $$("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 }), {
  3555. "id": "investigation",
  3556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3557. "onresize": function () { }
  3558. }, {
  3559. closecallback: function () { }
  3560. }, { "style": { "height": "36px" } }).form; //创建窗体
  3561. _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); } }
  3562. break;
  3563. case "note":
  3564. _formdiv = new U.UF.UI.form(
  3565. "便签分类",
  3566. $$("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 }), {
  3567. "id": "note",
  3568. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3569. "onresize": function () { }
  3570. }, {
  3571. closecallback: function () { }
  3572. }, { "style": { "height": "36px" } }).form; //创建窗体
  3573. _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); } }
  3574. break;
  3575. // case "score":
  3576. // _formdiv = new U.UF.UI.form(
  3577. // "量规评分",
  3578. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3579. // "id": "score",
  3580. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3581. // "onresize": function() {}
  3582. // }, {
  3583. // closecallback: function() {}
  3584. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3585. // _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); } }
  3586. // break;
  3587. case "mind":
  3588. _formdiv = new U.UF.UI.form(
  3589. "思维导图",
  3590. $$("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"
  3591. "id": "mind",
  3592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3593. "onresize": function () { }
  3594. }, {
  3595. closecallback: function () { }
  3596. }, { "style": { "height": "36px" } }).form; //创建窗体
  3597. _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); } }
  3598. break;
  3599. case "doc":
  3600. // U.MD.D.I.isRoom();
  3601. _formdiv = new U.UF.UI.form(
  3602. "协同文档",
  3603. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3604. "id": "doc",
  3605. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3606. "onresize": function () { }
  3607. }, {
  3608. closecallback: function () { }
  3609. }, { "style": { "height": "36px" } }).form; //创建窗体
  3610. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3611. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3612. // })
  3613. _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); } }
  3614. break;
  3615. case "studentStudy":
  3616. _formdiv = new U.UF.UI.form(
  3617. "课程中心",
  3618. $$("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
  3619. "id": "studentStudy",
  3620. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3621. "onresize": function () { }
  3622. }, {
  3623. closecallback: function () { }
  3624. }, { "style": { "height": "36px" } }).form; //创建窗体
  3625. _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); } }
  3626. break;
  3627. case "train": //好友打开
  3628. _formdiv = new U.UF.UI.form(
  3629. "训练平台",
  3630. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3631. "id": "train",
  3632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3633. "onresize": function () { }
  3634. }, {
  3635. closecallback: function () { }
  3636. }, { "style": { "height": "36px" } }).form; //创建窗体
  3637. _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); } }
  3638. break;
  3639. case "mindNetwork": //好友打开
  3640. _formdiv = new U.UF.UI.form(
  3641. "思维网格",
  3642. $$("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 }), {
  3643. "id": "mindNetwork",
  3644. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3645. "onresize": function () { }
  3646. }, {
  3647. closecallback: function () { }
  3648. }, { "style": { "height": "36px" } }).form; //创建窗体
  3649. _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); } }
  3650. break;
  3651. case "studentClassRoom": //好友打开
  3652. _formdiv = new U.UF.UI.form(
  3653. "实时课堂",
  3654. $$("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 }), {
  3655. "id": "studentClassRoom",
  3656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3657. "onresize": function () { }
  3658. }, {
  3659. closecallback: function () { }
  3660. }, { "style": { "height": "36px" } }).form; //创建窗体
  3661. _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); } }
  3662. setTimeout(() => {
  3663. U.UF.F.windowZooming(_formdiv)
  3664. }, 0);
  3665. break;
  3666. }
  3667. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3668. switch (str) {
  3669. case "studnetProject": //好友打开
  3670. _formdiv = new U.UF.UI.form(
  3671. "我的项目",
  3672. $$("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 }), {
  3673. "id": "studnetProject",
  3674. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3675. "onresize": function () { }
  3676. }, {
  3677. closecallback: function () { }
  3678. }, { "style": { "height": "36px" } }).form; //创建窗体
  3679. _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); } }
  3680. break;
  3681. case "studentEvaluate": //好友打开
  3682. _formdiv = new U.UF.UI.form(
  3683. "我的评价",
  3684. $$("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 }), {
  3685. "id": "studentEvaluate",
  3686. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3687. "onresize": function () { }
  3688. }, {
  3689. closecallback: function () { }
  3690. }, { "style": { "height": "36px" } }).form; //创建窗体
  3691. _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); } }
  3692. break;
  3693. case "my":
  3694. _formdiv = new U.UF.UI.form(
  3695. "我的资料",
  3696. $$("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 }), {
  3697. "id": "my",
  3698. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3699. "onresize": function () { }
  3700. }, {
  3701. closecallback: function () { }
  3702. }, { "style": { "height": "36px" } }).form; //创建窗体
  3703. _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); } }
  3704. break;
  3705. case "program":
  3706. _formdiv = new U.UF.UI.form(
  3707. "编程平台",
  3708. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3709. "id": "program",
  3710. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3711. "onresize": function () { }
  3712. }, {
  3713. closecallback: function () { }
  3714. }, { "style": { "height": "36px" } }).form; //创建窗体
  3715. _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); } }
  3716. break;
  3717. case "library":
  3718. _formdiv = new U.UF.UI.form(
  3719. "素材库",
  3720. $$("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 }), {
  3721. "id": "library",
  3722. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3723. "onresize": function () { }
  3724. }, {
  3725. closecallback: function () { }
  3726. }, { "style": { "height": "36px" } }).form; //创建窗体
  3727. _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); } }
  3728. break;
  3729. case "whiteboard":
  3730. _formdiv = new U.UF.UI.form(
  3731. "电子白板",
  3732. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  3733. "id": "whiteboard",
  3734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3735. "onresize": function () { }
  3736. }, {
  3737. closecallback: function () { }
  3738. }, { "style": { "height": "36px" } }).form; //创建窗体
  3739. _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); } }
  3740. break;
  3741. case "investigation":
  3742. _formdiv = new U.UF.UI.form(
  3743. "问卷调查",
  3744. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  3745. "id": "investigation",
  3746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3747. "onresize": function () { }
  3748. }, {
  3749. closecallback: function () { }
  3750. }, { "style": { "height": "36px" } }).form; //创建窗体
  3751. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3752. break;
  3753. case "note":
  3754. _formdiv = new U.UF.UI.form(
  3755. "便签分类",
  3756. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  3757. "id": "note",
  3758. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3759. "onresize": function () { }
  3760. }, {
  3761. closecallback: function () { }
  3762. }, { "style": { "height": "36px" } }).form; //创建窗体
  3763. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3764. break;
  3765. // case "score":
  3766. // _formdiv = new U.UF.UI.form(
  3767. // "量规评分",
  3768. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3769. // "id": "score",
  3770. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3771. // "onresize": function() {}
  3772. // }, {
  3773. // closecallback: function() {}
  3774. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3775. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  3776. // break;
  3777. case "mind":
  3778. _formdiv = new U.UF.UI.form(
  3779. "思维导图",
  3780. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  3781. "id": "mind",
  3782. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3783. "onresize": function () { }
  3784. }, {
  3785. closecallback: function () { }
  3786. }, { "style": { "height": "36px" } }).form; //创建窗体
  3787. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3788. break;
  3789. case "doc":
  3790. // U.MD.D.I.isRoom();
  3791. _formdiv = new U.UF.UI.form(
  3792. "协同文档",
  3793. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3794. "id": "doc",
  3795. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3796. "onresize": function () { }
  3797. }, {
  3798. closecallback: function () { }
  3799. }, { "style": { "height": "36px" } }).form; //创建窗体
  3800. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3801. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3802. })
  3803. _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); } }
  3804. break;
  3805. case "train": //好友打开
  3806. _formdiv = new U.UF.UI.form(
  3807. "训练平台",
  3808. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3809. "id": "train",
  3810. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3811. "onresize": function () { }
  3812. }, {
  3813. closecallback: function () { }
  3814. }, { "style": { "height": "36px" } }).form; //创建窗体
  3815. _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); } }
  3816. break;
  3817. case "studentStudy":
  3818. _formdiv = new U.UF.UI.form(
  3819. "课程中心",
  3820. $$("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
  3821. "id": "studentStudy",
  3822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3823. "onresize": function () { }
  3824. }, {
  3825. closecallback: function () { }
  3826. }, { "style": { "height": "36px" } }).form; //创建窗体
  3827. _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); } }
  3828. break;
  3829. case "mindNetwork": //好友打开
  3830. _formdiv = new U.UF.UI.form(
  3831. "思维网格",
  3832. $$("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 }), {
  3833. "id": "mindNetwork",
  3834. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3835. "onresize": function () { }
  3836. }, {
  3837. closecallback: function () { }
  3838. }, { "style": { "height": "36px" } }).form; //创建窗体
  3839. _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); } }
  3840. break;
  3841. case "studentClassRoom": //好友打开
  3842. _formdiv = new U.UF.UI.form(
  3843. "实时课堂",
  3844. $$("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 }), {
  3845. "id": "studentClassRoom",
  3846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3847. "onresize": function () { }
  3848. }, {
  3849. closecallback: function () { }
  3850. }, { "style": { "height": "36px" } }).form; //创建窗体
  3851. _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); } }
  3852. setTimeout(() => {
  3853. U.UF.F.windowZooming(_formdiv)
  3854. }, 0);
  3855. break;
  3856. }
  3857. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3858. //选择应用处理
  3859. switch (str) {
  3860. case "project": //好友打开
  3861. _formdiv = new U.UF.UI.form(
  3862. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3863. $$("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 }), {
  3864. "id": "project",
  3865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3866. "onresize": function () { }
  3867. }, {
  3868. closecallback: function () { }
  3869. }, { "style": { "height": "36px" } }).form; //创建窗体
  3870. _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); } }
  3871. break;
  3872. case "student":
  3873. _formdiv = new U.UF.UI.form(
  3874. "学生管理",
  3875. $$("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 }), {
  3876. "id": "student",
  3877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3878. "onresize": function () { }
  3879. }, {
  3880. closecallback: function () { }
  3881. }, { "style": { "height": "36px" } }).form; //创建窗体
  3882. _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); } }
  3883. break;
  3884. case "evaluate":
  3885. _formdiv = new U.UF.UI.form(
  3886. "学生评价",
  3887. $$("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 }), {
  3888. "id": "evaluate",
  3889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3890. "onresize": function () { }
  3891. }, {
  3892. closecallback: function () { }
  3893. }, { "style": { "height": "36px" } }).form; //创建窗体
  3894. _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); } }
  3895. break;
  3896. case "sys":
  3897. _formdiv = new U.UF.UI.form(
  3898. "目标管理",
  3899. $$("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 }), {
  3900. "id": "sys",
  3901. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3902. "onresize": function () { }
  3903. }, {
  3904. closecallback: function () { }
  3905. }, { "style": { "height": "36px" } }).form; //创建窗体
  3906. _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); } }
  3907. break;
  3908. case "courseDesign":
  3909. _formdiv = new U.UF.UI.form(
  3910. "项目设计",
  3911. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3912. "id": "courseDesign",
  3913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3914. "onresize": function () { }
  3915. }, {
  3916. closecallback: function () { }
  3917. }, { "style": { "height": "36px" } }).form; //创建窗体
  3918. _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); } }
  3919. break;
  3920. case "program":
  3921. _formdiv = new U.UF.UI.form(
  3922. "编程平台",
  3923. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3924. "id": "program",
  3925. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3926. "onresize": function () { }
  3927. }, {
  3928. closecallback: function () { }
  3929. }, { "style": { "height": "36px" } }).form; //创建窗体
  3930. _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); } }
  3931. break;
  3932. case "class":
  3933. _formdiv = new U.UF.UI.form(
  3934. "班级管理",
  3935. $$("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 }), {
  3936. "id": "class",
  3937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3938. "onresize": function () { }
  3939. }, {
  3940. closecallback: function () { }
  3941. }, { "style": { "height": "36px" } }).form; //创建窗体
  3942. _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); } }
  3943. break;
  3944. case "Grade":
  3945. _formdiv = new U.UF.UI.form(
  3946. "年级管理",
  3947. $$("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 }), {
  3948. "id": "Grade",
  3949. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3950. "onresize": function () { }
  3951. }, {
  3952. closecallback: function () { }
  3953. }, { "style": { "height": "36px" } }).form; //创建窗体
  3954. _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); } }
  3955. break;
  3956. case "teacherOffice":
  3957. _formdiv = new U.UF.UI.form(
  3958. "教研室",
  3959. $$("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 }), {
  3960. "id": "teacherOffice",
  3961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3962. "onresize": function () { }
  3963. }, {
  3964. closecallback: function () { }
  3965. }, { "style": { "height": "36px" } }).form; //创建窗体
  3966. _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); } }
  3967. break;
  3968. case "my":
  3969. _formdiv = new U.UF.UI.form(
  3970. "我的资料",
  3971. $$("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 }), {
  3972. "id": "my",
  3973. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3974. "onresize": function () { }
  3975. }, {
  3976. closecallback: function () { }
  3977. }, { "style": { "height": "36px" } }).form; //创建窗体
  3978. _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); } }
  3979. break;
  3980. case "notice":
  3981. _formdiv = new U.UF.UI.form(
  3982. "通知公告",
  3983. $$("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 }), {
  3984. "id": "notice",
  3985. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3986. "onresize": function () { }
  3987. }, {
  3988. closecallback: function () { }
  3989. }, { "style": { "height": "36px" } }).form; //创建窗体
  3990. _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); } }
  3991. break;
  3992. case "library":
  3993. _formdiv = new U.UF.UI.form(
  3994. "素材库",
  3995. $$("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 }), {
  3996. "id": "library",
  3997. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3998. "onresize": function () { }
  3999. }, {
  4000. closecallback: function () { }
  4001. }, { "style": { "height": "36px" } }).form; //创建窗体
  4002. _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); } }
  4003. break;
  4004. case "whiteboard":
  4005. _formdiv = new U.UF.UI.form(
  4006. "电子白板",
  4007. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  4008. "id": "whiteboard",
  4009. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4010. "onresize": function () { }
  4011. }, {
  4012. closecallback: function () { }
  4013. }, { "style": { "height": "36px" } }).form; //创建窗体
  4014. _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); } }
  4015. break;
  4016. case "investigation":
  4017. _formdiv = new U.UF.UI.form(
  4018. "问卷调查",
  4019. $$("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 }), {
  4020. "id": "investigation",
  4021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4022. "onresize": function () { }
  4023. }, {
  4024. closecallback: function () { }
  4025. }, { "style": { "height": "36px" } }).form; //创建窗体
  4026. _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); } }
  4027. break;
  4028. case "note":
  4029. _formdiv = new U.UF.UI.form(
  4030. "便签分类",
  4031. $$("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 }), {
  4032. "id": "note",
  4033. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4034. "onresize": function () { }
  4035. }, {
  4036. closecallback: function () { }
  4037. }, { "style": { "height": "36px" } }).form; //创建窗体
  4038. _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); } }
  4039. break;
  4040. // case "score":
  4041. // _formdiv = new U.UF.UI.form(
  4042. // "量规评分",
  4043. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4044. // "id": "score",
  4045. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4046. // "onresize": function() {}
  4047. // }, {
  4048. // closecallback: function() {}
  4049. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4050. // _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); } }
  4051. // break;
  4052. case "mind":
  4053. _formdiv = new U.UF.UI.form(
  4054. "思维导图",
  4055. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4056. "id": "mind",
  4057. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4058. "onresize": function () { }
  4059. }, {
  4060. closecallback: function () { }
  4061. }, { "style": { "height": "36px" } }).form; //创建窗体
  4062. _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); } }
  4063. break;
  4064. case "doc":
  4065. // U.MD.D.I.isRoom();
  4066. _formdiv = new U.UF.UI.form(
  4067. "协同文档",
  4068. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4069. "id": "doc",
  4070. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4071. "onresize": function () { }
  4072. }, {
  4073. closecallback: function () { }
  4074. }, { "style": { "height": "36px" } }).form; //创建窗体
  4075. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4076. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4077. })
  4078. _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); } }
  4079. break;
  4080. case "study":
  4081. _formdiv = new U.UF.UI.form(
  4082. "课程中心",
  4083. $$("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
  4084. "id": "study",
  4085. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4086. "onresize": function () { }
  4087. }, {
  4088. closecallback: function () { }
  4089. }, { "style": { "height": "36px" } }).form; //创建窗体
  4090. _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); } }
  4091. break;
  4092. case "mindNetwork": //好友打开
  4093. _formdiv = new U.UF.UI.form(
  4094. "思维网格",
  4095. $$("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 }), {
  4096. "id": "mindNetwork",
  4097. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4098. "onresize": function () { }
  4099. }, {
  4100. closecallback: function () { }
  4101. }, { "style": { "height": "36px" } }).form; //创建窗体
  4102. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4103. break;
  4104. case "train": //好友打开
  4105. _formdiv = new U.UF.UI.form(
  4106. "训练平台",
  4107. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4108. "id": "mindNetwork",
  4109. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4110. "onresize": function () { }
  4111. }, {
  4112. closecallback: function () { }
  4113. }, { "style": { "height": "36px" } }).form; //创建窗体
  4114. _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); } }
  4115. break;
  4116. case "teacherClassRoom": //好友打开
  4117. _formdiv = new U.UF.UI.form(
  4118. "实时课堂",
  4119. $$("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 }), {
  4120. "id": "teacherClassRoom",
  4121. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4122. "onresize": function () { }
  4123. }, {
  4124. closecallback: function () { }
  4125. }, { "style": { "height": "36px" } }).form; //创建窗体
  4126. _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); } }
  4127. setTimeout(() => {
  4128. U.UF.F.windowZooming(_formdiv)
  4129. }, 0);
  4130. break;
  4131. }
  4132. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4133. switch (str) {
  4134. case "project": //好友打开
  4135. _formdiv = new U.UF.UI.form(
  4136. "课程管理",
  4137. $$("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 }), {
  4138. "id": "project",
  4139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4140. "onresize": function () { }
  4141. }, {
  4142. closecallback: function () { }
  4143. }, { "style": { "height": "36px" } }).form; //创建窗体
  4144. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4145. break;
  4146. case "evaluate":
  4147. _formdiv = new U.UF.UI.form(
  4148. "学生评价",
  4149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4150. "id": "evaluate",
  4151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4152. "onresize": function () { }
  4153. }, {
  4154. closecallback: function () { }
  4155. }, { "style": { "height": "36px" } }).form; //创建窗体
  4156. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4157. break;
  4158. case "notice":
  4159. _formdiv = new U.UF.UI.form(
  4160. "通知公告",
  4161. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  4162. "id": "notice",
  4163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4164. "onresize": function () { }
  4165. }, {
  4166. closecallback: function () { }
  4167. }, { "style": { "height": "36px" } }).form; //创建窗体
  4168. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4169. break;
  4170. case "stuLibrary":
  4171. _formdiv = new U.UF.UI.form(
  4172. "学习资料",
  4173. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  4174. "id": "stuLibrary",
  4175. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4176. "onresize": function () { }
  4177. }, {
  4178. closecallback: function () { }
  4179. }, { "style": { "height": "36px" } }).form; //创建窗体
  4180. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4181. break;
  4182. case "program":
  4183. _formdiv = new U.UF.UI.form(
  4184. "编程平台",
  4185. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4186. "id": "program",
  4187. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4188. "onresize": function () { }
  4189. }, {
  4190. closecallback: function () { }
  4191. }, { "style": { "height": "36px" } }).form; //创建窗体
  4192. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4193. break;
  4194. case "whiteboard":
  4195. _formdiv = new U.UF.UI.form(
  4196. "电子白板",
  4197. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  4198. "id": "whiteboard",
  4199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4200. "onresize": function () { }
  4201. }, {
  4202. closecallback: function () { }
  4203. }, { "style": { "height": "36px" } }).form; //创建窗体
  4204. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4205. break;
  4206. case "investigation":
  4207. _formdiv = new U.UF.UI.form(
  4208. "问卷调查",
  4209. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  4210. "id": "investigation",
  4211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4212. "onresize": function () { }
  4213. }, {
  4214. closecallback: function () { }
  4215. }, { "style": { "height": "36px" } }).form; //创建窗体
  4216. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4217. break;
  4218. case "mind":
  4219. _formdiv = new U.UF.UI.form(
  4220. "思维导图",
  4221. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4222. "id": "mind",
  4223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4224. "onresize": function () { }
  4225. }, {
  4226. closecallback: function () { }
  4227. }, { "style": { "height": "36px" } }).form; //创建窗体
  4228. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4229. break;
  4230. case "doc":
  4231. // U.MD.D.I.isRoom();
  4232. _formdiv = new U.UF.UI.form(
  4233. "协同文档",
  4234. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4235. "id": "doc",
  4236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4237. "onresize": function () { }
  4238. }, {
  4239. closecallback: function () { }
  4240. }, { "style": { "height": "36px" } }).form; //创建窗体
  4241. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4242. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4243. })
  4244. _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); } }
  4245. break;
  4246. case "study":
  4247. _formdiv = new U.UF.UI.form(
  4248. "课程中心",
  4249. $$("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
  4250. "id": "study",
  4251. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4252. "onresize": function () { }
  4253. }, {
  4254. closecallback: function () { }
  4255. }, { "style": { "height": "36px" } }).form; //创建窗体
  4256. _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); } }
  4257. break;
  4258. case "mindNetwork": //好友打开
  4259. _formdiv = new U.UF.UI.form(
  4260. "思维网格",
  4261. $$("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 }), {
  4262. "id": "mindNetwork",
  4263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4264. "onresize": function () { }
  4265. }, {
  4266. closecallback: function () { }
  4267. }, { "style": { "height": "36px" } }).form; //创建窗体
  4268. _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); } }
  4269. break;
  4270. case "train": //好友打开
  4271. _formdiv = new U.UF.UI.form(
  4272. "训练平台",
  4273. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4274. "id": "train",
  4275. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4276. "onresize": function () { }
  4277. }, {
  4278. closecallback: function () { }
  4279. }, { "style": { "height": "36px" } }).form; //创建窗体
  4280. _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); } }
  4281. break;
  4282. case "sys":
  4283. _formdiv = new U.UF.UI.form(
  4284. "目标管理",
  4285. $$("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 }), {
  4286. "id": "sys",
  4287. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4288. "onresize": function () { }
  4289. }, {
  4290. closecallback: function () { }
  4291. }, { "style": { "height": "36px" } }).form; //创建窗体
  4292. _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); } }
  4293. break;
  4294. case "courseDesign":
  4295. _formdiv = new U.UF.UI.form(
  4296. "项目设计",
  4297. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4298. "id": "courseDesign",
  4299. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4300. "onresize": function () { }
  4301. }, {
  4302. closecallback: function () { }
  4303. }, { "style": { "height": "36px" } }).form; //创建窗体
  4304. _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); } }
  4305. break;
  4306. }
  4307. } else if (!_type) {
  4308. switch (str) {
  4309. case "my":
  4310. _formdiv = new U.UF.UI.form(
  4311. "我的资料",
  4312. $$("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 }), {
  4313. "id": "my",
  4314. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4315. "onresize": function () { }
  4316. }, {
  4317. closecallback: function () { }
  4318. }, { "style": { "height": "36px" } }).form; //创建窗体
  4319. _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); } }
  4320. break;
  4321. }
  4322. }
  4323. switch (str) {
  4324. // AIprogram2 AI体验 aihub.cocorobo.cn
  4325. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4326. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4327. case "formulaEdi": //公式编辑
  4328. _formdiv = new U.UF.UI.form(
  4329. "公式编辑",
  4330. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4331. "id": "formulaEdi",
  4332. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4333. "onresize": function () { }
  4334. }, {
  4335. closecallback: function () { }
  4336. }, { "style": { "height": "36px" } }).form; //创建窗体
  4337. _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); } }
  4338. break;
  4339. case "molStr": //分子结构
  4340. _formdiv = new U.UF.UI.form(
  4341. "分子结构",
  4342. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4343. "id": "molStr",
  4344. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4345. "onresize": function () { }
  4346. }, {
  4347. closecallback: function () { }
  4348. }, { "style": { "height": "36px" } }).form; //创建窗体
  4349. _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); } }
  4350. break;
  4351. case "timeAxis": //时间轴
  4352. _formdiv = new U.UF.UI.form(
  4353. "时间轴",
  4354. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4355. "id": "timeAxis",
  4356. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4357. "onresize": function () { }
  4358. }, {
  4359. closecallback: function () { }
  4360. }, { "style": { "height": "36px" } }).form; //创建窗体
  4361. _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); } }
  4362. break;
  4363. case "AIprogram2": //AI体验
  4364. _formdiv = new U.UF.UI.form(
  4365. "AI体验",
  4366. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4367. "id": "AIprogram2",
  4368. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4369. "onresize": function () { }
  4370. }, {
  4371. closecallback: function () { }
  4372. }, { "style": { "height": "36px" } }).form; //创建窗体
  4373. _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); } }
  4374. break;
  4375. case "Pythonprogram": //python编程
  4376. _formdiv = new U.UF.UI.form(
  4377. "Python编程",
  4378. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4379. "id": "Pythonprogram",
  4380. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4381. "onresize": function () { }
  4382. }, {
  4383. closecallback: function () { }
  4384. }, { "style": { "height": "36px" } }).form; //创建窗体
  4385. _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); } }
  4386. break;
  4387. case "AIprogram": //ai编程
  4388. _formdiv = new U.UF.UI.form(
  4389. "AI编程平台",
  4390. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4391. "id": "AIprogram",
  4392. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4393. "onresize": function () { }
  4394. }, {
  4395. closecallback: function () { }
  4396. }, { "style": { "height": "36px" } }).form; //创建窗体
  4397. _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); } }
  4398. break;
  4399. case "CocoPi": //CocoPi
  4400. _formdiv = new U.UF.UI.form(
  4401. "CocoPi",
  4402. $$("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" }), {
  4403. "id": "CocoPi",
  4404. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4405. "onresize": function () { }
  4406. }, {
  4407. closecallback: function () { }
  4408. }, { "style": { "height": "36px" } }).form; //创建窗体
  4409. _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); } }
  4410. break;
  4411. case "Wood": //Wood
  4412. _formdiv = new U.UF.UI.form(
  4413. "海龟编程",
  4414. $$("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/" }), {
  4415. "id": "Wood",
  4416. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4417. "onresize": function () { }
  4418. }, {
  4419. closecallback: function () { }
  4420. }, { "style": { "height": "36px" } }).form; //创建窗体
  4421. _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); } }
  4422. break;
  4423. case "car": //模拟驾驶
  4424. _formdiv = new U.UF.UI.form(
  4425. "模拟驾驶",
  4426. $$("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/" }), {
  4427. "id": "car",
  4428. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4429. "onresize": function () { }
  4430. }, {
  4431. closecallback: function () { }
  4432. }, { "style": { "height": "36px" } }).form; //创建窗体
  4433. _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); } }
  4434. break;
  4435. case "lineSearch": //路径搜索
  4436. _formdiv = new U.UF.UI.form(
  4437. "路径搜索",
  4438. $$("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/" }), {
  4439. "id": "lineSearch",
  4440. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4441. "onresize": function () { }
  4442. }, {
  4443. closecallback: function () { }
  4444. }, { "style": { "height": "36px" } }).form; //创建窗体
  4445. _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); } }
  4446. break;
  4447. case "deepLearning": //深度学习
  4448. _formdiv = new U.UF.UI.form(
  4449. "深度学习",
  4450. $$("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/#" }), {
  4451. "id": "deepLearning",
  4452. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4453. "onresize": function () { }
  4454. }, {
  4455. closecallback: function () { }
  4456. }, { "style": { "height": "36px" } }).form; //创建窗体
  4457. _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); } }
  4458. break;
  4459. case "allHistory": //深度学习
  4460. _formdiv = new U.UF.UI.form(
  4461. "全历史",
  4462. $$("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/" }), {
  4463. "id": "allHistory",
  4464. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4465. "onresize": function () { }
  4466. }, {
  4467. closecallback: function () { }
  4468. }, { "style": { "height": "36px" } }).form; //创建窗体
  4469. _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); } }
  4470. break;
  4471. case "chatPDF": //ai编程
  4472. _formdiv = new U.UF.UI.form(
  4473. "chatPDF",
  4474. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4475. "id": "chatPDF",
  4476. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4477. "onresize": function () { }
  4478. }, {
  4479. closecallback: function () { }
  4480. }, { "style": { "height": "36px" } }).form; //创建窗体
  4481. _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); } }
  4482. break;
  4483. case "resources": //国家教育
  4484. _formdiv = new U.UF.UI.form(
  4485. "国家教育",
  4486. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4487. "id": "resources",
  4488. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4489. "onresize": function () { }
  4490. }, {
  4491. closecallback: function () { }
  4492. }, { "style": { "height": "36px" } }).form; //创建窗体
  4493. _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); } }
  4494. break;
  4495. case "codeEdit": //源码编辑
  4496. _formdiv = new U.UF.UI.form(
  4497. "源码编辑",
  4498. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4499. "id": "codeEdit",
  4500. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4501. "onresize": function () { }
  4502. }, {
  4503. closecallback: function () { }
  4504. }, { "style": { "height": "36px" } }).form; //创建窗体
  4505. _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); } }
  4506. break; //
  4507. case "MindMap": //MindMap
  4508. _formdiv = new U.UF.UI.form(
  4509. "MindMap",
  4510. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4511. "id": "MindMap",
  4512. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4513. "onresize": function () { }
  4514. }, {
  4515. closecallback: function () { }
  4516. }, { "style": { "height": "36px" } }).form; //创建窗体
  4517. _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); } }
  4518. break;
  4519. case "netWorkPanel": //netWorkPanel
  4520. _formdiv = new U.UF.UI.form(
  4521. "netWorkPanel",
  4522. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4523. "id": "netWorkPanel",
  4524. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4525. "onresize": function () { }
  4526. }, {
  4527. closecallback: function () { }
  4528. }, { "style": { "height": "36px" } }).form; //创建窗体
  4529. _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); } }
  4530. break;
  4531. case "GeoGebra": //GeoGebra
  4532. _formdiv = new U.UF.UI.form(
  4533. "GeoGebra",
  4534. $$("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" }), {
  4535. "id": "GeoGebra",
  4536. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4537. "onresize": function () { }
  4538. }, {
  4539. closecallback: function () { }
  4540. }, { "style": { "height": "36px" } }).form; //创建窗体
  4541. _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); } }
  4542. break;
  4543. case "translation": //翻译
  4544. _formdiv = new U.UF.UI.form(
  4545. "翻译",
  4546. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4547. "id": "translation",
  4548. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4549. "onresize": function () { }
  4550. }, {
  4551. closecallback: function () { }
  4552. }, { "style": { "height": "36px" } }).form; //创建窗体
  4553. _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); } }
  4554. break;
  4555. case "mohe": //魔盒
  4556. _formdiv = new U.UF.UI.form(
  4557. "魔盒识字",
  4558. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4559. "id": "mohe",
  4560. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4561. "onresize": function () { }
  4562. }, {
  4563. closecallback: function () { }
  4564. }, { "style": { "height": "36px" } }).form; //创建窗体
  4565. _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); } }
  4566. break;
  4567. case "24game": //24点
  4568. _formdiv = new U.UF.UI.form(
  4569. "24点",
  4570. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4571. "id": "24game",
  4572. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4573. "onresize": function () { }
  4574. }, {
  4575. closecallback: function () { }
  4576. }, { "style": { "height": "36px" } }).form; //创建窗体
  4577. _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); } }
  4578. break;
  4579. case "case":
  4580. _formdiv = new U.UF.UI.form(
  4581. "课程进展",
  4582. $$("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 }), {
  4583. "id": "case",
  4584. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4585. "onresize": function () { }
  4586. }, {
  4587. closecallback: function () { }
  4588. }, { "style": { "height": "36px" } }).form; //创建窗体
  4589. _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); } }
  4590. break;
  4591. case "snf":
  4592. _formdiv = new U.UF.UI.form(
  4593. "赛诺梵",
  4594. $$("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" }), {
  4595. "id": "snf",
  4596. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4597. "onresize": function () { }
  4598. }, {
  4599. closecallback: function () { }
  4600. }, { "style": { "height": "36px" } }).form; //创建窗体
  4601. _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); } }
  4602. break;
  4603. case "hanFamily":
  4604. _formdiv = new U.UF.UI.form(
  4605. "汉字家族",
  4606. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4607. "id": "hanFamily",
  4608. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4609. "onresize": function () { }
  4610. }, {
  4611. closecallback: function () { }
  4612. }, { "style": { "height": "36px" } }).form; //创建窗体
  4613. _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); } }
  4614. break;
  4615. case "hanClassics":
  4616. _formdiv = new U.UF.UI.form(
  4617. "国学经典",
  4618. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4619. "id": "hanClassics",
  4620. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4621. "onresize": function () { }
  4622. }, {
  4623. closecallback: function () { }
  4624. }, { "style": { "height": "36px" } }).form; //创建窗体
  4625. _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); } }
  4626. break;
  4627. case "hanTraining":
  4628. _formdiv = new U.UF.UI.form(
  4629. "笔画训练",
  4630. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4631. "id": "hanTraining",
  4632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4633. "onresize": function () { }
  4634. }, {
  4635. closecallback: function () { }
  4636. }, { "style": { "height": "36px" } }).form; //创建窗体
  4637. _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); } }
  4638. break;
  4639. case "hanClass":
  4640. _formdiv = new U.UF.UI.form(
  4641. "书法课堂",
  4642. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4643. "id": "hanClass",
  4644. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4645. "onresize": function () { }
  4646. }, {
  4647. closecallback: function () { }
  4648. }, { "style": { "height": "36px" } }).form; //创建窗体
  4649. _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); } }
  4650. break;
  4651. case "han":
  4652. _formdiv = new U.UF.UI.form(
  4653. "汉字宫",
  4654. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4655. "id": "han",
  4656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4657. "onresize": function () { }
  4658. }, {
  4659. closecallback: function () { }
  4660. }, { "style": { "height": "36px" } }).form; //创建窗体
  4661. _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); } }
  4662. break;
  4663. case "projectGM": //课程管理
  4664. _formdiv = new U.UF.UI.form(
  4665. "课程管理",
  4666. $$("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 }), {
  4667. "id": "projectGM",
  4668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4669. "onresize": function () { }
  4670. }, {
  4671. closecallback: function () { }
  4672. }, { "style": { "height": "36px" } }).form; //创建窗体
  4673. _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); } }
  4674. break;
  4675. case "studyGM": //课程中心
  4676. _formdiv = new U.UF.UI.form(
  4677. "课程中心",
  4678. $$("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
  4679. "id": "study",
  4680. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4681. "onresize": function () { }
  4682. }, {
  4683. closecallback: function () { }
  4684. }, { "style": { "height": "36px" } }).form; //创建窗体
  4685. _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); } }
  4686. break;
  4687. // studentGM
  4688. case "studentGM": //学生管理
  4689. _formdiv = new U.UF.UI.form(
  4690. "学生管理",
  4691. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  4692. "id": "studentGM",
  4693. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4694. "onresize": function () { }
  4695. }, {
  4696. closecallback: function () { }
  4697. }, { "style": { "height": "36px" } }).form; //创建窗体
  4698. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4699. break;
  4700. case "evaluateGM": //学生评价
  4701. _formdiv = new U.UF.UI.form(
  4702. "学生评价",
  4703. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4704. "id": "evaluateGM",
  4705. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4706. "onresize": function () { }
  4707. }, {
  4708. closecallback: function () { }
  4709. }, { "style": { "height": "36px" } }).form; //创建窗体
  4710. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4711. break;
  4712. // classGM
  4713. case "classGM": //班级管理
  4714. _formdiv = new U.UF.UI.form(
  4715. "班级管理",
  4716. $$("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 }), {
  4717. "id": "classGM",
  4718. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4719. "onresize": function () { }
  4720. }, {
  4721. closecallback: function () { }
  4722. }, { "style": { "height": "36px" } }).form; //创建窗体
  4723. _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); } }
  4724. break;
  4725. // dataGM
  4726. case "dataGM":
  4727. _formdiv = new U.UF.UI.form(
  4728. "我的资料",
  4729. $$("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 }), {
  4730. "id": "dataGM",
  4731. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4732. "onresize": function () { }
  4733. }, {
  4734. closecallback: function () { }
  4735. }, { "style": { "height": "36px" } }).form; //创建窗体
  4736. _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); } }
  4737. break;
  4738. // caseGM
  4739. case "caseGM": //课程进展
  4740. _formdiv = new U.UF.UI.form(
  4741. "课程进展",
  4742. $$("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 }), {
  4743. "id": "caseGM",
  4744. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4745. "onresize": function () { }
  4746. }, {
  4747. closecallback: function () { }
  4748. }, { "style": { "height": "36px" } }).form; //创建窗体
  4749. _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); } }
  4750. break;
  4751. // meterialGM
  4752. case "meterialGM": //素材库
  4753. _formdiv = new U.UF.UI.form(
  4754. "素材库",
  4755. $$("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 }), {
  4756. "id": "meterialGM",
  4757. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4758. "onresize": function () { }
  4759. }, {
  4760. closecallback: function () { }
  4761. }, { "style": { "height": "36px" } }).form; //创建窗体
  4762. _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); } }
  4763. break;
  4764. // evaluateSGM
  4765. case "evaluateSGM": //我的评价
  4766. _formdiv = new U.UF.UI.form(
  4767. "我的评价",
  4768. $$("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 }), {
  4769. "id": "evaluateSGM",
  4770. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4771. "onresize": function () { }
  4772. }, {
  4773. closecallback: function () { }
  4774. }, { "style": { "height": "36px" } }).form; //创建窗体
  4775. _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); } }
  4776. break;
  4777. case "jupyter": //jupyter
  4778. _formdiv = new U.UF.UI.form(
  4779. "jupyter",
  4780. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4781. "id": "jupyter",
  4782. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4783. "onresize": function () { }
  4784. }, {
  4785. closecallback: function () { }
  4786. }, { "style": { "height": "36px" } }).form; //创建窗体
  4787. _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); } }
  4788. break;
  4789. case "number": //数字实验室
  4790. _formdiv = new U.UF.UI.form(
  4791. "数字实验室",
  4792. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  4793. "id": "number",
  4794. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4795. "onresize": function () { }
  4796. }, {
  4797. closecallback: function () { }
  4798. }, { "style": { "height": "36px" } }).form; //创建窗体
  4799. _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); } }
  4800. break;
  4801. case "studentCourse": //项目管理 学生
  4802. _formdiv = new U.UF.UI.form(
  4803. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4804. $$("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 }), {
  4805. "id": "studentCourse",
  4806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4807. "onresize": function () { }
  4808. }, {
  4809. closecallback: function () { }
  4810. }, { "style": { "height": "36px" } }).form; //创建窗体
  4811. _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); } }
  4812. break;
  4813. case "studentCourseS": //项目管理 老师
  4814. _formdiv = new U.UF.UI.form(
  4815. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4816. $$("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 }), {
  4817. "id": "studentCourseS",
  4818. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4819. "onresize": function () { }
  4820. }, {
  4821. closecallback: function () { }
  4822. }, { "style": { "height": "36px" } }).form; //创建窗体
  4823. _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); } }
  4824. break;
  4825. case "studentIndex": //项目中心
  4826. _formdiv = new U.UF.UI.form(
  4827. "项目中心",
  4828. $$("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 }), {
  4829. "id": "studentIndex",
  4830. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4831. "onresize": function () { }
  4832. }, {
  4833. closecallback: function () { }
  4834. }, { "style": { "height": "36px" } }).form; //创建窗体
  4835. _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); } }
  4836. break;
  4837. case "CaseDesignS":
  4838. _formdiv = new U.UF.UI.form(
  4839. "项目进展",
  4840. $$("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 }), {
  4841. "id": "case",
  4842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4843. "onresize": function () { }
  4844. }, {
  4845. closecallback: function () { }
  4846. }, { "style": { "height": "36px" } }).form; //创建窗体
  4847. _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); } }
  4848. break;
  4849. case "tcStudent": //腾讯学生管理
  4850. _formdiv = new U.UF.UI.form(
  4851. "学生管理",
  4852. $$("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 }), {
  4853. "id": "tcStudent",
  4854. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4855. "onresize": function () { }
  4856. }, {
  4857. closecallback: function () { }
  4858. }, { "style": { "height": "36px" } }).form; //创建窗体
  4859. _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); } }
  4860. break;
  4861. case "tcSchool": //腾讯学校管理
  4862. _formdiv = new U.UF.UI.form(
  4863. "学校管理",
  4864. $$("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 }), {
  4865. "id": "tcSchool",
  4866. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4867. "onresize": function () { }
  4868. }, {
  4869. closecallback: function () { }
  4870. }, { "style": { "height": "36px" } }).form; //创建窗体
  4871. _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); } }
  4872. break;
  4873. case "tcTeacher": //腾讯学校管理
  4874. _formdiv = new U.UF.UI.form(
  4875. "教师管理",
  4876. $$("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 }), {
  4877. "id": "tcTeacher",
  4878. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4879. "onresize": function () { }
  4880. }, {
  4881. closecallback: function () { }
  4882. }, { "style": { "height": "36px" } }).form; //创建窗体
  4883. _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); } }
  4884. break;
  4885. case "tcData": //腾讯我的资料
  4886. _formdiv = new U.UF.UI.form(
  4887. "我的资料",
  4888. $$("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 }), {
  4889. "id": "tcData",
  4890. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4891. "onresize": function () { }
  4892. }, {
  4893. closecallback: function () { }
  4894. }, { "style": { "height": "36px" } }).form; //创建窗体
  4895. _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); } }
  4896. break;
  4897. case "tcNotice": //腾讯消息通知
  4898. _formdiv = new U.UF.UI.form(
  4899. "消息通知",
  4900. $$("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 }), {
  4901. "id": "tcNotice",
  4902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4903. "onresize": function () { }
  4904. }, {
  4905. closecallback: function () { }
  4906. }, { "style": { "height": "36px" } }).form; //创建窗体
  4907. _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); } }
  4908. break;
  4909. case "myReport": //好友打开
  4910. _formdiv = new U.UF.UI.form(
  4911. "我的评价",
  4912. $$("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 }), {
  4913. "id": "myReport",
  4914. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4915. "onresize": function () { }
  4916. }, {
  4917. closecallback: function () { }
  4918. }, { "style": { "height": "36px" } }).form; //创建窗体
  4919. _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); } }
  4920. break;
  4921. case "learnAna": //好友打开
  4922. _formdiv = new U.UF.UI.form(
  4923. "学习分析",
  4924. $$("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 }), {
  4925. "id": "learnAna",
  4926. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4927. "onresize": function () { }
  4928. }, {
  4929. closecallback: function () { }
  4930. }, { "style": { "height": "36px" } }).form; //创建窗体
  4931. _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); } }
  4932. break;
  4933. case "AIChat": //AI共创
  4934. _formdiv = new U.UF.UI.form(
  4935. "AI共创",
  4936. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4937. "id": "AIChat",
  4938. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4939. "onresize": function () { }
  4940. }, {
  4941. istop: true,
  4942. closecallback: function () { $("#aichat_icon").remove(); },
  4943. narrowcallback: function () {
  4944. if (!$("#aichat_icon")[0]) {
  4945. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4946. }
  4947. },
  4948. }, { "style": { "height": "36px" } }).form; //创建窗体
  4949. _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); } }
  4950. break;
  4951. case "ainew": //AI共创
  4952. _formdiv = new U.UF.UI.form(
  4953. "AI协同",
  4954. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4955. "id": "ainew",
  4956. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4957. "onresize": function () { }
  4958. }, {
  4959. closecallback: function () { }
  4960. }, { "style": { "height": "36px" } }).form; //创建窗体
  4961. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4962. break;
  4963. case "gpt4": //gpt4
  4964. _formdiv = new U.UF.UI.form(
  4965. "AI助手",
  4966. $$("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 }), {
  4967. "id": "gpt4",
  4968. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4969. "onresize": function () { }
  4970. }, {
  4971. closecallback: function () { }
  4972. }, { "style": { "height": "36px" } }).form; //创建窗体
  4973. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4974. break;
  4975. case "aigpt": //gpt4
  4976. _formdiv = new U.UF.UI.form(
  4977. "AI助手+",
  4978. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4979. "id": "aigpt",
  4980. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4981. "onresize": function () { }
  4982. }, {
  4983. closecallback: function () { }
  4984. }, { "style": { "height": "36px" } }).form; //创建窗体
  4985. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4986. break;
  4987. case "futureClass": //AI共创
  4988. _formdiv = new U.UF.UI.form(
  4989. "协同建构",
  4990. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  4991. "id": "synergyCourse",
  4992. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4993. "onresize": function () { }
  4994. }, {
  4995. closecallback: function () {
  4996. $("iframe", _formdiv)[0].contentWindow.loginout();
  4997. }
  4998. }, { "style": { "height": "36px" } }).form; //创建窗体
  4999. _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); } }
  5000. break;
  5001. case "aiagent": //ai agent
  5002. _formdiv = new U.UF.UI.form(
  5003. "AI Agent",
  5004. $$("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" }), {
  5005. "id": "AIAgent",
  5006. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5007. "onresize": function () { }
  5008. }, {
  5009. closecallback: function () { }
  5010. }, { "style": { "height": "36px" } }).form; //创建窗体
  5011. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5012. break;
  5013. case "dataBoard": //数据看板
  5014. _formdiv = new U.UF.UI.form(
  5015. "数据看板",
  5016. $$("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 }), {
  5017. "id": "dataBoard",
  5018. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5019. "onresize": function () { }
  5020. }, {
  5021. closecallback: function () { }
  5022. }, { "style": { "height": "36px" } }).form; //创建窗体
  5023. _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); } }
  5024. break;
  5025. case "dataBoardSies": //数据融合
  5026. _formdiv = new U.UF.UI.form(
  5027. "数据融合",
  5028. $$("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 }), {
  5029. "id": "dataBoardSies",
  5030. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5031. "onresize": function () { }
  5032. }, {
  5033. closecallback: function () { }
  5034. }, { "style": { "height": "36px" } }).form; //创建窗体
  5035. _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); } }
  5036. break;
  5037. case "dataBoardNew": //数据看板
  5038. _formdiv = new U.UF.UI.form(
  5039. "综合看板",
  5040. $$("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 }), {
  5041. "id": "dataBoardNew",
  5042. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5043. "onresize": function () { }
  5044. }, {
  5045. closecallback: function () { }
  5046. }, { "style": { "height": "36px" } }).form; //创建窗体
  5047. _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); } }
  5048. break;
  5049. case "dataBoardTest": //数据看板
  5050. _formdiv = new U.UF.UI.form(
  5051. "评测看板",
  5052. $$("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 }), {
  5053. "id": "dataBoardTest",
  5054. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5055. "onresize": function () { }
  5056. }, {
  5057. closecallback: function () { }
  5058. }, { "style": { "height": "36px" } }).form; //创建窗体
  5059. _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); } }
  5060. break;
  5061. case "AIAnalyse": //AI共创
  5062. _formdiv = new U.UF.UI.form(
  5063. "AI分析",
  5064. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5065. "id": "AIAnalyse",
  5066. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5067. "onresize": function () { }
  5068. }, {
  5069. closecallback: function () { }
  5070. }, { "style": { "height": "36px" } }).form; //创建窗体
  5071. _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); } }
  5072. break;
  5073. case "studioCourse": //AI共创
  5074. _formdiv = new U.UF.UI.form(
  5075. "工作管理",
  5076. $$("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 }), {
  5077. "id": "studioCourse",
  5078. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5079. "onresize": function () { }
  5080. }, {
  5081. closecallback: function () { }
  5082. }, { "style": { "height": "36px" } }).form; //创建窗体
  5083. _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); } }
  5084. break;
  5085. case "studioIndex": //AI共创
  5086. _formdiv = new U.UF.UI.form(
  5087. "工作中心",
  5088. $$("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 }), {
  5089. "id": "studioIndex",
  5090. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5091. "onresize": function () { }
  5092. }, {
  5093. closecallback: function () { }
  5094. }, { "style": { "height": "36px" } }).form; //创建窗体
  5095. _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); } }
  5096. break;
  5097. case "source":
  5098. _formdiv = new U.UF.UI.form(
  5099. "教学资源",
  5100. $$("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 }), {
  5101. "id": "source",
  5102. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5103. "onresize": function () { }
  5104. }, {
  5105. closecallback: function () { }
  5106. }, { "style": { "height": "36px" } }).form; //创建窗体
  5107. _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); } }
  5108. break;
  5109. case "testTeacher":
  5110. _formdiv = new U.UF.UI.form(
  5111. "教师管理",
  5112. $$("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 }), {
  5113. "id": "testTeacher",
  5114. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5115. "onresize": function () { }
  5116. }, {
  5117. closecallback: function () { }
  5118. }, { "style": { "height": "36px" } }).form; //创建窗体
  5119. _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); } }
  5120. break;
  5121. case "testStudent":
  5122. _formdiv = new U.UF.UI.form(
  5123. "教师中心",
  5124. $$("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 }), {
  5125. "id": "testStudent",
  5126. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5127. "onresize": function () { }
  5128. }, {
  5129. closecallback: function () { }
  5130. }, { "style": { "height": "36px" } }).form; //创建窗体
  5131. _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); } }
  5132. break;
  5133. case "testTeacherSies":
  5134. _formdiv = new U.UF.UI.form(
  5135. "教师管理",
  5136. $$("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 }), {
  5137. "id": "testTeacherSies",
  5138. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5139. "onresize": function () { }
  5140. }, {
  5141. closecallback: function () { }
  5142. }, { "style": { "height": "36px" } }).form; //创建窗体
  5143. _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); } }
  5144. break;
  5145. case "testStudentSies":
  5146. _formdiv = new U.UF.UI.form(
  5147. "教师中心",
  5148. $$("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 }), {
  5149. "id": "testStudentSies",
  5150. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5151. "onresize": function () { }
  5152. }, {
  5153. closecallback: function () { }
  5154. }, { "style": { "height": "36px" } }).form; //创建窗体
  5155. _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); } }
  5156. break;
  5157. case "ytpbl": //消息通知
  5158. _formdiv = new U.UF.UI.form(
  5159. "案例征集",
  5160. $$("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 }), {
  5161. "id": "ytpbl",
  5162. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5163. "onresize": function () { }
  5164. }, {
  5165. closecallback: function () { }
  5166. }, { "style": { "height": "36px" } }).form; //创建窗体
  5167. _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); } }
  5168. // 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");
  5169. break;
  5170. case "aiCourseResource": //人工智能窗体
  5171. _formdiv = new U.UF.UI.form(
  5172. false,
  5173. $$("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 }), {
  5174. "id": "aiCourseResource",
  5175. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5176. "onresize": function () { },
  5177. "isdrag": false,
  5178. }, {
  5179. closecallback: function () { }
  5180. }, { "style": { "height": "36px" } }).form; //创建窗体
  5181. _taskbar = ''
  5182. break;
  5183. case "szdjgCocooroboX": //图形化编程
  5184. _formdiv = new U.UF.UI.form(
  5185. "图形化编程",
  5186. $$("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" }), {
  5187. "id": "szdjgCocooroboX",
  5188. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5189. "onresize": function () { }
  5190. }, {
  5191. closecallback: function () { }
  5192. }, { "style": { "height": "36px" } }).form; //创建窗体
  5193. _taskbar = ''
  5194. break;
  5195. case "szdjgPython": //python编程
  5196. _formdiv = new U.UF.UI.form(
  5197. "Python编程",
  5198. $$("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" }), {
  5199. "id": "szdjgPython",
  5200. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5201. "onresize": function () { }
  5202. }, {
  5203. closecallback: function () { }
  5204. }, { "style": { "height": "36px" } }).form; //创建窗体
  5205. _taskbar = ''
  5206. break;
  5207. case "Record":
  5208. _formdiv = new U.UF.UI.form(
  5209. "观察记录",
  5210. $$("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 }), {
  5211. "id": "Record",
  5212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5213. "onresize": function () { }
  5214. }, {
  5215. closecallback: function () { }
  5216. }, { "style": { "height": "36px" } }).form; //创建窗体
  5217. _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); } }
  5218. break;
  5219. case "aigptCourse":
  5220. _formdiv = new U.UF.UI.form(
  5221. "AI智能体",
  5222. $$("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' }), {
  5223. "id": "aigptCourse",
  5224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5225. "onresize": function () { }
  5226. }, {
  5227. closecallback: function () { }
  5228. }, { "style": { "height": "36px" } }).form; //创建窗体
  5229. _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); } }
  5230. break;
  5231. case "classroomObservation":
  5232. _formdiv = new U.UF.UI.form(
  5233. "课堂观察",
  5234. $$("iframe", { "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 }), {
  5235. "id": "classroomObservation",
  5236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5237. "onresize": function () { }
  5238. }, {
  5239. closecallback: function () { }
  5240. }, { "style": { "height": "36px" } }).form; //创建窗体
  5241. _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); } }
  5242. break;
  5243. }
  5244. //U.MD.D.I.openClick(str);
  5245. //如果有任务栏信息
  5246. if (_taskbar) {
  5247. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5248. }
  5249. }
  5250. // U.MD.D.I.openClick = function(str){
  5251. // var click = '';
  5252. // switch(str){
  5253. // case 'friend':
  5254. // click = '我的好友';
  5255. // break;
  5256. // case 'domain':
  5257. // click = '域名管理';
  5258. // break;
  5259. // case 'disk':
  5260. // click = '我的云盘';
  5261. // break;
  5262. // case 'word':
  5263. // click = 'Word';
  5264. // break;
  5265. // case 'excel':
  5266. // click = 'Execl';
  5267. // break;
  5268. // case 'txt':
  5269. // click = '文本文件';
  5270. // break;
  5271. // case 'lookupFriend':
  5272. // click = '查找好友';
  5273. // break;
  5274. // case 'ftp':
  5275. // click = 'FTP';
  5276. // break;
  5277. // case 'group':
  5278. // click = '群组';
  5279. // break;
  5280. // case 'set':
  5281. // click = '我的设置';
  5282. // break;
  5283. // case 'systemSet':
  5284. // click = '系统设置';
  5285. // break;
  5286. // case 'boomYun':
  5287. // click = '互联办公';
  5288. // break;
  5289. // case 'xz':
  5290. // click = '云端下载';
  5291. // break;
  5292. // case 'client':
  5293. // click = '有思浏览器';
  5294. // break;
  5295. // case 'backEndProgramming':
  5296. // click = '在线后台编程';
  5297. // break;
  5298. // case 'frontEndProgramming':
  5299. // click = '在线前端编程';
  5300. // break;
  5301. // default: break;
  5302. // }
  5303. // if(U.MD.D.I.Ip && click){
  5304. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5305. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5306. // })
  5307. // }
  5308. // }
  5309. /**
  5310. *函数作用:ajax简易函数,使用post格式
  5311. *@param url {data} 后台地址
  5312. *@param data {data} 参数json
  5313. *@param fn {data} 回调函数
  5314. *
  5315. */
  5316. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5317. // var xhr = new XMLHttpRequest();
  5318. // xhr.open("GET",url,true);
  5319. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5320. // xhr.onreadystatechange = function(){
  5321. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5322. // fn.call(this,xhr.responseText);
  5323. // }
  5324. // };
  5325. // xhr.send();
  5326. // }
  5327. /*判断是否是内网IP*/
  5328. // U.MD.D.I.isInnerIPFn = function(str){
  5329. // var curPageUrl = str;
  5330. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5331. // curPageUrl =curPageUrl.replace(reg1,'');
  5332. // // console.log('curPageUrl-1 '+curPageUrl);
  5333. // var reg2 = /\:+/g;//替换冒号为一点
  5334. // curPageUrl =curPageUrl.replace(reg2,'.');
  5335. // // console.log('curPageUrl-2 '+curPageUrl);
  5336. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5337. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5338. // if(curPageUrl[2] != '16'){
  5339. // return ipAddress;
  5340. // }else{
  5341. // return false;
  5342. // }
  5343. // }
  5344. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5345. // //compatibility for firefox and chrome
  5346. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5347. // var pc = new myPeerConnection({
  5348. // iceServers: []
  5349. // }),
  5350. // noop = function() {},
  5351. // localIPs = {},
  5352. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5353. // key;
  5354. // function iterateIP(ip) {
  5355. // if (!localIPs[ip]) onNewIP(ip);
  5356. // localIPs[ip] = true;
  5357. // }
  5358. // //create a bogus data channel
  5359. // pc.createDataChannel("");
  5360. // // create offer and set local description
  5361. // pc.createOffer().then(function(sdp) {
  5362. // sdp.sdp.split('\n').forEach(function(line) {
  5363. // if (line.indexOf('candidate') < 0) return;
  5364. // line.match(ipRegex).forEach(iterateIP);
  5365. // });
  5366. // pc.setLocalDescription(sdp, noop, noop);
  5367. // }).catch(function(reason) {
  5368. // // An error occurred, so handle the failure to connect
  5369. // });
  5370. // //sten for candidate events
  5371. // pc.onicecandidate = function(ice) {
  5372. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5373. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5374. // };
  5375. // }
  5376. // U.MD.D.I.getUserIpBool = function(callback){
  5377. // U.MD.D.I.getUserIP(function(ip){
  5378. // alert("Got IP! :" + ip);
  5379. // });
  5380. //}
  5381. //#endregion
  5382. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5383. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5384. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5385. _userinfo = US.userInfo, //登录用户信息
  5386. _userid = US.userInfo.userid //登录用户id
  5387. let _iframe;
  5388. let _cid = cid,
  5389. _stage = stage,
  5390. _task = task,
  5391. _tool = tool;
  5392. var _jie = $$("div", {
  5393. "style": {
  5394. "position": "absolute",
  5395. "bottom": "50px",
  5396. "right": "50px",
  5397. "zIndex": "9999",
  5398. "backgroundColor": "#2268bc",
  5399. "color": "#fff",
  5400. "padding": "12px 20px",
  5401. "cursor": "pointer",
  5402. "borderRadius": "4px",
  5403. },
  5404. "innerHTML": "提交作业"
  5405. })
  5406. let aTool = ''
  5407. let _loading = document.createElement('div')
  5408. _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;"
  5409. // _loading.id = "";
  5410. let _lchild = document.createElement('div')
  5411. let _limg = document.createElement('img')
  5412. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5413. _limg.style = "width: 26px;margin-right: 10px;"
  5414. _lchild.appendChild(_limg)
  5415. let _lspan = document.createElement('span')
  5416. _lspan.innerHTML = "上传中..."
  5417. _lchild.appendChild(_lspan)
  5418. _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%);"
  5419. _loading.appendChild(_lchild)
  5420. var _box = $$('div', {
  5421. "style": {
  5422. "position": "relative",
  5423. "width": "100%",
  5424. "height": "100%",
  5425. },
  5426. })
  5427. _box.appendChild(_loading)
  5428. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5429. switch (str) {
  5430. case "whiteboard":
  5431. aTool = 1;
  5432. _iframe = $$("iframe", {
  5433. "frameborder": "no",
  5434. "border": "0",
  5435. "scrolling ": "no",
  5436. "style": {
  5437. "cssText": "border:0;width:100%;height:100%"
  5438. },
  5439. "src": "https://iwb.cocorobo.cn/"
  5440. })
  5441. _box.appendChild(_iframe);
  5442. _box.appendChild(_jie);
  5443. _formdiv = new U.UF.UI.form(
  5444. "电子白板",
  5445. _box, {
  5446. "id": "whiteboard" + cid + stage + task + tool,
  5447. "style": {
  5448. "width": "90%",
  5449. "height": "90%",
  5450. "overflow": 'hidden'
  5451. },
  5452. "onresize": function () { }
  5453. }, {
  5454. closecallback: function () { }
  5455. }, {
  5456. "style": {
  5457. "height": "36px"
  5458. }
  5459. }).form; //创建窗体
  5460. _taskbar = {
  5461. "id": str + _formdiv.id,
  5462. "style": {
  5463. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5464. },
  5465. "name": "电子白板",
  5466. "forms": _formdiv,
  5467. "click": function () {
  5468. U.MD.D.I.openApplication(str, obj, info);
  5469. }
  5470. }
  5471. break;
  5472. case "mind":
  5473. aTool = 3;
  5474. _iframe = $$("iframe", {
  5475. "frameborder": "no",
  5476. "border": "0",
  5477. "scrolling ": "no",
  5478. "style": {
  5479. "cssText": "border:0;width:100%;height:100%"
  5480. },
  5481. "src": "/kityminder-editor/dist/index.html"
  5482. })
  5483. _box.appendChild(_iframe);
  5484. _box.appendChild(_jie);
  5485. _formdiv = new U.UF.UI.form(
  5486. "思维导图",
  5487. _box, { //"/jsmind/example/demo.html"
  5488. "id": "mind" + cid + stage + task + tool,
  5489. "style": {
  5490. "width": "90%",
  5491. "height": "90%",
  5492. "overflow": 'hidden'
  5493. },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, {
  5498. "style": {
  5499. "height": "36px"
  5500. }
  5501. }).form; //创建窗体
  5502. _taskbar = {
  5503. "id": str + _formdiv.id,
  5504. "style": {
  5505. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5506. },
  5507. "name": "思维导图",
  5508. "forms": _formdiv,
  5509. "click": function () {
  5510. U.MD.D.I.openApplication(str, obj, info);
  5511. }
  5512. }
  5513. break;
  5514. case "MindMap":
  5515. aTool = 3;
  5516. _iframe = $$("iframe", {
  5517. "frameborder": "no",
  5518. "border": "0",
  5519. "scrolling ": "no",
  5520. "style": {
  5521. "cssText": "border:0;width:100%;height:100%"
  5522. },
  5523. "src": "//cloud.cocorobo.cn/mind/"
  5524. })
  5525. _box.appendChild(_iframe);
  5526. _box.appendChild(_jie);
  5527. _formdiv = new U.UF.UI.form(
  5528. "思维导图",
  5529. _box, { //"/jsmind/example/demo.html"
  5530. "id": "mind" + cid + stage + task + tool,
  5531. "style": {
  5532. "width": "90%",
  5533. "height": "90%",
  5534. "overflow": 'hidden'
  5535. },
  5536. "onresize": function () { }
  5537. }, {
  5538. closecallback: function () { }
  5539. }, {
  5540. "style": {
  5541. "height": "36px"
  5542. }
  5543. }).form; //创建窗体
  5544. _taskbar = {
  5545. "id": str + _formdiv.id,
  5546. "style": {
  5547. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5548. },
  5549. "name": "思维导图",
  5550. "forms": _formdiv,
  5551. "click": function () {
  5552. U.MD.D.I.openApplication(str, obj, info);
  5553. }
  5554. }
  5555. break;
  5556. case "doc":
  5557. aTool = 6;
  5558. _iframe = $$("iframe", {
  5559. "frameborder": "no",
  5560. "border": "0",
  5561. "scrolling ": "no",
  5562. "style": {
  5563. "cssText": "border:0;width:100%;height:100%"
  5564. },
  5565. "src": "/Office/Word/WordEditArea.htm"
  5566. })
  5567. _box.appendChild(_iframe);
  5568. _box.appendChild(_jie);
  5569. _formdiv = new U.UF.UI.form(
  5570. "协同文档",
  5571. _box, {
  5572. "id": "doc" + cid + stage + task + tool,
  5573. "style": {
  5574. "width": "90%",
  5575. "height": "90%",
  5576. "overflow": 'hidden'
  5577. },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, {
  5582. "style": {
  5583. "height": "36px"
  5584. }
  5585. }).form; //创建窗体
  5586. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5587. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5588. })
  5589. _taskbar = {
  5590. "id": str + _formdiv.id,
  5591. "style": {
  5592. "backgroundImage": "url(/img/icon/doc.png)"
  5593. },
  5594. "name": "协同文档",
  5595. "forms": _formdiv,
  5596. "click": function () {
  5597. U.MD.D.I.openApplication(str, obj, info);
  5598. }
  5599. }
  5600. break;
  5601. case "mindNetwork": //好友打开
  5602. aTool = 7;
  5603. _iframe = $$("iframe", {
  5604. "webkitallowfullscreen": "",
  5605. "mozallowfullscreen": "",
  5606. "allowfullscreen": "",
  5607. "frameborder": "no",
  5608. "border": "0",
  5609. "scrolling ": "no",
  5610. "style": {
  5611. "cssText": "border:0; width:100%; height:100%;"
  5612. },
  5613. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5614. })
  5615. _box.appendChild(_iframe);
  5616. _box.appendChild(_jie);
  5617. _formdiv = new U.UF.UI.form(
  5618. "思维网格",
  5619. _box, {
  5620. "id": "mindNetwork" + cid + stage + task + tool,
  5621. "style": {
  5622. "width": "90%",
  5623. "height": "90%",
  5624. "overflow": 'hidden'
  5625. },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, {
  5630. "style": {
  5631. "height": "36px"
  5632. }
  5633. }).form; //创建窗体
  5634. _taskbar = {
  5635. "id": str + _formdiv.id,
  5636. "style": {
  5637. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5638. },
  5639. "name": "思维网格",
  5640. "forms": _formdiv,
  5641. "click": function () {
  5642. U.MD.D.I.openApplication(str, obj, info);
  5643. }
  5644. }
  5645. break;
  5646. case "courseDesign":
  5647. _iframe = $$("iframe", {
  5648. "webkitallowfullscreen": "",
  5649. "mozallowfullscreen": "",
  5650. "allowfullscreen": "",
  5651. "frameborder": "no",
  5652. "border": "0",
  5653. "scrolling ": "no",
  5654. "style": {
  5655. "cssText": "border:0; width:100%; height:100%;"
  5656. },
  5657. "src": "/course-design-vue"
  5658. })
  5659. _box.appendChild(_iframe);
  5660. _box.appendChild(_jie);
  5661. _formdiv = new U.UF.UI.form(
  5662. "项目设计",
  5663. _box, {
  5664. "id": "courseDesign" + cid + stage + task + tool,
  5665. "style": {
  5666. "width": "90%",
  5667. "height": "90%",
  5668. "overflow": 'hidden'
  5669. },
  5670. "onresize": function () { }
  5671. }, {
  5672. closecallback: function () { }
  5673. }, {
  5674. "style": {
  5675. "height": "36px"
  5676. }
  5677. }).form; //创建窗体
  5678. _taskbar = {
  5679. "id": str + _formdiv.id,
  5680. "style": {
  5681. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5682. },
  5683. "name": "项目设计",
  5684. "forms": _formdiv,
  5685. "click": function () {
  5686. U.MD.D.I.openApplication(str, obj, info);
  5687. }
  5688. }
  5689. break;
  5690. }
  5691. const script1 = document.createElement("script");
  5692. script1.type = "text/javascript";
  5693. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5694. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5695. const script2 = document.createElement("script");
  5696. script2.type = "text/javascript";
  5697. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5698. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5699. const script3 = document.createElement("script");
  5700. script3.type = "text/javascript";
  5701. script3.charset = "UTF-8";
  5702. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5703. const script4 = document.createElement("script");
  5704. script4.type = "text/javascript";
  5705. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5706. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5707. if (_iframe) {
  5708. if (str == 'doc') {
  5709. _iframe = _formdiv.querySelector('iframe')
  5710. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5711. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5712. _iframe.contentWindow.document.body.appendChild(script1);
  5713. _iframe.contentWindow.document.body.appendChild(script2);
  5714. // _iframe.contentWindow.document.body.appendChild(script3);
  5715. _iframe.contentWindow.document.body.appendChild(script4);
  5716. })
  5717. if (onloadListener) {
  5718. _iframe.contentDocument.location.reload()
  5719. } else {
  5720. _iframe.contentDocument.location.reload()
  5721. }
  5722. } else if (str == 'courseDesign') {
  5723. U.UF.DL.iframeLoad(_iframe, function () {
  5724. // _iframe.contentWindow.U.MD.O.W.load();
  5725. // _iframe.contentWindow.document.body.appendChild(script1);
  5726. _iframe.contentWindow.document.body.appendChild(script2);
  5727. _iframe.contentWindow.document.body.appendChild(script4);
  5728. })
  5729. } else if (str == 'mind') {
  5730. _iframe = _formdiv.querySelector('iframe')
  5731. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5732. //
  5733. _iframe.contentWindow.document.body.appendChild(script1);
  5734. _iframe.contentWindow.document.body.appendChild(script2);
  5735. _iframe.contentWindow.document.body.appendChild(script4);
  5736. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5737. })
  5738. if (onloadListener) {
  5739. _iframe.contentDocument.location.reload()
  5740. } else {
  5741. _iframe.contentDocument.location.reload()
  5742. }
  5743. } else if (str == 'whiteboard') {
  5744. _iframe = _formdiv.querySelector('iframe')
  5745. let onloadListener = _iframe.onload = () => {
  5746. _iframe.contentWindow.document.body.appendChild(script1);
  5747. _iframe.contentWindow.document.body.appendChild(script2);
  5748. _iframe.contentWindow.document.body.appendChild(script4);
  5749. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5750. };
  5751. if (onloadListener) {
  5752. _iframe.contentDocument.location.reload()
  5753. } else {
  5754. _iframe.contentDocument.location.reload()
  5755. }
  5756. } else {
  5757. _iframe.onload = () => {
  5758. _iframe.contentWindow.document.body.appendChild(script1);
  5759. _iframe.contentWindow.document.body.appendChild(script2);
  5760. // _iframe.contentWindow.document.body.appendChild(script3);
  5761. _iframe.contentWindow.document.body.appendChild(script4);
  5762. };
  5763. }
  5764. _jie.onclick = async () => {
  5765. let text = ''
  5766. if (aTool == 1) {
  5767. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5768. } else if (aTool == 6) {
  5769. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5770. } else if (aTool == 3) {
  5771. text = await U.MD.D.I.getEditorContent(_iframe);
  5772. }
  5773. _loading.style.display = 'flex'
  5774. console.log(_loading);
  5775. var _ajs = _iframe.contentWindow.document.createElement("script");
  5776. _ajs.type = "text/javascript";
  5777. _ajs.innerHTML =
  5778. // 'console.log(' + _loading + ');\n' +
  5779. 'var _js = document.createElement("script");\n' +
  5780. '_js.type="text/javascript";\n' +
  5781. '_js.charset="UTF-8";\n' +
  5782. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5783. "_js.onload = function(){\n" +
  5784. ' var a = document.getElementsByTagName("img")\n' +
  5785. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5786. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5787. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5788. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5789. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5790. "beforeUpload_shishi(file," +
  5791. "'" +
  5792. _userid +
  5793. "'" +
  5794. ", " +
  5795. "'" +
  5796. _cid +
  5797. "'" +
  5798. ", " +
  5799. "'" +
  5800. _stage +
  5801. "'" +
  5802. ", " +
  5803. "'" +
  5804. _task +
  5805. "'" +
  5806. ", " +
  5807. "'" +
  5808. _tool +
  5809. "'" +
  5810. ", " +
  5811. "'" +
  5812. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5813. "'" +
  5814. ", " +
  5815. "'" +
  5816. aTool +
  5817. "'" +
  5818. ", " +
  5819. "`" +
  5820. text +
  5821. "`" +
  5822. ")\n" +
  5823. " });\n" +
  5824. "}\n" +
  5825. "document.head.appendChild(_js);\n";
  5826. _iframe.contentWindow.document.head.appendChild(_ajs);
  5827. }
  5828. }
  5829. //U.MD.D.I.openClick(str);
  5830. //如果有任务栏信息
  5831. // if (_taskbar) {
  5832. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5833. // }
  5834. }
  5835. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5836. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5837. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5838. _userinfo = US.userInfo, //登录用户信息
  5839. _userid = US.userInfo.userid //登录用户id
  5840. let _iframe;
  5841. let _cid = cid,
  5842. _stage = stage,
  5843. _task = task,
  5844. _tool = tool;
  5845. var _jie = $$("div", {
  5846. "style": {
  5847. "position": "absolute",
  5848. "bottom": "50px",
  5849. "right": "50px",
  5850. "zIndex": "9999",
  5851. "backgroundColor": "#2268bc",
  5852. "color": "#fff",
  5853. "padding": "12px 20px",
  5854. "cursor": "pointer",
  5855. "borderRadius": "4px",
  5856. },
  5857. "innerHTML": "提交作业"
  5858. })
  5859. let aTool = ''
  5860. let _loading = document.createElement('div')
  5861. _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;"
  5862. // _loading.id = "";
  5863. let _lchild = document.createElement('div')
  5864. let _limg = document.createElement('img')
  5865. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5866. _limg.style = "width: 26px;margin-right: 10px;"
  5867. _lchild.appendChild(_limg)
  5868. let _lspan = document.createElement('span')
  5869. _lspan.innerHTML = "上传中..."
  5870. _lchild.appendChild(_lspan)
  5871. _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%);"
  5872. _loading.appendChild(_lchild)
  5873. var _box = $$('div', {
  5874. "style": {
  5875. "position": "relative",
  5876. "width": "100%",
  5877. "height": "100%",
  5878. },
  5879. })
  5880. _box.appendChild(_loading)
  5881. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5882. switch (str) {
  5883. case "whiteboard":
  5884. aTool = 1;
  5885. _iframe = $$("iframe", {
  5886. "frameborder": "no",
  5887. "border": "0",
  5888. "scrolling ": "no",
  5889. "style": {
  5890. "cssText": "border:0;width:100%;height:100%"
  5891. },
  5892. "src": "https://iwb.cocorobo.cn/"
  5893. })
  5894. _box.appendChild(_iframe);
  5895. _box.appendChild(_jie);
  5896. _formdiv = new U.UF.UI.form(
  5897. "电子白板",
  5898. _box, {
  5899. "id": "whiteboard" + cid + stage + task + tool,
  5900. "style": {
  5901. "width": "90%",
  5902. "height": "90%",
  5903. "overflow": 'hidden'
  5904. },
  5905. "onresize": function () { }
  5906. }, {
  5907. closecallback: function () { }
  5908. }, {
  5909. "style": {
  5910. "height": "36px"
  5911. }
  5912. }).form; //创建窗体
  5913. _taskbar = {
  5914. "id": str + _formdiv.id,
  5915. "style": {
  5916. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5917. },
  5918. "name": "电子白板",
  5919. "forms": _formdiv,
  5920. "click": function () {
  5921. U.MD.D.I.openApplication(str, obj, info);
  5922. }
  5923. }
  5924. break;
  5925. case "mind":
  5926. aTool = 3;
  5927. _iframe = $$("iframe", {
  5928. "frameborder": "no",
  5929. "border": "0",
  5930. "scrolling ": "no",
  5931. "style": {
  5932. "cssText": "border:0;width:100%;height:100%"
  5933. },
  5934. "src": "/kityminder-editor/dist/index.html"
  5935. })
  5936. _box.appendChild(_iframe);
  5937. _box.appendChild(_jie);
  5938. _formdiv = new U.UF.UI.form(
  5939. "思维导图",
  5940. _box, { //"/jsmind/example/demo.html"
  5941. "id": "mind" + cid + stage + task + tool,
  5942. "style": {
  5943. "width": "90%",
  5944. "height": "90%",
  5945. "overflow": 'hidden'
  5946. },
  5947. "onresize": function () { }
  5948. }, {
  5949. closecallback: function () { }
  5950. }, {
  5951. "style": {
  5952. "height": "36px"
  5953. }
  5954. }).form; //创建窗体
  5955. _taskbar = {
  5956. "id": str + _formdiv.id,
  5957. "style": {
  5958. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5959. },
  5960. "name": "思维导图",
  5961. "forms": _formdiv,
  5962. "click": function () {
  5963. U.MD.D.I.openApplication(str, obj, info);
  5964. }
  5965. }
  5966. break;
  5967. case "MindMap":
  5968. aTool = 3;
  5969. _iframe = $$("iframe", {
  5970. "frameborder": "no",
  5971. "border": "0",
  5972. "scrolling ": "no",
  5973. "style": {
  5974. "cssText": "border:0;width:100%;height:100%"
  5975. },
  5976. "src": "//cloud.cocorobo.cn/mind/"
  5977. })
  5978. _box.appendChild(_iframe);
  5979. _box.appendChild(_jie);
  5980. _formdiv = new U.UF.UI.form(
  5981. "思维导图",
  5982. _box, { //"/jsmind/example/demo.html"
  5983. "id": "mind" + cid + stage + task + tool,
  5984. "style": {
  5985. "width": "90%",
  5986. "height": "90%",
  5987. "overflow": 'hidden'
  5988. },
  5989. "onresize": function () { }
  5990. }, {
  5991. closecallback: function () { }
  5992. }, {
  5993. "style": {
  5994. "height": "36px"
  5995. }
  5996. }).form; //创建窗体
  5997. _taskbar = {
  5998. "id": str + _formdiv.id,
  5999. "style": {
  6000. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6001. },
  6002. "name": "思维导图",
  6003. "forms": _formdiv,
  6004. "click": function () {
  6005. U.MD.D.I.openApplication(str, obj, info);
  6006. }
  6007. }
  6008. break;
  6009. case "doc":
  6010. aTool = 6;
  6011. _iframe = $$("iframe", {
  6012. "frameborder": "no",
  6013. "border": "0",
  6014. "scrolling ": "no",
  6015. "style": {
  6016. "cssText": "border:0;width:100%;height:100%"
  6017. },
  6018. "src": "/Office/Word/WordEditArea.htm"
  6019. })
  6020. _box.appendChild(_iframe);
  6021. _box.appendChild(_jie);
  6022. _formdiv = new U.UF.UI.form(
  6023. "协同文档",
  6024. _box, {
  6025. "id": "doc" + cid + stage + task + tool,
  6026. "style": {
  6027. "width": "90%",
  6028. "height": "90%",
  6029. "overflow": 'hidden'
  6030. },
  6031. "onresize": function () { }
  6032. }, {
  6033. closecallback: function () { }
  6034. }, {
  6035. "style": {
  6036. "height": "36px"
  6037. }
  6038. }).form; //创建窗体
  6039. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6040. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6041. })
  6042. _taskbar = {
  6043. "id": str + _formdiv.id,
  6044. "style": {
  6045. "backgroundImage": "url(/img/icon/doc.png)"
  6046. },
  6047. "name": "协同文档",
  6048. "forms": _formdiv,
  6049. "click": function () {
  6050. U.MD.D.I.openApplication(str, obj, info);
  6051. }
  6052. }
  6053. break;
  6054. case "mindNetwork": //好友打开
  6055. aTool = 7;
  6056. _iframe = $$("iframe", {
  6057. "webkitallowfullscreen": "",
  6058. "mozallowfullscreen": "",
  6059. "allowfullscreen": "",
  6060. "frameborder": "no",
  6061. "border": "0",
  6062. "scrolling ": "no",
  6063. "style": {
  6064. "cssText": "border:0; width:100%; height:100%;"
  6065. },
  6066. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6067. })
  6068. _box.appendChild(_iframe);
  6069. _box.appendChild(_jie);
  6070. _formdiv = new U.UF.UI.form(
  6071. "思维网格",
  6072. _box, {
  6073. "id": "mindNetwork" + cid + stage + task + tool,
  6074. "style": {
  6075. "width": "90%",
  6076. "height": "90%",
  6077. "overflow": 'hidden'
  6078. },
  6079. "onresize": function () { }
  6080. }, {
  6081. closecallback: function () { }
  6082. }, {
  6083. "style": {
  6084. "height": "36px"
  6085. }
  6086. }).form; //创建窗体
  6087. _taskbar = {
  6088. "id": str + _formdiv.id,
  6089. "style": {
  6090. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6091. },
  6092. "name": "思维网格",
  6093. "forms": _formdiv,
  6094. "click": function () {
  6095. U.MD.D.I.openApplication(str, obj, info);
  6096. }
  6097. }
  6098. break;
  6099. case "courseDesign":
  6100. _iframe = $$("iframe", {
  6101. "webkitallowfullscreen": "",
  6102. "mozallowfullscreen": "",
  6103. "allowfullscreen": "",
  6104. "frameborder": "no",
  6105. "border": "0",
  6106. "scrolling ": "no",
  6107. "style": {
  6108. "cssText": "border:0; width:100%; height:100%;"
  6109. },
  6110. "src": "/course-design-vue"
  6111. })
  6112. _box.appendChild(_iframe);
  6113. _box.appendChild(_jie);
  6114. _formdiv = new U.UF.UI.form(
  6115. "项目设计",
  6116. _box, {
  6117. "id": "courseDesign" + cid + stage + task + tool,
  6118. "style": {
  6119. "width": "90%",
  6120. "height": "90%",
  6121. "overflow": 'hidden'
  6122. },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () { }
  6126. }, {
  6127. "style": {
  6128. "height": "36px"
  6129. }
  6130. }).form; //创建窗体
  6131. _taskbar = {
  6132. "id": str + _formdiv.id,
  6133. "style": {
  6134. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6135. },
  6136. "name": "项目设计",
  6137. "forms": _formdiv,
  6138. "click": function () {
  6139. U.MD.D.I.openApplication(str, obj, info);
  6140. }
  6141. }
  6142. break;
  6143. }
  6144. const script1 = document.createElement("script");
  6145. script1.type = "text/javascript";
  6146. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6147. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6148. const script2 = document.createElement("script");
  6149. script2.type = "text/javascript";
  6150. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6151. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6152. const script3 = document.createElement("script");
  6153. script3.type = "text/javascript";
  6154. script3.charset = "UTF-8";
  6155. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6156. const script4 = document.createElement("script");
  6157. script4.type = "text/javascript";
  6158. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6159. script4.src = window.origin + "/js/Common/jietu2E.js";
  6160. if (_iframe) {
  6161. if (str == 'doc') {
  6162. _iframe = _formdiv.querySelector('iframe')
  6163. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6164. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6165. _iframe.contentWindow.document.body.appendChild(script1);
  6166. _iframe.contentWindow.document.body.appendChild(script2);
  6167. // _iframe.contentWindow.document.body.appendChild(script3);
  6168. _iframe.contentWindow.document.body.appendChild(script4);
  6169. })
  6170. if (onloadListener) {
  6171. _iframe.contentDocument.location.reload()
  6172. } else {
  6173. _iframe.contentDocument.location.reload()
  6174. }
  6175. } else if (str == 'courseDesign') {
  6176. U.UF.DL.iframeLoad(_iframe, function () {
  6177. // _iframe.contentWindow.U.MD.O.W.load();
  6178. // _iframe.contentWindow.document.body.appendChild(script1);
  6179. _iframe.contentWindow.document.body.appendChild(script2);
  6180. _iframe.contentWindow.document.body.appendChild(script4);
  6181. })
  6182. } else if (str == 'mind') {
  6183. _iframe = _formdiv.querySelector('iframe')
  6184. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6185. //
  6186. _iframe.contentWindow.document.body.appendChild(script1);
  6187. _iframe.contentWindow.document.body.appendChild(script2);
  6188. _iframe.contentWindow.document.body.appendChild(script4);
  6189. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6190. })
  6191. if (onloadListener) {
  6192. _iframe.contentDocument.location.reload()
  6193. } else {
  6194. _iframe.contentDocument.location.reload()
  6195. }
  6196. } else if (str == 'whiteboard') {
  6197. _iframe = _formdiv.querySelector('iframe')
  6198. let onloadListener = _iframe.onload = () => {
  6199. _iframe.contentWindow.document.body.appendChild(script1);
  6200. _iframe.contentWindow.document.body.appendChild(script2);
  6201. _iframe.contentWindow.document.body.appendChild(script4);
  6202. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6203. };
  6204. if (onloadListener) {
  6205. _iframe.contentDocument.location.reload()
  6206. } else {
  6207. _iframe.contentDocument.location.reload()
  6208. }
  6209. } else {
  6210. _iframe.onload = () => {
  6211. _iframe.contentWindow.document.body.appendChild(script1);
  6212. _iframe.contentWindow.document.body.appendChild(script2);
  6213. // _iframe.contentWindow.document.body.appendChild(script3);
  6214. _iframe.contentWindow.document.body.appendChild(script4);
  6215. };
  6216. }
  6217. _jie.onclick = async () => {
  6218. let text = ''
  6219. if (aTool == 1) {
  6220. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6221. } else if (aTool == 6) {
  6222. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6223. } else if (aTool == 3) {
  6224. text = await U.MD.D.I.getEditorContent(_iframe);
  6225. }
  6226. _loading.style.display = 'flex'
  6227. console.log(_loading);
  6228. var _ajs = _iframe.contentWindow.document.createElement("script");
  6229. _ajs.type = "text/javascript";
  6230. _ajs.innerHTML =
  6231. // 'console.log(' + _loading + ');\n' +
  6232. 'var _js = document.createElement("script");\n' +
  6233. '_js.type="text/javascript";\n' +
  6234. '_js.charset="UTF-8";\n' +
  6235. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6236. "_js.onload = function(){\n" +
  6237. ' var a = document.getElementsByTagName("img")\n' +
  6238. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6239. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6240. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6241. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6242. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6243. "beforeUpload_shishi(file," +
  6244. "'" +
  6245. _userid +
  6246. "'" +
  6247. ", " +
  6248. "'" +
  6249. _cid +
  6250. "'" +
  6251. ", " +
  6252. "'" +
  6253. _stage +
  6254. "'" +
  6255. ", " +
  6256. "'" +
  6257. _task +
  6258. "'" +
  6259. ", " +
  6260. "'" +
  6261. _tool +
  6262. "'" +
  6263. ", " +
  6264. "'" +
  6265. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6266. "'" +
  6267. ", " +
  6268. "'" +
  6269. aTool +
  6270. "'" +
  6271. ", " +
  6272. "`" +
  6273. text +
  6274. "`" +
  6275. ")\n" +
  6276. " });\n" +
  6277. "}\n" +
  6278. "document.head.appendChild(_js);\n";
  6279. _iframe.contentWindow.document.head.appendChild(_ajs);
  6280. }
  6281. }
  6282. //U.MD.D.I.openClick(str);
  6283. //如果有任务栏信息
  6284. // if (_taskbar) {
  6285. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6286. // }
  6287. }
  6288. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6289. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6290. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6291. _userid = student.userid, //登录用户id
  6292. _username = student.student //用户名字
  6293. let _iframe;
  6294. let _cid = cid,
  6295. _stage = stage,
  6296. _task = task,
  6297. _tool = tool;
  6298. var _jie = $$("div", {
  6299. "style": {
  6300. "position": "absolute",
  6301. "bottom": "50px",
  6302. "right": "50px",
  6303. "zIndex": "9999",
  6304. "backgroundColor": "#2268bc",
  6305. "color": "#fff",
  6306. "padding": "12px 20px",
  6307. "cursor": "pointer",
  6308. "borderRadius": "4px",
  6309. },
  6310. "innerHTML": "提交作业"
  6311. })
  6312. let aTool = ''
  6313. let _loading = document.createElement('div')
  6314. _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;"
  6315. // _loading.id = "";
  6316. let _lchild = document.createElement('div')
  6317. let _limg = document.createElement('img')
  6318. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6319. _limg.style = "width: 26px;margin-right: 10px;"
  6320. _lchild.appendChild(_limg)
  6321. let _lspan = document.createElement('span')
  6322. _lspan.innerHTML = "上传中..."
  6323. _lchild.appendChild(_lspan)
  6324. _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%);"
  6325. _loading.appendChild(_lchild)
  6326. var _box = $$('div', {
  6327. "style": {
  6328. "position": "relative",
  6329. "width": "100%",
  6330. "height": "100%",
  6331. },
  6332. })
  6333. _box.appendChild(_loading)
  6334. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6335. switch (str) {
  6336. case "whiteboard":
  6337. aTool = 1;
  6338. _iframe = $$("iframe", {
  6339. "frameborder": "no",
  6340. "border": "0",
  6341. "scrolling ": "no",
  6342. "style": {
  6343. "cssText": "border:0;width:100%;height:100%"
  6344. },
  6345. "src": "https://iwb.cocorobo.cn/"
  6346. })
  6347. _box.appendChild(_iframe);
  6348. _box.appendChild(_jie);
  6349. _formdiv = new U.UF.UI.form(
  6350. "电子白板-" + _username,
  6351. _box, {
  6352. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6353. "style": {
  6354. "width": "90%",
  6355. "height": "90%",
  6356. "overflow": 'hidden'
  6357. },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () { }
  6361. }, {
  6362. "style": {
  6363. "height": "36px"
  6364. }
  6365. }).form; //创建窗体
  6366. _taskbar = {
  6367. "id": str + _formdiv.id,
  6368. "style": {
  6369. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6370. },
  6371. "name": "电子白板",
  6372. "forms": _formdiv,
  6373. "click": function () {
  6374. U.MD.D.I.openApplication(str, obj, info);
  6375. }
  6376. }
  6377. break;
  6378. case "mind":
  6379. aTool = 3;
  6380. _iframe = $$("iframe", {
  6381. "frameborder": "no",
  6382. "border": "0",
  6383. "scrolling ": "no",
  6384. "style": {
  6385. "cssText": "border:0;width:100%;height:100%"
  6386. },
  6387. "src": "/kityminder-editor/dist/index.html"
  6388. })
  6389. _box.appendChild(_iframe);
  6390. _box.appendChild(_jie);
  6391. _formdiv = new U.UF.UI.form(
  6392. "思维导图-" + _username,
  6393. _box, { //"/jsmind/example/demo.html"
  6394. "id": "mind" + cid + stage + task + tool + _userid,
  6395. "style": {
  6396. "width": "90%",
  6397. "height": "90%",
  6398. "overflow": 'hidden'
  6399. },
  6400. "onresize": function () { }
  6401. }, {
  6402. closecallback: function () { }
  6403. }, {
  6404. "style": {
  6405. "height": "36px"
  6406. }
  6407. }).form; //创建窗体
  6408. _taskbar = {
  6409. "id": str + _formdiv.id,
  6410. "style": {
  6411. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6412. },
  6413. "name": "思维导图",
  6414. "forms": _formdiv,
  6415. "click": function () {
  6416. U.MD.D.I.openApplication(str, obj, info);
  6417. }
  6418. }
  6419. break;
  6420. case "MindMap":
  6421. aTool = 3;
  6422. _iframe = $$("iframe", {
  6423. "frameborder": "no",
  6424. "border": "0",
  6425. "scrolling ": "no",
  6426. "style": {
  6427. "cssText": "border:0;width:100%;height:100%"
  6428. },
  6429. "src": "//cloud.cocorobo.cn/mind/"
  6430. })
  6431. _box.appendChild(_iframe);
  6432. _box.appendChild(_jie);
  6433. _formdiv = new U.UF.UI.form(
  6434. "思维导图-" + _username,
  6435. _box, { //"/jsmind/example/demo.html"
  6436. "id": "mind" + cid + stage + task + tool + _userid,
  6437. "style": {
  6438. "width": "90%",
  6439. "height": "90%",
  6440. "overflow": 'hidden'
  6441. },
  6442. "onresize": function () { }
  6443. }, {
  6444. closecallback: function () { }
  6445. }, {
  6446. "style": {
  6447. "height": "36px"
  6448. }
  6449. }).form; //创建窗体
  6450. _taskbar = {
  6451. "id": str + _formdiv.id,
  6452. "style": {
  6453. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6454. },
  6455. "name": "思维导图",
  6456. "forms": _formdiv,
  6457. "click": function () {
  6458. U.MD.D.I.openApplication(str, obj, info);
  6459. }
  6460. }
  6461. break;
  6462. case "doc":
  6463. aTool = 6;
  6464. _iframe = $$("iframe", {
  6465. "frameborder": "no",
  6466. "border": "0",
  6467. "scrolling ": "no",
  6468. "style": {
  6469. "cssText": "border:0;width:100%;height:100%"
  6470. },
  6471. "src": "/Office/Word/WordEditArea.htm"
  6472. })
  6473. _box.appendChild(_iframe);
  6474. _box.appendChild(_jie);
  6475. _formdiv = new U.UF.UI.form(
  6476. "协同文档-" + _username,
  6477. _box, {
  6478. "id": "doc" + cid + stage + task + tool + _userid,
  6479. "style": {
  6480. "width": "90%",
  6481. "height": "90%",
  6482. "overflow": 'hidden'
  6483. },
  6484. "onresize": function () { }
  6485. }, {
  6486. closecallback: function () { }
  6487. }, {
  6488. "style": {
  6489. "height": "36px"
  6490. }
  6491. }).form; //创建窗体
  6492. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6493. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6494. })
  6495. _taskbar = {
  6496. "id": str + _formdiv.id,
  6497. "style": {
  6498. "backgroundImage": "url(/img/icon/doc.png)"
  6499. },
  6500. "name": "协同文档",
  6501. "forms": _formdiv,
  6502. "click": function () {
  6503. U.MD.D.I.openApplication(str, obj, info);
  6504. }
  6505. }
  6506. break;
  6507. case "mindNetwork": //好友打开
  6508. aTool = 7;
  6509. _iframe = $$("iframe", {
  6510. "webkitallowfullscreen": "",
  6511. "mozallowfullscreen": "",
  6512. "allowfullscreen": "",
  6513. "frameborder": "no",
  6514. "border": "0",
  6515. "scrolling ": "no",
  6516. "style": {
  6517. "cssText": "border:0; width:100%; height:100%;"
  6518. },
  6519. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6520. })
  6521. _box.appendChild(_iframe);
  6522. _box.appendChild(_jie);
  6523. _formdiv = new U.UF.UI.form(
  6524. "思维网格-" + _username,
  6525. _box, {
  6526. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6527. "style": {
  6528. "width": "90%",
  6529. "height": "90%",
  6530. "overflow": 'hidden'
  6531. },
  6532. "onresize": function () { }
  6533. }, {
  6534. closecallback: function () { }
  6535. }, {
  6536. "style": {
  6537. "height": "36px"
  6538. }
  6539. }).form; //创建窗体
  6540. _taskbar = {
  6541. "id": str + _formdiv.id,
  6542. "style": {
  6543. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6544. },
  6545. "name": "思维网格",
  6546. "forms": _formdiv,
  6547. "click": function () {
  6548. U.MD.D.I.openApplication(str, obj, info);
  6549. }
  6550. }
  6551. break;
  6552. case "courseDesign":
  6553. _iframe = $$("iframe", {
  6554. "webkitallowfullscreen": "",
  6555. "mozallowfullscreen": "",
  6556. "allowfullscreen": "",
  6557. "frameborder": "no",
  6558. "border": "0",
  6559. "scrolling ": "no",
  6560. "style": {
  6561. "cssText": "border:0; width:100%; height:100%;"
  6562. },
  6563. "src": "/course-design-vue"
  6564. })
  6565. _box.appendChild(_iframe);
  6566. _box.appendChild(_jie);
  6567. _formdiv = new U.UF.UI.form(
  6568. "项目设计-" + _username,
  6569. _box, {
  6570. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6571. "style": {
  6572. "width": "90%",
  6573. "height": "90%",
  6574. "overflow": 'hidden'
  6575. },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, {
  6580. "style": {
  6581. "height": "36px"
  6582. }
  6583. }).form; //创建窗体
  6584. _taskbar = {
  6585. "id": str + _formdiv.id,
  6586. "style": {
  6587. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6588. },
  6589. "name": "项目设计",
  6590. "forms": _formdiv,
  6591. "click": function () {
  6592. U.MD.D.I.openApplication(str, obj, info);
  6593. }
  6594. }
  6595. break;
  6596. }
  6597. const script1 = document.createElement("script");
  6598. script1.type = "text/javascript";
  6599. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6600. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6601. const script2 = document.createElement("script");
  6602. script2.type = "text/javascript";
  6603. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6604. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6605. const script3 = document.createElement("script");
  6606. script3.type = "text/javascript";
  6607. script3.charset = "UTF-8";
  6608. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6609. const script4 = document.createElement("script");
  6610. script4.type = "text/javascript";
  6611. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6612. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6613. if (_iframe) {
  6614. if (str == 'doc') {
  6615. _iframe = _formdiv.querySelector('iframe')
  6616. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6617. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6618. _iframe.contentWindow.document.body.appendChild(script1);
  6619. _iframe.contentWindow.document.body.appendChild(script2);
  6620. // _iframe.contentWindow.document.body.appendChild(script3);
  6621. _iframe.contentWindow.document.body.appendChild(script4);
  6622. })
  6623. if (onloadListener) {
  6624. _iframe.contentDocument.location.reload()
  6625. } else {
  6626. _iframe.contentDocument.location.reload()
  6627. }
  6628. } else if (str == 'courseDesign') {
  6629. U.UF.DL.iframeLoad(_iframe, function () {
  6630. // _iframe.contentWindow.U.MD.O.W.load();
  6631. // _iframe.contentWindow.document.body.appendChild(script1);
  6632. _iframe.contentWindow.document.body.appendChild(script2);
  6633. _iframe.contentWindow.document.body.appendChild(script4);
  6634. })
  6635. } else if (str == 'mind') {
  6636. _iframe = _formdiv.querySelector('iframe')
  6637. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6638. //
  6639. _iframe.contentWindow.document.body.appendChild(script1);
  6640. _iframe.contentWindow.document.body.appendChild(script2);
  6641. _iframe.contentWindow.document.body.appendChild(script4);
  6642. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6643. })
  6644. if (onloadListener) {
  6645. _iframe.contentDocument.location.reload()
  6646. } else {
  6647. _iframe.contentDocument.location.reload()
  6648. }
  6649. } else if (str == 'whiteboard') {
  6650. _iframe = _formdiv.querySelector('iframe')
  6651. let onloadListener = _iframe.onload = () => {
  6652. _iframe.contentWindow.document.body.appendChild(script1);
  6653. _iframe.contentWindow.document.body.appendChild(script2);
  6654. _iframe.contentWindow.document.body.appendChild(script4);
  6655. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6656. };
  6657. if (onloadListener) {
  6658. _iframe.contentDocument.location.reload()
  6659. } else {
  6660. _iframe.contentDocument.location.reload()
  6661. }
  6662. } else {
  6663. _iframe.onload = () => {
  6664. _iframe.contentWindow.document.body.appendChild(script1);
  6665. _iframe.contentWindow.document.body.appendChild(script2);
  6666. // _iframe.contentWindow.document.body.appendChild(script3);
  6667. _iframe.contentWindow.document.body.appendChild(script4);
  6668. };
  6669. }
  6670. _jie.onclick = async () => {
  6671. let text = ''
  6672. if (aTool == 1) {
  6673. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6674. } else if (aTool == 6) {
  6675. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6676. } else if (aTool == 3) {
  6677. text = await U.MD.D.I.getEditorContent(_iframe);
  6678. }
  6679. _loading.style.display = 'flex'
  6680. console.log(_loading);
  6681. var _ajs = _iframe.contentWindow.document.createElement("script");
  6682. _ajs.type = "text/javascript";
  6683. _ajs.innerHTML =
  6684. // 'console.log(' + _loading + ');\n' +
  6685. 'var _js = document.createElement("script");\n' +
  6686. '_js.type="text/javascript";\n' +
  6687. '_js.charset="UTF-8";\n' +
  6688. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6689. "_js.onload = function(){\n" +
  6690. ' var a = document.getElementsByTagName("img")\n' +
  6691. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6692. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6693. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6694. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6695. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6696. "beforeUpload_shishi(file," +
  6697. "'" +
  6698. _userid +
  6699. "'" +
  6700. ", " +
  6701. "'" +
  6702. _cid +
  6703. "'" +
  6704. ", " +
  6705. "'" +
  6706. _stage +
  6707. "'" +
  6708. ", " +
  6709. "'" +
  6710. _task +
  6711. "'" +
  6712. ", " +
  6713. "'" +
  6714. _tool +
  6715. "'" +
  6716. ", " +
  6717. "'" +
  6718. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6719. "'" +
  6720. ", " +
  6721. "'" +
  6722. aTool +
  6723. "'" +
  6724. ", " +
  6725. "`" +
  6726. text +
  6727. "`" +
  6728. ")\n" +
  6729. " });\n" +
  6730. "}\n" +
  6731. "document.head.appendChild(_js);\n";
  6732. _iframe.contentWindow.document.head.appendChild(_ajs);
  6733. }
  6734. }
  6735. }
  6736. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6737. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6738. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6739. _userid = student.userid, //登录用户id
  6740. _username = student.student //用户名字
  6741. let _iframe;
  6742. let _cid = cid,
  6743. _stage = stage,
  6744. _task = task,
  6745. _tool = tool;
  6746. var _jie = $$("div", {
  6747. "style": {
  6748. "position": "absolute",
  6749. "bottom": "50px",
  6750. "right": "50px",
  6751. "zIndex": "9999",
  6752. "backgroundColor": "#2268bc",
  6753. "color": "#fff",
  6754. "padding": "12px 20px",
  6755. "cursor": "pointer",
  6756. "borderRadius": "4px",
  6757. },
  6758. "innerHTML": "提交作业"
  6759. })
  6760. let aTool = ''
  6761. let _loading = document.createElement('div')
  6762. _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;"
  6763. // _loading.id = "";
  6764. let _lchild = document.createElement('div')
  6765. let _limg = document.createElement('img')
  6766. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6767. _limg.style = "width: 26px;margin-right: 10px;"
  6768. _lchild.appendChild(_limg)
  6769. let _lspan = document.createElement('span')
  6770. _lspan.innerHTML = "上传中..."
  6771. _lchild.appendChild(_lspan)
  6772. _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%);"
  6773. _loading.appendChild(_lchild)
  6774. var _box = $$('div', {
  6775. "style": {
  6776. "position": "relative",
  6777. "width": "100%",
  6778. "height": "100%",
  6779. },
  6780. })
  6781. _box.appendChild(_loading)
  6782. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6783. switch (str) {
  6784. case "whiteboard":
  6785. aTool = 1;
  6786. _iframe = $$("iframe", {
  6787. "frameborder": "no",
  6788. "border": "0",
  6789. "scrolling ": "no",
  6790. "style": {
  6791. "cssText": "border:0;width:100%;height:100%"
  6792. },
  6793. "src": "https://iwb.cocorobo.cn/"
  6794. })
  6795. _box.appendChild(_iframe);
  6796. _box.appendChild(_jie);
  6797. _formdiv = new U.UF.UI.form(
  6798. "电子白板-" + _username,
  6799. _box, {
  6800. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6801. "style": {
  6802. "width": "90%",
  6803. "height": "90%",
  6804. "overflow": 'hidden'
  6805. },
  6806. "onresize": function () { }
  6807. }, {
  6808. closecallback: function () { }
  6809. }, {
  6810. "style": {
  6811. "height": "36px"
  6812. }
  6813. }).form; //创建窗体
  6814. _taskbar = {
  6815. "id": str + _formdiv.id,
  6816. "style": {
  6817. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6818. },
  6819. "name": "电子白板",
  6820. "forms": _formdiv,
  6821. "click": function () {
  6822. U.MD.D.I.openApplication(str, obj, info);
  6823. }
  6824. }
  6825. break;
  6826. case "mind":
  6827. aTool = 3;
  6828. _iframe = $$("iframe", {
  6829. "frameborder": "no",
  6830. "border": "0",
  6831. "scrolling ": "no",
  6832. "style": {
  6833. "cssText": "border:0;width:100%;height:100%"
  6834. },
  6835. "src": "/kityminder-editor/dist/index.html"
  6836. })
  6837. _box.appendChild(_iframe);
  6838. _box.appendChild(_jie);
  6839. _formdiv = new U.UF.UI.form(
  6840. "思维导图-" + _username,
  6841. _box, { //"/jsmind/example/demo.html"
  6842. "id": "mind" + cid + stage + task + tool + _userid,
  6843. "style": {
  6844. "width": "90%",
  6845. "height": "90%",
  6846. "overflow": 'hidden'
  6847. },
  6848. "onresize": function () { }
  6849. }, {
  6850. closecallback: function () { }
  6851. }, {
  6852. "style": {
  6853. "height": "36px"
  6854. }
  6855. }).form; //创建窗体
  6856. _taskbar = {
  6857. "id": str + _formdiv.id,
  6858. "style": {
  6859. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6860. },
  6861. "name": "思维导图",
  6862. "forms": _formdiv,
  6863. "click": function () {
  6864. U.MD.D.I.openApplication(str, obj, info);
  6865. }
  6866. }
  6867. break;
  6868. case "MindMap":
  6869. aTool = 3;
  6870. _iframe = $$("iframe", {
  6871. "frameborder": "no",
  6872. "border": "0",
  6873. "scrolling ": "no",
  6874. "style": {
  6875. "cssText": "border:0;width:100%;height:100%"
  6876. },
  6877. "src": "//cloud.cocorobo.cn/mind/"
  6878. })
  6879. _box.appendChild(_iframe);
  6880. _box.appendChild(_jie);
  6881. _formdiv = new U.UF.UI.form(
  6882. "思维导图-" + _username,
  6883. _box, { //"/jsmind/example/demo.html"
  6884. "id": "mind" + cid + stage + task + tool + _userid,
  6885. "style": {
  6886. "width": "90%",
  6887. "height": "90%",
  6888. "overflow": 'hidden'
  6889. },
  6890. "onresize": function () { }
  6891. }, {
  6892. closecallback: function () { }
  6893. }, {
  6894. "style": {
  6895. "height": "36px"
  6896. }
  6897. }).form; //创建窗体
  6898. _taskbar = {
  6899. "id": str + _formdiv.id,
  6900. "style": {
  6901. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6902. },
  6903. "name": "思维导图",
  6904. "forms": _formdiv,
  6905. "click": function () {
  6906. U.MD.D.I.openApplication(str, obj, info);
  6907. }
  6908. }
  6909. break;
  6910. case "doc":
  6911. aTool = 6;
  6912. _iframe = $$("iframe", {
  6913. "frameborder": "no",
  6914. "border": "0",
  6915. "scrolling ": "no",
  6916. "style": {
  6917. "cssText": "border:0;width:100%;height:100%"
  6918. },
  6919. "src": "/Office/Word/WordEditArea.htm"
  6920. })
  6921. _box.appendChild(_iframe);
  6922. _box.appendChild(_jie);
  6923. _formdiv = new U.UF.UI.form(
  6924. "协同文档-" + _username,
  6925. _box, {
  6926. "id": "doc" + cid + stage + task + tool + _userid,
  6927. "style": {
  6928. "width": "90%",
  6929. "height": "90%",
  6930. "overflow": 'hidden'
  6931. },
  6932. "onresize": function () { }
  6933. }, {
  6934. closecallback: function () { }
  6935. }, {
  6936. "style": {
  6937. "height": "36px"
  6938. }
  6939. }).form; //创建窗体
  6940. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6941. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6942. })
  6943. _taskbar = {
  6944. "id": str + _formdiv.id,
  6945. "style": {
  6946. "backgroundImage": "url(/img/icon/doc.png)"
  6947. },
  6948. "name": "协同文档",
  6949. "forms": _formdiv,
  6950. "click": function () {
  6951. U.MD.D.I.openApplication(str, obj, info);
  6952. }
  6953. }
  6954. break;
  6955. case "mindNetwork": //好友打开
  6956. aTool = 7;
  6957. _iframe = $$("iframe", {
  6958. "webkitallowfullscreen": "",
  6959. "mozallowfullscreen": "",
  6960. "allowfullscreen": "",
  6961. "frameborder": "no",
  6962. "border": "0",
  6963. "scrolling ": "no",
  6964. "style": {
  6965. "cssText": "border:0; width:100%; height:100%;"
  6966. },
  6967. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6968. })
  6969. _box.appendChild(_iframe);
  6970. _box.appendChild(_jie);
  6971. _formdiv = new U.UF.UI.form(
  6972. "思维网格-" + _username,
  6973. _box, {
  6974. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6975. "style": {
  6976. "width": "90%",
  6977. "height": "90%",
  6978. "overflow": 'hidden'
  6979. },
  6980. "onresize": function () { }
  6981. }, {
  6982. closecallback: function () { }
  6983. }, {
  6984. "style": {
  6985. "height": "36px"
  6986. }
  6987. }).form; //创建窗体
  6988. _taskbar = {
  6989. "id": str + _formdiv.id,
  6990. "style": {
  6991. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6992. },
  6993. "name": "思维网格",
  6994. "forms": _formdiv,
  6995. "click": function () {
  6996. U.MD.D.I.openApplication(str, obj, info);
  6997. }
  6998. }
  6999. break;
  7000. case "courseDesign":
  7001. _iframe = $$("iframe", {
  7002. "webkitallowfullscreen": "",
  7003. "mozallowfullscreen": "",
  7004. "allowfullscreen": "",
  7005. "frameborder": "no",
  7006. "border": "0",
  7007. "scrolling ": "no",
  7008. "style": {
  7009. "cssText": "border:0; width:100%; height:100%;"
  7010. },
  7011. "src": "/course-design-vue"
  7012. })
  7013. _box.appendChild(_iframe);
  7014. _box.appendChild(_jie);
  7015. _formdiv = new U.UF.UI.form(
  7016. "项目设计-" + _username,
  7017. _box, {
  7018. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7019. "style": {
  7020. "width": "90%",
  7021. "height": "90%",
  7022. "overflow": 'hidden'
  7023. },
  7024. "onresize": function () { }
  7025. }, {
  7026. closecallback: function () { }
  7027. }, {
  7028. "style": {
  7029. "height": "36px"
  7030. }
  7031. }).form; //创建窗体
  7032. _taskbar = {
  7033. "id": str + _formdiv.id,
  7034. "style": {
  7035. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7036. },
  7037. "name": "项目设计",
  7038. "forms": _formdiv,
  7039. "click": function () {
  7040. U.MD.D.I.openApplication(str, obj, info);
  7041. }
  7042. }
  7043. break;
  7044. }
  7045. const script1 = document.createElement("script");
  7046. script1.type = "text/javascript";
  7047. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7048. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7049. const script2 = document.createElement("script");
  7050. script2.type = "text/javascript";
  7051. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7052. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7053. const script3 = document.createElement("script");
  7054. script3.type = "text/javascript";
  7055. script3.charset = "UTF-8";
  7056. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7057. const script4 = document.createElement("script");
  7058. script4.type = "text/javascript";
  7059. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7060. script4.src = window.origin + "/js/Common/jietu2E.js";
  7061. if (_iframe) {
  7062. if (str == 'doc') {
  7063. _iframe = _formdiv.querySelector('iframe')
  7064. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7065. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7066. _iframe.contentWindow.document.body.appendChild(script1);
  7067. _iframe.contentWindow.document.body.appendChild(script2);
  7068. // _iframe.contentWindow.document.body.appendChild(script3);
  7069. _iframe.contentWindow.document.body.appendChild(script4);
  7070. })
  7071. if (onloadListener) {
  7072. _iframe.contentDocument.location.reload()
  7073. } else {
  7074. _iframe.contentDocument.location.reload()
  7075. }
  7076. } else if (str == 'courseDesign') {
  7077. U.UF.DL.iframeLoad(_iframe, function () {
  7078. // _iframe.contentWindow.U.MD.O.W.load();
  7079. // _iframe.contentWindow.document.body.appendChild(script1);
  7080. _iframe.contentWindow.document.body.appendChild(script2);
  7081. _iframe.contentWindow.document.body.appendChild(script4);
  7082. })
  7083. } else if (str == 'mind') {
  7084. _iframe = _formdiv.querySelector('iframe')
  7085. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7086. //
  7087. _iframe.contentWindow.document.body.appendChild(script1);
  7088. _iframe.contentWindow.document.body.appendChild(script2);
  7089. _iframe.contentWindow.document.body.appendChild(script4);
  7090. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7091. })
  7092. if (onloadListener) {
  7093. _iframe.contentDocument.location.reload()
  7094. } else {
  7095. _iframe.contentDocument.location.reload()
  7096. }
  7097. } else if (str == 'whiteboard') {
  7098. _iframe = _formdiv.querySelector('iframe')
  7099. let onloadListener = _iframe.onload = () => {
  7100. _iframe.contentWindow.document.body.appendChild(script1);
  7101. _iframe.contentWindow.document.body.appendChild(script2);
  7102. _iframe.contentWindow.document.body.appendChild(script4);
  7103. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7104. };
  7105. if (onloadListener) {
  7106. _iframe.contentDocument.location.reload()
  7107. } else {
  7108. _iframe.contentDocument.location.reload()
  7109. }
  7110. } else {
  7111. _iframe.onload = () => {
  7112. _iframe.contentWindow.document.body.appendChild(script1);
  7113. _iframe.contentWindow.document.body.appendChild(script2);
  7114. // _iframe.contentWindow.document.body.appendChild(script3);
  7115. _iframe.contentWindow.document.body.appendChild(script4);
  7116. };
  7117. }
  7118. _jie.onclick = async () => {
  7119. let text = ''
  7120. if (aTool == 1) {
  7121. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7122. } else if (aTool == 6) {
  7123. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7124. } else if (aTool == 3) {
  7125. text = await U.MD.D.I.getEditorContent(_iframe);
  7126. }
  7127. _loading.style.display = 'flex'
  7128. console.log(_loading);
  7129. var _ajs = _iframe.contentWindow.document.createElement("script");
  7130. _ajs.type = "text/javascript";
  7131. _ajs.innerHTML =
  7132. // 'console.log(' + _loading + ');\n' +
  7133. 'var _js = document.createElement("script");\n' +
  7134. '_js.type="text/javascript";\n' +
  7135. '_js.charset="UTF-8";\n' +
  7136. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7137. "_js.onload = function(){\n" +
  7138. ' var a = document.getElementsByTagName("img")\n' +
  7139. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7140. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7141. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7142. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7143. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7144. "beforeUpload_shishi(file," +
  7145. "'" +
  7146. _userid +
  7147. "'" +
  7148. ", " +
  7149. "'" +
  7150. _cid +
  7151. "'" +
  7152. ", " +
  7153. "'" +
  7154. _stage +
  7155. "'" +
  7156. ", " +
  7157. "'" +
  7158. _task +
  7159. "'" +
  7160. ", " +
  7161. "'" +
  7162. _tool +
  7163. "'" +
  7164. ", " +
  7165. "'" +
  7166. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7167. "'" +
  7168. ", " +
  7169. "'" +
  7170. aTool +
  7171. "'" +
  7172. ", " +
  7173. "`" +
  7174. text +
  7175. "`" +
  7176. ")\n" +
  7177. " });\n" +
  7178. "}\n" +
  7179. "document.head.appendChild(_js);\n";
  7180. _iframe.contentWindow.document.head.appendChild(_ajs);
  7181. }
  7182. }
  7183. }
  7184. U.MD.D.I.getEditorContent = function (iframe) {
  7185. return new Promise((resolve, reject) => {
  7186. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7187. console.log(content);
  7188. resolve(content)
  7189. });
  7190. });
  7191. }
  7192. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7193. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7194. // if (res.value[0].length > 0) {
  7195. // // resolve(res.value[0][0].text);
  7196. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7197. // $(fileInput).val('');
  7198. // });
  7199. // }
  7200. // }, [], { "type": "GET", "withCredentials": true });
  7201. var xmlhttp;
  7202. var Mac, Sn, DeviceId
  7203. if (window.XMLHttpRequest) {
  7204. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7205. xmlhttp = new XMLHttpRequest();
  7206. } else {
  7207. // IE6, IE5 浏览器执行代码
  7208. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7209. }
  7210. xmlhttp.onreadystatechange = function () {
  7211. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7212. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7213. // resolve(res.value[0][0].text);
  7214. if (type == '2') {
  7215. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7216. } else if (type == '3') {
  7217. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7218. }
  7219. } else {
  7220. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7221. }
  7222. }
  7223. }
  7224. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7225. xmlhttp.send();
  7226. }
  7227. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7228. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7229. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7230. _userinfo = US.userInfo, //登录用户信息
  7231. _userid = US.userInfo.userid //登录用户id
  7232. let _iframe;
  7233. let _cid = cid,
  7234. _stage = stage,
  7235. _task = task,
  7236. _tool = tool;
  7237. var _jie = $$("div", {
  7238. "style": {
  7239. "position": "absolute",
  7240. "bottom": "50px",
  7241. "right": "50px",
  7242. "zIndex": "9999",
  7243. "backgroundColor": "#2268bc",
  7244. "color": "#fff",
  7245. "padding": "12px 20px",
  7246. "cursor": "pointer",
  7247. "borderRadius": "4px",
  7248. },
  7249. "innerHTML": "确认并提交"
  7250. })
  7251. let aTool = ''
  7252. let _loading = document.createElement('div')
  7253. _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;"
  7254. // _loading.id = "";
  7255. let _lchild = document.createElement('div')
  7256. let _limg = document.createElement('img')
  7257. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7258. _limg.style = "width: 26px;margin-right: 10px;"
  7259. _lchild.appendChild(_limg)
  7260. let _lspan = document.createElement('span')
  7261. _lspan.innerHTML = "上传中..."
  7262. _lchild.appendChild(_lspan)
  7263. _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%);"
  7264. _loading.appendChild(_lchild)
  7265. var _box = $$('div', {
  7266. "style": {
  7267. "position": "relative",
  7268. "width": "100%",
  7269. "height": "100%",
  7270. },
  7271. })
  7272. _box.appendChild(_loading)
  7273. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7274. switch (str) {
  7275. case "whiteboard":
  7276. aTool = 1;
  7277. _iframe = $$("iframe", {
  7278. "frameborder": "no",
  7279. "border": "0",
  7280. "scrolling ": "no",
  7281. "style": {
  7282. "cssText": "border:0;width:100%;height:100%"
  7283. },
  7284. "src": "https://iwb.cocorobo.cn/"
  7285. })
  7286. _box.appendChild(_iframe);
  7287. _box.appendChild(_jie);
  7288. _formdiv = new U.UF.UI.form(
  7289. "电子白板",
  7290. _box, {
  7291. "id": "whiteboards" + cid + stage + task + tool,
  7292. "style": {
  7293. "width": "90%",
  7294. "height": "90%",
  7295. "overflow": 'hidden'
  7296. },
  7297. "onresize": function () { }
  7298. }, {
  7299. closecallback: function () { }
  7300. }, {
  7301. "style": {
  7302. "height": "36px"
  7303. }
  7304. }).form; //创建窗体
  7305. _taskbar = {
  7306. "id": str + _formdiv.id,
  7307. "style": {
  7308. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7309. },
  7310. "name": "电子白板",
  7311. "forms": _formdiv,
  7312. "click": function () {
  7313. U.MD.D.I.openApplication(str, obj, info);
  7314. }
  7315. }
  7316. break;
  7317. case "mind":
  7318. aTool = 3;
  7319. _iframe = $$("iframe", {
  7320. "frameborder": "no",
  7321. "border": "0",
  7322. "scrolling ": "no",
  7323. "style": {
  7324. "cssText": "border:0;width:100%;height:100%"
  7325. },
  7326. "src": "/kityminder-editor/dist/index.html"
  7327. });
  7328. _box.appendChild(_iframe);
  7329. _box.appendChild(_jie);
  7330. _formdiv = new U.UF.UI.form(
  7331. "思维导图",
  7332. _box, { //"/jsmind/example/demo.html"
  7333. "id": "minds" + cid + stage + task + tool,
  7334. "style": {
  7335. "width": "90%",
  7336. "height": "90%",
  7337. "overflow": 'hidden'
  7338. },
  7339. "onresize": function () { }
  7340. }, {
  7341. closecallback: function () { }
  7342. }, {
  7343. "style": {
  7344. "height": "36px"
  7345. }
  7346. }).form; //创建窗体
  7347. _taskbar = {
  7348. "id": str + _formdiv.id,
  7349. "style": {
  7350. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7351. },
  7352. "name": "思维导图",
  7353. "forms": _formdiv,
  7354. "click": function () {
  7355. U.MD.D.I.openApplication(str, obj, info);
  7356. }
  7357. }
  7358. break;
  7359. case "doc":
  7360. aTool = 6;
  7361. _iframe = $$("iframe", {
  7362. "frameborder": "no",
  7363. "border": "0",
  7364. "scrolling ": "no",
  7365. "style": {
  7366. "cssText": "border:0;width:100%;height:100%"
  7367. },
  7368. "src": "/Office/Word/WordEditArea.htm"
  7369. })
  7370. _box.appendChild(_iframe);
  7371. _box.appendChild(_jie);
  7372. _formdiv = new U.UF.UI.form(
  7373. "协同文档",
  7374. _box, {
  7375. "id": "docs" + cid + stage + task + tool,
  7376. "style": {
  7377. "width": "90%",
  7378. "height": "90%",
  7379. "overflow": 'hidden'
  7380. },
  7381. "onresize": function () { }
  7382. }, {
  7383. closecallback: function () { }
  7384. }, {
  7385. "style": {
  7386. "height": "36px"
  7387. }
  7388. }).form; //创建窗体
  7389. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7390. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7391. })
  7392. _taskbar = {
  7393. "id": str + _formdiv.id,
  7394. "style": {
  7395. "backgroundImage": "url(/img/icon/doc.png)"
  7396. },
  7397. "name": "协同文档",
  7398. "forms": _formdiv,
  7399. "click": function () {
  7400. U.MD.D.I.openApplication(str, obj, info);
  7401. }
  7402. }
  7403. break;
  7404. }
  7405. const script1 = document.createElement("script");
  7406. script1.type = "text/javascript";
  7407. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7408. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7409. const script2 = document.createElement("script");
  7410. script2.type = "text/javascript";
  7411. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7412. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7413. const script3 = document.createElement("script");
  7414. script3.type = "text/javascript";
  7415. script3.charset = "UTF-8";
  7416. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7417. const script4 = document.createElement("script");
  7418. script4.type = "text/javascript";
  7419. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7420. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7421. if (_iframe) {
  7422. if (str == 'doc') {
  7423. _iframe = _formdiv.querySelector('iframe')
  7424. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7425. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7426. _iframe.contentWindow.document.body.appendChild(script1);
  7427. _iframe.contentWindow.document.body.appendChild(script2);
  7428. // _iframe.contentWindow.document.body.appendChild(script3);
  7429. _iframe.contentWindow.document.body.appendChild(script4);
  7430. })
  7431. if (onloadListener) {
  7432. _iframe.contentDocument.location.reload()
  7433. } else {
  7434. _iframe.contentDocument.location.reload()
  7435. }
  7436. } else if (str == 'mind') {
  7437. _iframe = _formdiv.querySelector('iframe')
  7438. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7439. _iframe.contentWindow.document.body.appendChild(script1);
  7440. _iframe.contentWindow.document.body.appendChild(script2);
  7441. _iframe.contentWindow.document.body.appendChild(script4);
  7442. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7443. })
  7444. if (onloadListener) {
  7445. _iframe.contentDocument.location.reload()
  7446. } else {
  7447. _iframe.contentDocument.location.reload()
  7448. }
  7449. } else {
  7450. _iframe.onload = () => {
  7451. _iframe.contentWindow.document.body.appendChild(script1);
  7452. _iframe.contentWindow.document.body.appendChild(script2);
  7453. // _iframe.contentWindow.document.body.appendChild(script3);
  7454. _iframe.contentWindow.document.body.appendChild(script4);
  7455. };
  7456. }
  7457. _jie.onclick = async () => {
  7458. let text = ''
  7459. if (aTool == 6) {
  7460. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7461. } else if (aTool == 3) {
  7462. text = await U.MD.D.I.getEditorContent(_iframe);
  7463. }
  7464. _loading.style.display = 'flex'
  7465. console.log(_loading);
  7466. var _ajs = _iframe.contentWindow.document.createElement("script");
  7467. _ajs.type = "text/javascript";
  7468. _ajs.innerHTML =
  7469. // 'console.log(' + _loading + ');\n' +
  7470. 'var _js = document.createElement("script");\n' +
  7471. '_js.type="text/javascript";\n' +
  7472. '_js.charset="UTF-8";\n' +
  7473. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7474. "_js.onload = function(){\n" +
  7475. ' var a = document.getElementsByTagName("img")\n' +
  7476. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7477. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7478. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7479. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7480. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7481. "beforeUpload_shishi(file," +
  7482. "'" +
  7483. _userid +
  7484. "'" +
  7485. ", " +
  7486. "'" +
  7487. _cid +
  7488. "'" +
  7489. ", " +
  7490. "'" +
  7491. _stage +
  7492. "'" +
  7493. ", " +
  7494. "'" +
  7495. _task +
  7496. "'" +
  7497. ", " +
  7498. "'" +
  7499. _tool +
  7500. "'" +
  7501. ", " +
  7502. "'" +
  7503. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7504. "'" +
  7505. ", " +
  7506. "'" +
  7507. aTool +
  7508. "'" +
  7509. ", " +
  7510. "`" +
  7511. text +
  7512. "`" +
  7513. ")\n" +
  7514. " });\n" +
  7515. "}\n" +
  7516. "document.head.appendChild(_js);\n";
  7517. _iframe.contentWindow.document.head.appendChild(_ajs);
  7518. }
  7519. }
  7520. //U.MD.D.I.openClick(str);
  7521. //如果有任务栏信息
  7522. // if (_taskbar) {
  7523. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7524. // }
  7525. }
  7526. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7527. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7528. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7529. _userinfo = US.userInfo, //登录用户信息
  7530. _userid = US.userInfo.userid //登录用户id
  7531. let _iframe;
  7532. let _cid = cid,
  7533. _stage = stage,
  7534. _task = task,
  7535. _tool = tool;
  7536. var _jie = $$("div", {
  7537. "style": {
  7538. "position": "absolute",
  7539. "bottom": "50px",
  7540. "right": "50px",
  7541. "zIndex": "9999",
  7542. "backgroundColor": "#2268bc",
  7543. "color": "#fff",
  7544. "padding": "12px 20px",
  7545. "cursor": "pointer",
  7546. "borderRadius": "4px",
  7547. },
  7548. "innerHTML": "确认并提交"
  7549. })
  7550. let aTool = ''
  7551. let _loading = document.createElement('div')
  7552. _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;"
  7553. // _loading.id = "";
  7554. let _lchild = document.createElement('div')
  7555. let _limg = document.createElement('img')
  7556. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7557. _limg.style = "width: 26px;margin-right: 10px;"
  7558. _lchild.appendChild(_limg)
  7559. let _lspan = document.createElement('span')
  7560. _lspan.innerHTML = "上传中..."
  7561. _lchild.appendChild(_lspan)
  7562. _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%);"
  7563. _loading.appendChild(_lchild)
  7564. var _box = $$('div', {
  7565. "style": {
  7566. "position": "relative",
  7567. "width": "100%",
  7568. "height": "100%",
  7569. },
  7570. })
  7571. _box.appendChild(_loading)
  7572. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7573. switch (str) {
  7574. case "whiteboard":
  7575. aTool = 1;
  7576. _iframe = $$("iframe", {
  7577. "frameborder": "no",
  7578. "border": "0",
  7579. "scrolling ": "no",
  7580. "style": {
  7581. "cssText": "border:0;width:100%;height:100%"
  7582. },
  7583. "src": "https://iwb.cocorobo.cn/"
  7584. })
  7585. _box.appendChild(_iframe);
  7586. _box.appendChild(_jie);
  7587. _formdiv = new U.UF.UI.form(
  7588. "电子白板",
  7589. _box, {
  7590. "id": "whiteboards" + cid + stage + task + tool,
  7591. "style": {
  7592. "width": "90%",
  7593. "height": "90%",
  7594. "overflow": 'hidden'
  7595. },
  7596. "onresize": function () { }
  7597. }, {
  7598. closecallback: function () { }
  7599. }, {
  7600. "style": {
  7601. "height": "36px"
  7602. }
  7603. }).form; //创建窗体
  7604. _taskbar = {
  7605. "id": str + _formdiv.id,
  7606. "style": {
  7607. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7608. },
  7609. "name": "电子白板",
  7610. "forms": _formdiv,
  7611. "click": function () {
  7612. U.MD.D.I.openApplication(str, obj, info);
  7613. }
  7614. }
  7615. break;
  7616. case "mind":
  7617. aTool = 3;
  7618. _iframe = $$("iframe", {
  7619. "frameborder": "no",
  7620. "border": "0",
  7621. "scrolling ": "no",
  7622. "style": {
  7623. "cssText": "border:0;width:100%;height:100%"
  7624. },
  7625. "src": "/kityminder-editor/dist/index.html"
  7626. });
  7627. _box.appendChild(_iframe);
  7628. _box.appendChild(_jie);
  7629. _formdiv = new U.UF.UI.form(
  7630. "思维导图",
  7631. _box, { //"/jsmind/example/demo.html"
  7632. "id": "minds" + cid + stage + task + tool,
  7633. "style": {
  7634. "width": "90%",
  7635. "height": "90%",
  7636. "overflow": 'hidden'
  7637. },
  7638. "onresize": function () { }
  7639. }, {
  7640. closecallback: function () { }
  7641. }, {
  7642. "style": {
  7643. "height": "36px"
  7644. }
  7645. }).form; //创建窗体
  7646. _taskbar = {
  7647. "id": str + _formdiv.id,
  7648. "style": {
  7649. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7650. },
  7651. "name": "思维导图",
  7652. "forms": _formdiv,
  7653. "click": function () {
  7654. U.MD.D.I.openApplication(str, obj, info);
  7655. }
  7656. }
  7657. break;
  7658. case "doc":
  7659. aTool = 6;
  7660. _iframe = $$("iframe", {
  7661. "frameborder": "no",
  7662. "border": "0",
  7663. "scrolling ": "no",
  7664. "style": {
  7665. "cssText": "border:0;width:100%;height:100%"
  7666. },
  7667. "src": "/Office/Word/WordEditArea.htm"
  7668. })
  7669. _box.appendChild(_iframe);
  7670. _box.appendChild(_jie);
  7671. _formdiv = new U.UF.UI.form(
  7672. "协同文档",
  7673. _box, {
  7674. "id": "docs" + cid + stage + task + tool,
  7675. "style": {
  7676. "width": "90%",
  7677. "height": "90%",
  7678. "overflow": 'hidden'
  7679. },
  7680. "onresize": function () { }
  7681. }, {
  7682. closecallback: function () { }
  7683. }, {
  7684. "style": {
  7685. "height": "36px"
  7686. }
  7687. }).form; //创建窗体
  7688. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7689. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7690. })
  7691. _taskbar = {
  7692. "id": str + _formdiv.id,
  7693. "style": {
  7694. "backgroundImage": "url(/img/icon/doc.png)"
  7695. },
  7696. "name": "协同文档",
  7697. "forms": _formdiv,
  7698. "click": function () {
  7699. U.MD.D.I.openApplication(str, obj, info);
  7700. }
  7701. }
  7702. break;
  7703. }
  7704. const script1 = document.createElement("script");
  7705. script1.type = "text/javascript";
  7706. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7707. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7708. const script2 = document.createElement("script");
  7709. script2.type = "text/javascript";
  7710. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7711. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7712. const script3 = document.createElement("script");
  7713. script3.type = "text/javascript";
  7714. script3.charset = "UTF-8";
  7715. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7716. const script4 = document.createElement("script");
  7717. script4.type = "text/javascript";
  7718. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7719. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7720. if (_iframe) {
  7721. if (str == 'doc') {
  7722. _iframe = _formdiv.querySelector('iframe')
  7723. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7724. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7725. _iframe.contentWindow.document.body.appendChild(script1);
  7726. _iframe.contentWindow.document.body.appendChild(script2);
  7727. // _iframe.contentWindow.document.body.appendChild(script3);
  7728. _iframe.contentWindow.document.body.appendChild(script4);
  7729. })
  7730. if (onloadListener) {
  7731. _iframe.contentDocument.location.reload()
  7732. } else {
  7733. _iframe.contentDocument.location.reload()
  7734. }
  7735. } else if (str == 'mind') {
  7736. _iframe = _formdiv.querySelector('iframe')
  7737. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7738. _iframe.contentWindow.document.body.appendChild(script1);
  7739. _iframe.contentWindow.document.body.appendChild(script2);
  7740. _iframe.contentWindow.document.body.appendChild(script4);
  7741. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7742. })
  7743. if (onloadListener) {
  7744. _iframe.contentDocument.location.reload()
  7745. } else {
  7746. _iframe.contentDocument.location.reload()
  7747. }
  7748. } else {
  7749. _iframe.onload = () => {
  7750. _iframe.contentWindow.document.body.appendChild(script1);
  7751. _iframe.contentWindow.document.body.appendChild(script2);
  7752. // _iframe.contentWindow.document.body.appendChild(script3);
  7753. _iframe.contentWindow.document.body.appendChild(script4);
  7754. };
  7755. }
  7756. _jie.onclick = async () => {
  7757. let text = ''
  7758. if (aTool == 6) {
  7759. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7760. } else if (aTool == 3) {
  7761. text = await U.MD.D.I.getEditorContent(_iframe);
  7762. }
  7763. _loading.style.display = 'flex'
  7764. console.log(_loading);
  7765. var _ajs = _iframe.contentWindow.document.createElement("script");
  7766. _ajs.type = "text/javascript";
  7767. _ajs.innerHTML =
  7768. // 'console.log(' + _loading + ');\n' +
  7769. 'var _js = document.createElement("script");\n' +
  7770. '_js.type="text/javascript";\n' +
  7771. '_js.charset="UTF-8";\n' +
  7772. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7773. "_js.onload = function(){\n" +
  7774. ' var a = document.getElementsByTagName("img")\n' +
  7775. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7776. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7777. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7778. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7779. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7780. "beforeUpload_shishi(file," +
  7781. "'" +
  7782. _userid +
  7783. "'" +
  7784. ", " +
  7785. "'" +
  7786. _cid +
  7787. "'" +
  7788. ", " +
  7789. "'" +
  7790. _stage +
  7791. "'" +
  7792. ", " +
  7793. "'" +
  7794. _task +
  7795. "'" +
  7796. ", " +
  7797. "'" +
  7798. _tool +
  7799. "'" +
  7800. ", " +
  7801. "'" +
  7802. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7803. "'" +
  7804. ", " +
  7805. "'" +
  7806. aTool +
  7807. "'" +
  7808. ", " +
  7809. "`" +
  7810. text +
  7811. "`" +
  7812. ")\n" +
  7813. " });\n" +
  7814. "}\n" +
  7815. "document.head.appendChild(_js);\n";
  7816. _iframe.contentWindow.document.head.appendChild(_ajs);
  7817. }
  7818. }
  7819. //U.MD.D.I.openClick(str);
  7820. //如果有任务栏信息
  7821. // if (_taskbar) {
  7822. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7823. // }
  7824. }
  7825. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7826. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7827. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7828. _userinfo = US.userInfo, //登录用户信息
  7829. _userid = US.userInfo.userid //登录用户id
  7830. let _iframe;
  7831. let _cid = cid,
  7832. _stage = stage,
  7833. _task = task,
  7834. _tool = tool;
  7835. var _jie = $$("div", {
  7836. "style": {
  7837. "position": "absolute",
  7838. "bottom": "50px",
  7839. "right": "50px",
  7840. "zIndex": "9999",
  7841. "backgroundColor": "#2268bc",
  7842. "color": "#fff",
  7843. "padding": "12px 20px",
  7844. "cursor": "pointer",
  7845. "borderRadius": "4px",
  7846. },
  7847. "innerHTML": "上传模板"
  7848. })
  7849. let aTool = ''
  7850. let _loading = document.createElement('div')
  7851. _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;"
  7852. // _loading.id = "";
  7853. let _lchild = document.createElement('div')
  7854. let _limg = document.createElement('img')
  7855. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7856. _limg.style = "width: 26px;margin-right: 10px;"
  7857. _lchild.appendChild(_limg)
  7858. let _lspan = document.createElement('span')
  7859. _lspan.innerHTML = "上传中..."
  7860. _lchild.appendChild(_lspan)
  7861. _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%);"
  7862. _loading.appendChild(_lchild)
  7863. var _box = $$('div', {
  7864. "style": {
  7865. "position": "relative",
  7866. "width": "100%",
  7867. "height": "100%",
  7868. },
  7869. })
  7870. _box.appendChild(_loading)
  7871. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7872. switch (str) {
  7873. case "whiteboard":
  7874. aTool = 1;
  7875. _iframe = $$("iframe", {
  7876. "frameborder": "no",
  7877. "border": "0",
  7878. "scrolling ": "no",
  7879. "style": {
  7880. "cssText": "border:0;width:100%;height:100%"
  7881. },
  7882. "src": "https://iwb.cocorobo.cn/"
  7883. })
  7884. _box.appendChild(_iframe);
  7885. _box.appendChild(_jie);
  7886. _formdiv = new U.UF.UI.form(
  7887. "电子白板",
  7888. _box, {
  7889. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7890. "style": {
  7891. "width": "90%",
  7892. "height": "90%",
  7893. "overflow": 'hidden'
  7894. },
  7895. "onresize": function () { }
  7896. }, {
  7897. closecallback: function () { }
  7898. }, {
  7899. "style": {
  7900. "height": "36px"
  7901. }
  7902. }).form; //创建窗体
  7903. _taskbar = {
  7904. "id": str + _formdiv.id,
  7905. "style": {
  7906. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7907. },
  7908. "name": "电子白板",
  7909. "forms": _formdiv,
  7910. "click": function () {
  7911. U.MD.D.I.openApplication(str, obj, info);
  7912. }
  7913. }
  7914. break;
  7915. case "mind":
  7916. aTool = 3;
  7917. _iframe = $$("iframe", {
  7918. "frameborder": "no",
  7919. "border": "0",
  7920. "scrolling ": "no",
  7921. "style": {
  7922. "cssText": "border:0;width:100%;height:100%"
  7923. },
  7924. "src": "/kityminder-editor/dist/index.html"
  7925. });
  7926. _box.appendChild(_iframe);
  7927. _box.appendChild(_jie);
  7928. _formdiv = new U.UF.UI.form(
  7929. "思维导图",
  7930. _box, { //"/jsmind/example/demo.html"
  7931. "id": "minds_Yu" + cid + stage + task + tool,
  7932. "style": {
  7933. "width": "90%",
  7934. "height": "90%",
  7935. "overflow": 'hidden'
  7936. },
  7937. "onresize": function () { }
  7938. }, {
  7939. closecallback: function () { }
  7940. }, {
  7941. "style": {
  7942. "height": "36px"
  7943. }
  7944. }).form; //创建窗体
  7945. _taskbar = {
  7946. "id": str + _formdiv.id,
  7947. "style": {
  7948. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7949. },
  7950. "name": "思维导图",
  7951. "forms": _formdiv,
  7952. "click": function () {
  7953. U.MD.D.I.openApplication(str, obj, info);
  7954. }
  7955. }
  7956. break;
  7957. case "doc":
  7958. aTool = 6;
  7959. _iframe = $$("iframe", {
  7960. "frameborder": "no",
  7961. "border": "0",
  7962. "scrolling ": "no",
  7963. "style": {
  7964. "cssText": "border:0;width:100%;height:100%"
  7965. },
  7966. "src": "/Office/Word/WordEditArea.htm"
  7967. })
  7968. _box.appendChild(_iframe);
  7969. _box.appendChild(_jie);
  7970. _formdiv = new U.UF.UI.form(
  7971. "协同文档",
  7972. _box, {
  7973. "id": "docs_Yu" + cid + stage + task + tool,
  7974. "style": {
  7975. "width": "90%",
  7976. "height": "90%",
  7977. "overflow": 'hidden'
  7978. },
  7979. "onresize": function () { }
  7980. }, {
  7981. closecallback: function () { }
  7982. }, {
  7983. "style": {
  7984. "height": "36px"
  7985. }
  7986. }).form; //创建窗体
  7987. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7988. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7989. })
  7990. _taskbar = {
  7991. "id": str + _formdiv.id,
  7992. "style": {
  7993. "backgroundImage": "url(/img/icon/doc.png)"
  7994. },
  7995. "name": "协同文档",
  7996. "forms": _formdiv,
  7997. "click": function () {
  7998. U.MD.D.I.openApplication(str, obj, info);
  7999. }
  8000. }
  8001. break;
  8002. case "CocoPi":
  8003. aTool = 57;
  8004. _iframe = $$("iframe", {
  8005. "allowpaymentrequest": "allowpaymentrequest",
  8006. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8007. "webkitallowfullscreen": "",
  8008. "mozallowfullscreen": "",
  8009. "frameborder": "no",
  8010. "border": "0",
  8011. "scrolling ": "no",
  8012. "style": {
  8013. "cssText": "border:0;width:100%;height:100%"
  8014. },
  8015. "src": "https://pi.cocorobo.cn/"
  8016. })
  8017. _box.appendChild(_iframe);
  8018. _box.appendChild(_jie);
  8019. _formdiv = new U.UF.UI.form(
  8020. "CocoPi",
  8021. _box, {
  8022. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8023. "style": {
  8024. "width": "90%",
  8025. "height": "90%",
  8026. "overflow": 'hidden'
  8027. },
  8028. "onresize": function () { }
  8029. }, {
  8030. closecallback: function () { }
  8031. }, {
  8032. "style": {
  8033. "height": "36px"
  8034. }
  8035. }).form; //创建窗体
  8036. _taskbar = {
  8037. "id": str + _formdiv.id,
  8038. "style": {
  8039. "backgroundImage": "url(/img/icon/cocopi.png)"
  8040. },
  8041. "name": "CocoPi",
  8042. "forms": _formdiv,
  8043. "click": function () {
  8044. U.MD.D.I.openApplication(str, obj, info);
  8045. }
  8046. }
  8047. break;
  8048. }
  8049. if (_iframe) {
  8050. if (str == 'doc') {
  8051. _iframe = _formdiv.querySelector('iframe')
  8052. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8053. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8054. })
  8055. if (onloadListener) {
  8056. _iframe.contentDocument.location.reload()
  8057. } else {
  8058. _iframe.contentDocument.location.reload()
  8059. }
  8060. } else if (str == 'mind') {
  8061. _iframe = _formdiv.querySelector('iframe')
  8062. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8063. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8064. })
  8065. if (onloadListener) {
  8066. _iframe.contentDocument.location.reload()
  8067. } else {
  8068. _iframe.contentDocument.location.reload()
  8069. }
  8070. } else if (str == 'whiteboard') {
  8071. _iframe = _formdiv.querySelector('iframe')
  8072. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8073. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8074. })
  8075. if (onloadListener) {
  8076. _iframe.contentDocument.location.reload()
  8077. } else {
  8078. _iframe.contentDocument.location.reload()
  8079. }
  8080. } else if (str == 'CocoPi') {
  8081. _iframe = _formdiv.querySelector('iframe')
  8082. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8083. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8084. })
  8085. if (onloadListener) {
  8086. _iframe.contentDocument.location.reload()
  8087. } else {
  8088. _iframe.contentDocument.location.reload()
  8089. }
  8090. } else {
  8091. _iframe.onload = () => { };
  8092. }
  8093. _jie.onclick = async () => {
  8094. let text = ''
  8095. let type = '2'
  8096. if (aTool == 1) {
  8097. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8098. type = '3'
  8099. } else if (aTool == 6) {
  8100. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8101. type = '1'
  8102. } else if (aTool == 3) {
  8103. text = await U.MD.D.I.getEditorContent(_iframe);
  8104. type = '2'
  8105. } else if (aTool == 57) {
  8106. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8107. type = '4'
  8108. }
  8109. _loading.style.display = 'flex'
  8110. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8111. }
  8112. }
  8113. //U.MD.D.I.openClick(str);
  8114. //如果有任务栏信息
  8115. // if (_taskbar) {
  8116. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8117. // }
  8118. }
  8119. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8120. var xmlhttp;
  8121. var Mac, Sn, DeviceId
  8122. if (window.XMLHttpRequest) {
  8123. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8124. xmlhttp = new XMLHttpRequest();
  8125. } else {
  8126. // IE6, IE5 浏览器执行代码
  8127. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8128. }
  8129. xmlhttp.onreadystatechange = function () {
  8130. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8131. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8132. // resolve(res.value[0][0].text);
  8133. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8134. }
  8135. }
  8136. }
  8137. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8138. xmlhttp.send();
  8139. }
  8140. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8141. var xmlhttp;
  8142. var Mac, Sn, DeviceId
  8143. if (window.XMLHttpRequest) {
  8144. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8145. xmlhttp = new XMLHttpRequest();
  8146. } else {
  8147. // IE6, IE5 浏览器执行代码
  8148. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8149. }
  8150. xmlhttp.onreadystatechange = function () {
  8151. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8152. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8153. // resolve(res.value[0][0].text);
  8154. if (type == '2') {
  8155. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8156. } else if (type == '3') {
  8157. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8158. } else if (type == '4') {
  8159. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8160. }
  8161. } else {
  8162. if (type == '2') {
  8163. iframe.contentWindow.editor.minder.importData('json', '')
  8164. } else if (type == '3') {
  8165. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8166. } else if (type == '4') {
  8167. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8168. }
  8169. }
  8170. }
  8171. }
  8172. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8173. xmlhttp.send();
  8174. }
  8175. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8176. var xmlhttp;
  8177. var Mac, Sn, DeviceId
  8178. if (window.XMLHttpRequest) {
  8179. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8180. xmlhttp = new XMLHttpRequest();
  8181. } else {
  8182. // IE6, IE5 浏览器执行代码
  8183. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8184. }
  8185. xmlhttp.onreadystatechange = function () {
  8186. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8187. if (xmlhttp.response) {
  8188. // resolve(res.value[0][0].text);
  8189. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8190. // $(fileInput).val('');
  8191. // });
  8192. span.innerHTML = '上传成功'
  8193. setTimeout(() => {
  8194. loading.style.display = 'none'
  8195. }, 1000);
  8196. }
  8197. }
  8198. }
  8199. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8200. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8201. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8202. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8203. // 设置请求头,表示请求体的编码格式
  8204. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8205. // 设置请求体,使用url-encoded格式的数据
  8206. }
  8207. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8208. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8209. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8210. _userinfo = US.userInfo, //登录用户信息
  8211. _userid = US.userInfo.userid //登录用户id
  8212. let _iframe;
  8213. let _cid = cid,
  8214. _stage = stage,
  8215. _task = task,
  8216. _tool = tool;
  8217. var _jie = $$("div", {
  8218. "style": {
  8219. "position": "absolute",
  8220. "bottom": "50px",
  8221. "right": "50px",
  8222. "zIndex": "9999",
  8223. "backgroundColor": "#2268bc",
  8224. "color": "#fff",
  8225. "padding": "12px 20px",
  8226. "cursor": "pointer",
  8227. "borderRadius": "4px",
  8228. },
  8229. "innerHTML": "提交作业"
  8230. })
  8231. let aTool = ''
  8232. let _loading = document.createElement('div')
  8233. _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;"
  8234. // _loading.id = "";
  8235. let _lchild = document.createElement('div')
  8236. let _limg = document.createElement('img')
  8237. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8238. _limg.style = "width: 26px;margin-right: 10px;"
  8239. _lchild.appendChild(_limg)
  8240. let _lspan = document.createElement('span')
  8241. _lspan.innerHTML = "上传中..."
  8242. _lchild.appendChild(_lspan)
  8243. _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%);"
  8244. _loading.appendChild(_lchild)
  8245. var _box = $$('div', {
  8246. "style": {
  8247. "position": "relative",
  8248. "width": "100%",
  8249. "height": "100%",
  8250. },
  8251. })
  8252. _box.appendChild(_loading)
  8253. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8254. switch (str) {
  8255. case "CocoPi":
  8256. aTool = 57;
  8257. _iframe = $$("iframe", {
  8258. "allowpaymentrequest": "allowpaymentrequest",
  8259. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8260. "webkitallowfullscreen": "",
  8261. "mozallowfullscreen": "",
  8262. "frameborder": "no",
  8263. "border": "0",
  8264. "scrolling ": "no",
  8265. "style": {
  8266. "cssText": "border:0;width:100%;height:100%"
  8267. },
  8268. "src": "https://pi.cocorobo.cn/"
  8269. })
  8270. _box.appendChild(_iframe);
  8271. _box.appendChild(_jie);
  8272. _formdiv = new U.UF.UI.form(
  8273. "CocoPi",
  8274. _box, {
  8275. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8276. "style": {
  8277. "width": "90%",
  8278. "height": "90%",
  8279. "overflow": 'hidden'
  8280. },
  8281. "onresize": function () { }
  8282. }, {
  8283. closecallback: function () { }
  8284. }, {
  8285. "style": {
  8286. "height": "36px"
  8287. }
  8288. }).form; //创建窗体
  8289. _taskbar = {
  8290. "id": str + _formdiv.id,
  8291. "style": {
  8292. "backgroundImage": "url(/img/icon/cocopi.png)"
  8293. },
  8294. "name": "CocoPi",
  8295. "forms": _formdiv,
  8296. "click": function () {
  8297. U.MD.D.I.openApplication(str, obj, info);
  8298. }
  8299. }
  8300. break;
  8301. }
  8302. if (_iframe) {
  8303. if (str == 'CocoPi') {
  8304. _iframe = _formdiv.querySelector('iframe')
  8305. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8306. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8307. })
  8308. if (onloadListener) {
  8309. _iframe.contentDocument.location.reload()
  8310. } else {
  8311. _iframe.contentDocument.location.reload()
  8312. }
  8313. }
  8314. _jie.onclick = async () => {
  8315. let text = ''
  8316. if (aTool == 57) {
  8317. text = _iframe.contentWindow.getLoadXmlStr()
  8318. }
  8319. _loading.style.display = 'flex'
  8320. console.log(_loading);
  8321. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8322. _loading.style.display = 'none'
  8323. let _div = document.createElement('div')
  8324. _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;"
  8325. let _inner = document.createElement('div')
  8326. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8327. _inner.innerHTML = "上传成功"
  8328. _div.appendChild(_inner)
  8329. _iframe.contentWindow.window.document.body.appendChild(_div)
  8330. _div.onclick = () => {
  8331. _iframe.contentWindow.window.document.body.removeChild(_div)
  8332. }
  8333. setTimeout(() => {
  8334. _iframe.contentWindow.window.document.body.removeChild(_div)
  8335. }, 1000);
  8336. }, [], { "type": "POST", "withCredentials": true });
  8337. }
  8338. }
  8339. }
  8340. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8341. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8342. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8343. _userid = student.userid, //登录用户id
  8344. _username = student.student //用户名字
  8345. let _iframe;
  8346. let _cid = cid,
  8347. _stage = stage,
  8348. _task = task,
  8349. _tool = tool;
  8350. var _jie = $$("div", {
  8351. "style": {
  8352. "position": "absolute",
  8353. "bottom": "50px",
  8354. "right": "50px",
  8355. "zIndex": "9999",
  8356. "backgroundColor": "#2268bc",
  8357. "color": "#fff",
  8358. "padding": "12px 20px",
  8359. "cursor": "pointer",
  8360. "borderRadius": "4px",
  8361. },
  8362. "innerHTML": "提交作业"
  8363. })
  8364. let aTool = ''
  8365. let _loading = document.createElement('div')
  8366. _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;"
  8367. // _loading.id = "";
  8368. let _lchild = document.createElement('div')
  8369. let _limg = document.createElement('img')
  8370. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8371. _limg.style = "width: 26px;margin-right: 10px;"
  8372. _lchild.appendChild(_limg)
  8373. let _lspan = document.createElement('span')
  8374. _lspan.innerHTML = "上传中..."
  8375. _lchild.appendChild(_lspan)
  8376. _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%);"
  8377. _loading.appendChild(_lchild)
  8378. var _box = $$('div', {
  8379. "style": {
  8380. "position": "relative",
  8381. "width": "100%",
  8382. "height": "100%",
  8383. },
  8384. })
  8385. _box.appendChild(_loading)
  8386. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8387. switch (str) {
  8388. case "CocoPi":
  8389. aTool = 57;
  8390. _iframe = $$("iframe", {
  8391. "allowpaymentrequest": "allowpaymentrequest",
  8392. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8393. "webkitallowfullscreen": "",
  8394. "mozallowfullscreen": "",
  8395. "frameborder": "no",
  8396. "border": "0",
  8397. "scrolling ": "no",
  8398. "style": {
  8399. "cssText": "border:0;width:100%;height:100%"
  8400. },
  8401. "src": "https://pi.cocorobo.cn/"
  8402. })
  8403. _box.appendChild(_iframe);
  8404. _box.appendChild(_jie);
  8405. _formdiv = new U.UF.UI.form(
  8406. "CocoPi-" + _username,
  8407. _box, {
  8408. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8409. "style": {
  8410. "width": "90%",
  8411. "height": "90%",
  8412. "overflow": 'hidden'
  8413. },
  8414. "onresize": function () { }
  8415. }, {
  8416. closecallback: function () { }
  8417. }, {
  8418. "style": {
  8419. "height": "36px"
  8420. }
  8421. }).form; //创建窗体
  8422. _taskbar = {
  8423. "id": str + _formdiv.id,
  8424. "style": {
  8425. "backgroundImage": "url(/img/icon/cocopi.png)"
  8426. },
  8427. "name": "CocoPi",
  8428. "forms": _formdiv,
  8429. "click": function () {
  8430. U.MD.D.I.openApplication(str, obj, info);
  8431. }
  8432. }
  8433. break;
  8434. }
  8435. if (_iframe) {
  8436. if (str == 'CocoPi') {
  8437. _iframe = _formdiv.querySelector('iframe')
  8438. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8439. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8440. })
  8441. if (onloadListener) {
  8442. _iframe.contentDocument.location.reload()
  8443. } else {
  8444. _iframe.contentDocument.location.reload()
  8445. }
  8446. }
  8447. _jie.onclick = async () => {
  8448. let text = ''
  8449. if (aTool == 57) {
  8450. text = _iframe.contentWindow.getLoadXmlStr()
  8451. }
  8452. _loading.style.display = 'flex'
  8453. console.log(_loading);
  8454. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8455. _loading.style.display = 'none'
  8456. let _div = document.createElement('div')
  8457. _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;"
  8458. let _inner = document.createElement('div')
  8459. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8460. _inner.innerHTML = "上传成功"
  8461. _div.appendChild(_inner)
  8462. _iframe.contentWindow.window.document.body.appendChild(_div)
  8463. _div.onclick = () => {
  8464. _iframe.contentWindow.window.document.body.removeChild(_div)
  8465. }
  8466. setTimeout(() => {
  8467. _iframe.contentWindow.window.document.body.removeChild(_div)
  8468. }, 1000);
  8469. }, [], { "type": "POST", "withCredentials": true });
  8470. }
  8471. }
  8472. }
  8473. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8474. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8475. if (res.value[0].length > 0) {
  8476. if (atool == 57) {
  8477. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8478. }
  8479. } else {
  8480. if (atool == 57) {
  8481. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8482. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8483. }
  8484. }
  8485. }, [], { "type": "POST", "withCredentials": true });
  8486. }