DeskTop.js 586 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  633. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  635. ];
  636. //教科院实小教师桌面图标的全局变量
  637. U.MD.D.I.siesStudentDeskIcon = [
  638. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  642. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  643. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  644. ];
  645. //中山小学教师桌面图标的全局变量
  646. U.MD.D.I.guzmsteacherDeskIcon = [
  647. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  648. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  649. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  650. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  652. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  653. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  654. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  655. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  660. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  661. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  663. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  664. ];
  665. //中山小学学生桌面图标的全局变量
  666. U.MD.D.I.guzmsStudentDeskIcon = [
  667. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  668. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  670. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  671. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  672. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  673. ];
  674. //福田
  675. U.MD.D.I.gdjgTeacherDeskIcon = [
  676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  678. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  679. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  680. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  681. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  682. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. ];
  691. //gdjg
  692. U.MD.D.I.gdjgAdminDeskIcon = [
  693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  697. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  698. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  700. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  701. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  702. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  703. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkteacherDeskIcon = [
  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.hkStudentDeskIcon = [
  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. //hk
  739. U.MD.D.I.hkaceteacherDeskIcon = [
  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": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  759. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  760. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  761. ];
  762. //hk
  763. U.MD.D.I.hkaceStudentDeskIcon = [
  764. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  768. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  769. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  770. ];
  771. //香海正覺蓮社佛教正覺中學
  772. U.MD.D.I.hkZJLSteacherDeskIcon = [
  773. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  774. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  775. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  776. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  777. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  778. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  779. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  780. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  781. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  782. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  783. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  784. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  786. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  789. ];
  790. //香海正覺蓮社佛教正覺中學
  791. U.MD.D.I.hkZJLSStudentDeskIcon = [
  792. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  793. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  794. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. ];
  797. //云海
  798. U.MD.D.I.yunhaiTeacherDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  802. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  805. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  806. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  807. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  808. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  809. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  810. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  811. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  812. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  815. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  816. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  817. ];
  818. //福田
  819. U.MD.D.I.heyuanTeacherDeskIcon = [
  820. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  821. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  822. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  823. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  824. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  825. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  826. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  827. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  829. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  830. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  831. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  832. ];
  833. //福田
  834. U.MD.D.I.heyuanAdminDeskIcon = [
  835. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  836. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  837. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  839. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  840. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  841. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  842. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  843. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  844. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  845. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  846. ];
  847. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  848. U.MD.D.I.szherTeacherDeskIcon = [
  849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  851. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  852. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  856. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  857. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  860. ];
  861. //dsei
  862. U.MD.D.I.dseiTeacherDeskIcon = [
  863. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  864. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  865. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  866. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  872. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  873. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  874. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  875. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  876. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  877. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  878. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  879. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  880. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  881. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  882. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  883. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  884. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  885. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  886. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  887. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  888. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  889. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  890. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  891. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  892. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  893. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  894. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  895. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  896. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  897. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  898. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  899. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  900. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  901. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  902. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  903. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  904. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  905. ];
  906. //dsei
  907. U.MD.D.I.dseiAdminDeskIcon = [
  908. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  909. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  910. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  911. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  915. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  916. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  917. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  918. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  919. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  920. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  921. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  922. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  923. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  924. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  925. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  926. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  927. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  928. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  929. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  930. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  931. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  932. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  933. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  934. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  935. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  936. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  937. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  938. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  939. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  940. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  941. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  942. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  944. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  945. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  946. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  947. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  948. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  949. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  950. ];
  951. //dsei
  952. U.MD.D.I.dseiStudentDeskIcon = [
  953. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  954. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  955. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  956. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  959. ];
  960. //未来教育基地
  961. U.MD.D.I.szjkyTeacherDeskIcon = [
  962. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  963. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  964. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  965. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  966. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  967. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  968. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  969. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  970. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  971. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  972. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  975. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  976. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  977. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  978. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  979. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  980. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  981. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  982. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  983. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  984. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  985. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  986. ];
  987. //未来教育基地
  988. U.MD.D.I.szjkyAdminDeskIcon = [
  989. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  990. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  991. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  992. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  993. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  994. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  995. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  998. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  999. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1000. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1001. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1005. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1006. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1007. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1008. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1009. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1010. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1011. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1012. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1013. ];
  1014. //未来教育基地
  1015. U.MD.D.I.szjkyStudentDeskIcon = [
  1016. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1017. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. ];
  1021. //成华教育局
  1022. U.MD.D.I.chjyjTeacherDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1030. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1031. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1032. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1033. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1034. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1035. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1036. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1037. ];
  1038. //成华教育局chjyj
  1039. U.MD.D.I.chjyjAdminDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1045. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1046. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1047. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1048. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1049. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1050. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1051. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1052. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1055. ];
  1056. //成华教育局chjyj
  1057. U.MD.D.I.chjyjStudentDeskIcon = [
  1058. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1062. ];
  1063. //tpc
  1064. U.MD.D.I.tpcStudentDeskIcon = [
  1065. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1066. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1067. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1068. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1069. ];
  1070. //tpc
  1071. U.MD.D.I.tpcTeacherDeskIcon = [
  1072. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1073. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1074. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1075. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1076. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1077. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1078. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1079. ];
  1080. //tpc
  1081. U.MD.D.I.tpcAdminDeskIcon = [
  1082. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1083. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1084. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1085. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1087. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1089. ];
  1090. //THU-IOE
  1091. U.MD.D.I.thuioeTeacherDeskIcon = [
  1092. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1093. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1094. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1095. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1099. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1100. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1101. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1102. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1103. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1104. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1105. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1106. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1107. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1108. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1109. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1110. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1111. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1112. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1113. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1114. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1115. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1116. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1117. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1118. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1119. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1120. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1121. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1122. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1123. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1124. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1125. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1126. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1128. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1129. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1130. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1131. ];
  1132. //THU-IOE
  1133. U.MD.D.I.thuioeStudentDeskIcon = [
  1134. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //jccssyl
  1140. U.MD.D.I.jccssylTeacherDeskIcon = [
  1141. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //jccssyl
  1162. U.MD.D.I.jccssylStudentDeskIcon = [
  1163. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //cale
  1169. U.MD.D.I.caleTeacherDeskIcon = [
  1170. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1177. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1178. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1179. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1180. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1181. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1182. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1183. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1184. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1185. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1186. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1187. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1188. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1189. ];
  1190. //cale
  1191. U.MD.D.I.caleStudentDeskIcon = [
  1192. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1193. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1194. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1195. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1199. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1200. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1202. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1203. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1204. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1205. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1206. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1207. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1208. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1209. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1210. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1211. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1212. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1213. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1214. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1215. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1216. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1217. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1218. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1219. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1220. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1221. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1222. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1223. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1224. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1225. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1226. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1227. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1228. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1229. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1230. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1231. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1232. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1233. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1234. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1235. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1236. ];
  1237. //lqwmsgzs
  1238. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1239. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1240. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1241. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. ];
  1244. //盐田区幼儿园
  1245. U.MD.D.I.ytyTeacherDeskIcon = [
  1246. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1247. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1248. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1249. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1250. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1251. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1252. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1253. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1254. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1255. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1256. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1257. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1258. ];
  1259. //盐田区幼儿园
  1260. U.MD.D.I.ytyStudentDeskIcon = [
  1261. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1262. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1263. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1264. ];
  1265. //scnuai
  1266. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1267. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1268. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1269. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1270. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1271. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1272. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1273. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1274. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1275. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1276. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1277. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1278. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1279. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1280. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1281. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1282. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1283. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1284. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1285. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1286. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1287. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1288. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1289. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1290. ];
  1291. //scnuai
  1292. U.MD.D.I.scnuaiAdminDeskIcon = [
  1293. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1294. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1295. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1296. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1297. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1298. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1299. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1300. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1303. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1304. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1305. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1306. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1307. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1308. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1309. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1310. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1311. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1312. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //scnuai
  1318. U.MD.D.I.scnuaiStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1323. ];
  1324. //cocobiz
  1325. U.MD.D.I.cocobizteacherDeskIcon = [
  1326. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1327. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1328. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1329. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1330. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1332. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1333. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1334. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1335. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1336. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1337. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1338. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1339. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1342. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1343. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1344. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1345. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1346. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1347. ];
  1348. //cocobiz
  1349. U.MD.D.I.cocobizStudentDeskIcon = [
  1350. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1353. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1354. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1355. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1356. ];
  1357. //xxzjky
  1358. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1359. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1360. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1361. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1362. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1363. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1364. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1365. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1366. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1369. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1370. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1371. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1372. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1374. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1375. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1376. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1379. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1380. ];
  1381. //xxzjky
  1382. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1383. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1387. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //nsfx
  1391. U.MD.D.I.nsfxTeacherDeskIcon = [
  1392. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1400. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1401. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1402. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1403. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1404. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1405. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1406. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1407. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1408. ];
  1409. //nsfx
  1410. U.MD.D.I.nsfxStudentDeskIcon = [
  1411. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1412. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1413. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1415. ];
  1416. //stia
  1417. U.MD.D.I.stiaTeacherDeskIcon = [
  1418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1425. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1427. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1428. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1429. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1430. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1431. ];
  1432. //stia
  1433. U.MD.D.I.stiaStudentDeskIcon = [
  1434. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1437. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1438. ];
  1439. //#region 桌面初始化a
  1440. /**
  1441. * 初始化桌面的起始函数
  1442. *
  1443. */
  1444. U.MD.D.I.init = function () {
  1445. if ($("#U_MD_D_K")[0]) {
  1446. //初始化桌面图标
  1447. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1448. // var clickUrl = ':12588/requestIp.php';
  1449. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1450. // U.MD.D.I.Ip = data;
  1451. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1452. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1453. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1454. // })
  1455. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1456. // })
  1457. }
  1458. }
  1459. /**
  1460. * 模式切换
  1461. *
  1462. */
  1463. U.MD.D.I.ModeCheck = function (type) {
  1464. if (US.Config.type == type) {
  1465. return
  1466. }
  1467. US.Config.type = type
  1468. $('.U_PBL_Check .active')[0].className = ''
  1469. if (type == 1) {
  1470. $('.U_PBL_Check div')[0].className = 'active'
  1471. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1472. } else {
  1473. $('.U_PBL_Check div')[1].className = 'active'
  1474. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1475. }
  1476. //初始化桌面图标
  1477. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1478. if (type == 2) {
  1479. U.MD.D.I.openApplication("project")
  1480. }
  1481. }
  1482. /**
  1483. * 隐藏任务栏
  1484. *
  1485. * @param {element} 桌面元素
  1486. */
  1487. U.MD.D.I.hiddenTaskbar = function (el) {
  1488. //任务栏位置变小
  1489. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1490. //桌面的位置变大
  1491. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1492. }
  1493. /**
  1494. * 隐藏任务栏
  1495. *
  1496. * @param {element} 桌面元素
  1497. */
  1498. U.MD.D.I.hiddenTaskbarout = function (el) {
  1499. //任务栏位置变小
  1500. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1501. //任务栏位置变化
  1502. U.selectEl(el).css({ "bottom": "-60px" });
  1503. //桌面的位置变大
  1504. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1505. }
  1506. }
  1507. /**
  1508. * 初始化打印桌面图标
  1509. *
  1510. * @param {element} 桌面元素
  1511. */
  1512. U.MD.D.I.initDesktopIcons = function (el, type) {
  1513. var i, //用于循环
  1514. _content, //桌面图标元素
  1515. _iconcontent, //桌面图标元素
  1516. _frag = $$("frag"), //定义一个碎片元素
  1517. _type = US.userInfo.type,
  1518. _org = US.userInfo.org,
  1519. _oid = US.userInfo.organizeid,
  1520. _role = US.userInfo.role,
  1521. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1522. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1523. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1524. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1525. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1526. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1527. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1528. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1529. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1530. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1531. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1532. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1533. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1534. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1535. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1536. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1537. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1538. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1539. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1540. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1541. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1542. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1543. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1544. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1545. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1546. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1547. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1548. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1549. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1550. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1551. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1552. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1553. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1554. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1555. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1556. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1557. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1558. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1559. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1560. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1561. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1562. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1563. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1564. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1565. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1566. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1567. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1568. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1569. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1570. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1571. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1572. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1573. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1574. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1575. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1576. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1577. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1578. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1579. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1580. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1581. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1582. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1583. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1584. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1585. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1586. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1587. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1588. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1589. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1590. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1591. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1592. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1593. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1594. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1595. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //nsfx
  1596. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //nsfx
  1597. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1598. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1599. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1600. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1601. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5'];
  1602. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25'];
  1603. //清楚桌面图标
  1604. el.innerHTML = "";
  1605. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1606. _teacherDesktopIconInfo.push(
  1607. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1608. { "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)" } },
  1609. )
  1610. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1611. }
  1612. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1613. _teacherDesktopIconInfo.push(
  1614. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1615. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1616. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1617. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1618. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1619. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1620. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1621. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1622. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1624. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1625. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1626. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1627. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1628. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1629. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1630. )
  1631. }
  1632. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1633. _teacherDesktopIconInfo.push(
  1634. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1635. )
  1636. }
  1637. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1638. // _teacherDesktopIconInfo.push(
  1639. // )
  1640. // }
  1641. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1642. _teacherDesktopIconInfo.push(
  1643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1645. )
  1646. }
  1647. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1648. _teacherDesktopIconInfo.push(
  1649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1650. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1651. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1653. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1654. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1655. )
  1656. _studentDesktopIconInfo.push(
  1657. )
  1658. }
  1659. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1660. _teacherDesktopIconInfo.push(
  1661. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1662. )
  1663. _studentDesktopIconInfo.push(
  1664. )
  1665. }
  1666. //010606 组织
  1667. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1668. _teacherDesktopIconInfo.push(
  1669. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1670. )
  1671. _studentDesktopIconInfo.push(
  1672. )
  1673. }
  1674. //麒麟二中 和 民新小学
  1675. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1676. _teacherDesktopIconInfo.push(
  1677. )
  1678. }
  1679. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1680. _teacherDesktopIconInfo.push(
  1681. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1682. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1683. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1684. )
  1685. }
  1686. //北师大附中(010601)
  1687. if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1688. _teacherDesktopIconInfo.push(
  1689. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1690. )
  1691. _studentDesktopIconInfo.push(
  1692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1693. )
  1694. }
  1695. //樂善堂余近卿中學
  1696. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1697. _teacherDesktopIconInfo.push(
  1698. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1699. )
  1700. }
  1701. // Education Artificial Intelligence
  1702. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1703. _teacherDesktopIconInfo.push(
  1704. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1705. )
  1706. }
  1707. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1708. _teacherDesktopIconInfo.push(
  1709. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1710. )
  1711. }
  1712. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1713. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1714. _teacherDesktopIconInfo.push(
  1715. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1716. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1717. )
  1718. }
  1719. //麒麟二中
  1720. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1721. _studentDesktopIconInfo.push(
  1722. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1723. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1724. )
  1725. }
  1726. //万科双语
  1727. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1728. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1729. if (el.Name == '项目管理') {
  1730. el.Name = 'PBL项目'
  1731. }
  1732. return el
  1733. })
  1734. _studentDesktopIconInfo3.push(
  1735. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1736. )
  1737. }
  1738. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1739. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1740. return el.Name != '魔盒识字' && el.Name != '24点'
  1741. })
  1742. }
  1743. 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) {
  1744. _studentDesktopIconInfo.push(
  1745. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1746. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1747. )
  1748. }
  1749. //循环创建桌面图标
  1750. if (type == 1) {
  1751. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1752. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1753. _content = $$("div", {
  1754. className: "U_MD_D_KO",
  1755. "onmousedown": U.UF.C.closure(function (obj) {
  1756. //防止拖动图标即打开了桌面应用
  1757. U.MD.D.click(this, obj);
  1758. }, [_studentDesktopIconInfo[i]]),
  1759. "onclick": U.UF.C.closure(function (obj) {
  1760. //防止拖动图标即打开了桌面应用
  1761. U.MD.D.click(this, obj);
  1762. }, [_studentDesktopIconInfo[i]])
  1763. }, _frag); //
  1764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1767. }
  1768. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1769. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1770. _content = $$("div", {
  1771. className: "U_MD_D_KO",
  1772. "onmousedown": U.UF.C.closure(function (obj) {
  1773. //防止拖动图标即打开了桌面应用
  1774. U.MD.D.click(this, obj);
  1775. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1776. "onclick": U.UF.C.closure(function (obj) {
  1777. //防止拖动图标即打开了桌面应用
  1778. U.MD.D.click(this, obj);
  1779. }, [_hkZJLSStudentDeskIconInfo[i]])
  1780. }, _frag); //
  1781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1784. } //
  1785. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1786. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1787. _content = $$("div", {
  1788. className: "U_MD_D_KO",
  1789. "onmousedown": U.UF.C.closure(function (obj) {
  1790. //防止拖动图标即打开了桌面应用
  1791. U.MD.D.click(this, obj);
  1792. }, [_ytyStudentDeskIconInfo[i]]),
  1793. "onclick": U.UF.C.closure(function (obj) {
  1794. //防止拖动图标即打开了桌面应用
  1795. U.MD.D.click(this, obj);
  1796. }, [_ytyStudentDeskIconInfo[i]])
  1797. }, _frag); //
  1798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1801. } //
  1802. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1803. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1804. _content = $$("div", {
  1805. className: "U_MD_D_KO",
  1806. "onmousedown": U.UF.C.closure(function (obj) {
  1807. //防止拖动图标即打开了桌面应用
  1808. U.MD.D.click(this, obj);
  1809. }, [_jccssylStudentDeskIconInfo[i]]),
  1810. "onclick": U.UF.C.closure(function (obj) {
  1811. //防止拖动图标即打开了桌面应用
  1812. U.MD.D.click(this, obj);
  1813. }, [_jccssylStudentDeskIconInfo[i]])
  1814. }, _frag); //
  1815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1818. }
  1819. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1820. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1821. _content = $$("div", {
  1822. className: "U_MD_D_KO",
  1823. "onmousedown": U.UF.C.closure(function (obj) {
  1824. //防止拖动图标即打开了桌面应用
  1825. U.MD.D.click(this, obj);
  1826. }, [_scnuaiStudentDeskIconInfo[i]]),
  1827. "onclick": U.UF.C.closure(function (obj) {
  1828. //防止拖动图标即打开了桌面应用
  1829. U.MD.D.click(this, obj);
  1830. }, [_scnuaiStudentDeskIconInfo[i]])
  1831. }, _frag); //
  1832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1835. }
  1836. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1837. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1838. _content = $$("div", {
  1839. className: "U_MD_D_KO",
  1840. "onmousedown": U.UF.C.closure(function (obj) {
  1841. //防止拖动图标即打开了桌面应用
  1842. U.MD.D.click(this, obj);
  1843. }, [_caleStudentDeskIconInfo[i]]),
  1844. "onclick": U.UF.C.closure(function (obj) {
  1845. //防止拖动图标即打开了桌面应用
  1846. U.MD.D.click(this, obj);
  1847. }, [_caleStudentDeskIconInfo[i]])
  1848. }, _frag); //
  1849. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1850. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1851. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1852. }
  1853. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1854. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1855. _content = $$("div", {
  1856. className: "U_MD_D_KO",
  1857. "onmousedown": U.UF.C.closure(function (obj) {
  1858. //防止拖动图标即打开了桌面应用
  1859. U.MD.D.click(this, obj);
  1860. }, [_thuioeStudentDeskIconInfo[i]]),
  1861. "onclick": U.UF.C.closure(function (obj) {
  1862. //防止拖动图标即打开了桌面应用
  1863. U.MD.D.click(this, obj);
  1864. }, [_thuioeStudentDeskIconInfo[i]])
  1865. }, _frag); //
  1866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1869. }
  1870. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1871. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1872. _content = $$("div", {
  1873. className: "U_MD_D_KO",
  1874. "onmousedown": U.UF.C.closure(function (obj) {
  1875. //防止拖动图标即打开了桌面应用
  1876. U.MD.D.click(this, obj);
  1877. }, [_tpcStudentDeskIconInfo[i]]),
  1878. "onclick": U.UF.C.closure(function (obj) {
  1879. //防止拖动图标即打开了桌面应用
  1880. U.MD.D.click(this, obj);
  1881. }, [_tpcStudentDeskIconInfo[i]])
  1882. }, _frag); //
  1883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1886. } //
  1887. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1888. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1889. _content = $$("div", {
  1890. className: "U_MD_D_KO",
  1891. "onmousedown": U.UF.C.closure(function (obj) {
  1892. //防止拖动图标即打开了桌面应用
  1893. U.MD.D.click(this, obj);
  1894. }, [_chjyjStudentDeskIconInfo[i]]),
  1895. "onclick": U.UF.C.closure(function (obj) {
  1896. //防止拖动图标即打开了桌面应用
  1897. U.MD.D.click(this, obj);
  1898. }, [_chjyjStudentDeskIconInfo[i]])
  1899. }, _frag); //
  1900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1903. }
  1904. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1905. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1906. _content = $$("div", {
  1907. className: "U_MD_D_KO",
  1908. "onmousedown": U.UF.C.closure(function (obj) {
  1909. //防止拖动图标即打开了桌面应用
  1910. U.MD.D.click(this, obj);
  1911. }, [_szjkyStudentDeskIconInfo[i]]),
  1912. "onclick": U.UF.C.closure(function (obj) {
  1913. //防止拖动图标即打开了桌面应用
  1914. U.MD.D.click(this, obj);
  1915. }, [_szjkyStudentDeskIconInfo[i]])
  1916. }, _frag); //
  1917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1920. }
  1921. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1922. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1923. _content = $$("div", {
  1924. className: "U_MD_D_KO",
  1925. "onmousedown": U.UF.C.closure(function (obj) {
  1926. //防止拖动图标即打开了桌面应用
  1927. U.MD.D.click(this, obj);
  1928. }, [_dseiStudentDeskIconInfo[i]]),
  1929. "onclick": U.UF.C.closure(function (obj) {
  1930. //防止拖动图标即打开了桌面应用
  1931. U.MD.D.click(this, obj);
  1932. }, [_dseiStudentDeskIconInfo[i]])
  1933. }, _frag); //
  1934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1937. }
  1938. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1939. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1940. _content = $$("div", {
  1941. className: "U_MD_D_KO",
  1942. "onmousedown": U.UF.C.closure(function (obj) {
  1943. //防止拖动图标即打开了桌面应用
  1944. U.MD.D.click(this, obj);
  1945. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1946. "onclick": U.UF.C.closure(function (obj) {
  1947. //防止拖动图标即打开了桌面应用
  1948. U.MD.D.click(this, obj);
  1949. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1950. }, _frag); //
  1951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1954. }
  1955. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  1956. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  1957. _content = $$("div", {
  1958. className: "U_MD_D_KO",
  1959. "onmousedown": U.UF.C.closure(function (obj) {
  1960. //防止拖动图标即打开了桌面应用
  1961. U.MD.D.click(this, obj);
  1962. }, [_nsfxStudentDeskIconInfo[i]]),
  1963. "onclick": U.UF.C.closure(function (obj) {
  1964. //防止拖动图标即打开了桌面应用
  1965. U.MD.D.click(this, obj);
  1966. }, [_nsfxStudentDeskIconInfo[i]])
  1967. }, _frag); //
  1968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  1970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  1971. }
  1972. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  1973. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  1974. _content = $$("div", {
  1975. className: "U_MD_D_KO",
  1976. "onmousedown": U.UF.C.closure(function (obj) {
  1977. //防止拖动图标即打开了桌面应用
  1978. U.MD.D.click(this, obj);
  1979. }, [_stiaStudentDeskIconInfo[i]]),
  1980. "onclick": U.UF.C.closure(function (obj) {
  1981. //防止拖动图标即打开了桌面应用
  1982. U.MD.D.click(this, obj);
  1983. }, [_stiaStudentDeskIconInfo[i]])
  1984. }, _frag); //
  1985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  1987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  1988. }
  1989. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1990. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1991. _content = $$("div", {
  1992. className: "U_MD_D_KO",
  1993. "onmousedown": U.UF.C.closure(function (obj) {
  1994. //防止拖动图标即打开了桌面应用
  1995. U.MD.D.click(this, obj);
  1996. }, [_siesStudentDeskIconInfo[i]]),
  1997. "onclick": U.UF.C.closure(function (obj) {
  1998. //防止拖动图标即打开了桌面应用
  1999. U.MD.D.click(this, obj);
  2000. }, [_siesStudentDeskIconInfo[i]])
  2001. }, _frag); //
  2002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2005. }
  2006. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2007. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2008. _content = $$("div", {
  2009. className: "U_MD_D_KO",
  2010. "onmousedown": U.UF.C.closure(function (obj) {
  2011. //防止拖动图标即打开了桌面应用
  2012. U.MD.D.click(this, obj);
  2013. }, [_guzmsStudentDeskIconInfo[i]]),
  2014. "onclick": U.UF.C.closure(function (obj) {
  2015. //防止拖动图标即打开了桌面应用
  2016. U.MD.D.click(this, obj);
  2017. }, [_guzmsStudentDeskIconInfo[i]])
  2018. }, _frag); //
  2019. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2020. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2021. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2022. }
  2023. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2024. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2025. _content = $$("div", {
  2026. className: "U_MD_D_KO",
  2027. "onmousedown": U.UF.C.closure(function (obj) {
  2028. //防止拖动图标即打开了桌面应用
  2029. U.MD.D.click(this, obj);
  2030. }, [_hkStudentDeskIconInfo[i]]),
  2031. "onclick": U.UF.C.closure(function (obj) {
  2032. //防止拖动图标即打开了桌面应用
  2033. U.MD.D.click(this, obj);
  2034. }, [_hkStudentDeskIconInfo[i]])
  2035. }, _frag); //
  2036. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2037. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2038. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2039. }
  2040. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2041. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2042. _content = $$("div", {
  2043. className: "U_MD_D_KO",
  2044. "onmousedown": U.UF.C.closure(function (obj) {
  2045. //防止拖动图标即打开了桌面应用
  2046. U.MD.D.click(this, obj);
  2047. }, [_hkaceStudentDeskIconInfo[i]]),
  2048. "onclick": U.UF.C.closure(function (obj) {
  2049. //防止拖动图标即打开了桌面应用
  2050. U.MD.D.click(this, obj);
  2051. }, [_hkaceStudentDeskIconInfo[i]])
  2052. }, _frag); //
  2053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2056. }
  2057. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2058. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2059. _content = $$("div", {
  2060. className: "U_MD_D_KO",
  2061. "onmousedown": U.UF.C.closure(function (obj) {
  2062. //防止拖动图标即打开了桌面应用
  2063. U.MD.D.click(this, obj);
  2064. }, [_cocobizStudentDeskIconInfo[i]]),
  2065. "onclick": U.UF.C.closure(function (obj) {
  2066. //防止拖动图标即打开了桌面应用
  2067. U.MD.D.click(this, obj);
  2068. }, [_cocobizStudentDeskIconInfo[i]])
  2069. }, _frag); //
  2070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2073. }
  2074. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2075. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2076. _content = $$("div", {
  2077. className: "U_MD_D_KO",
  2078. "onmousedown": U.UF.C.closure(function (obj) {
  2079. //防止拖动图标即打开了桌面应用
  2080. U.MD.D.click(this, obj);
  2081. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2082. "onclick": U.UF.C.closure(function (obj) {
  2083. //防止拖动图标即打开了桌面应用
  2084. U.MD.D.click(this, obj);
  2085. }, [_xxzjkyStudentDeskIconInfo[i]])
  2086. }, _frag); //
  2087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2090. }
  2091. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2092. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2093. _content = $$("div", {
  2094. className: "U_MD_D_KO",
  2095. "onmousedown": U.UF.C.closure(function (obj) {
  2096. //防止拖动图标即打开了桌面应用
  2097. U.MD.D.click(this, obj);
  2098. }, [_studentDesktopIconInfo[i]]),
  2099. "onclick": U.UF.C.closure(function (obj) {
  2100. //防止拖动图标即打开了桌面应用
  2101. U.MD.D.click(this, obj);
  2102. }, [_studentDesktopIconInfo[i]])
  2103. }, _frag); //
  2104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2107. }
  2108. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2109. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2110. _content = $$("div", {
  2111. className: "U_MD_D_KO",
  2112. "onmousedown": U.UF.C.closure(function (obj) {
  2113. //防止拖动图标即打开了桌面应用
  2114. U.MD.D.click(this, obj);
  2115. }, [_tcStudentDeskIconInfo[i]]),
  2116. "onclick": U.UF.C.closure(function (obj) {
  2117. //防止拖动图标即打开了桌面应用
  2118. U.MD.D.click(this, obj);
  2119. }, [_tcStudentDeskIconInfo[i]])
  2120. }, _frag); //
  2121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2124. }
  2125. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2126. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2127. _content = $$("div", {
  2128. className: "U_MD_D_KO",
  2129. "onmousedown": U.UF.C.closure(function (obj) {
  2130. //防止拖动图标即打开了桌面应用
  2131. U.MD.D.click(this, obj);
  2132. }, [_szscStudentDeskIconInfo[i]]),
  2133. "onclick": U.UF.C.closure(function (obj) {
  2134. //防止拖动图标即打开了桌面应用
  2135. U.MD.D.click(this, obj);
  2136. }, [_szscStudentDeskIconInfo[i]])
  2137. }, _frag); //
  2138. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2139. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2140. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2141. }
  2142. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2143. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2144. _content = $$("div", {
  2145. className: "U_MD_D_KO",
  2146. "onmousedown": U.UF.C.closure(function (obj) {
  2147. //防止拖动图标即打开了桌面应用
  2148. U.MD.D.click(this, obj);
  2149. }, [_studentDesktopIconInfo3[i]]),
  2150. "onclick": U.UF.C.closure(function (obj) {
  2151. //防止拖动图标即打开了桌面应用
  2152. U.MD.D.click(this, obj);
  2153. }, [_studentDesktopIconInfo3[i]])
  2154. }, _frag); //
  2155. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2156. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2157. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2158. }
  2159. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2160. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2161. _content = $$("div", {
  2162. className: "U_MD_D_KO",
  2163. "onmousedown": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_studentDesktopIconInfo2[i]]),
  2167. "onclick": U.UF.C.closure(function (obj) {
  2168. //防止拖动图标即打开了桌面应用
  2169. U.MD.D.click(this, obj);
  2170. }, [_studentDesktopIconInfo2[i]])
  2171. }, _frag); //
  2172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2175. }
  2176. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2177. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2178. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2179. continue
  2180. }
  2181. _content = $$("div", {
  2182. className: "U_MD_D_KO",
  2183. "onmousedown": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_wanketeacherDesktopIconInfo[i]]),
  2187. "onclick": U.UF.C.closure(function (obj) {
  2188. //防止拖动图标即打开了桌面应用
  2189. U.MD.D.click(this, obj);
  2190. }, [_wanketeacherDesktopIconInfo[i]])
  2191. }, _frag); //
  2192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2195. }
  2196. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2197. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2198. _content = $$("div", {
  2199. className: "U_MD_D_KO",
  2200. "onmousedown": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_wankeAdminDesktopIconInfo[i]]),
  2204. "onclick": U.UF.C.closure(function (obj) {
  2205. //防止拖动图标即打开了桌面应用
  2206. U.MD.D.click(this, obj);
  2207. }, [_wankeAdminDesktopIconInfo[i]])
  2208. }, _frag); //
  2209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2212. }
  2213. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2214. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2215. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2216. continue
  2217. }
  2218. _content = $$("div", {
  2219. className: "U_MD_D_KO",
  2220. "onmousedown": U.UF.C.closure(function (obj) {
  2221. //防止拖动图标即打开了桌面应用
  2222. U.MD.D.click(this, obj);
  2223. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2224. "onclick": U.UF.C.closure(function (obj) {
  2225. //防止拖动图标即打开了桌面应用
  2226. U.MD.D.click(this, obj);
  2227. }, [_scnuaiTeacherDeskIconInfo[i]])
  2228. }, _frag); //
  2229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2232. }
  2233. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2234. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2235. _content = $$("div", {
  2236. className: "U_MD_D_KO",
  2237. "onmousedown": U.UF.C.closure(function (obj) {
  2238. //防止拖动图标即打开了桌面应用
  2239. U.MD.D.click(this, obj);
  2240. }, [_scnuaiAdminDeskIconInfo[i]]),
  2241. "onclick": U.UF.C.closure(function (obj) {
  2242. //防止拖动图标即打开了桌面应用
  2243. U.MD.D.click(this, obj);
  2244. }, [_scnuaiAdminDeskIconInfo[i]])
  2245. }, _frag); //
  2246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2249. }
  2250. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2251. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2252. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2253. continue
  2254. }
  2255. _content = $$("div", {
  2256. className: "U_MD_D_KO",
  2257. "onmousedown": U.UF.C.closure(function (obj) {
  2258. //防止拖动图标即打开了桌面应用
  2259. U.MD.D.click(this, obj);
  2260. }, [_jccssylTeacherDeskIconInfo[i]]),
  2261. "onclick": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_jccssylTeacherDeskIconInfo[i]])
  2265. }, _frag); //
  2266. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2267. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2268. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2269. }
  2270. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2271. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2272. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2273. continue
  2274. }
  2275. _content = $$("div", {
  2276. className: "U_MD_D_KO",
  2277. "onmousedown": U.UF.C.closure(function (obj) {
  2278. //防止拖动图标即打开了桌面应用
  2279. U.MD.D.click(this, obj);
  2280. }, [_caleTeacherDeskIconInfo[i]]),
  2281. "onclick": U.UF.C.closure(function (obj) {
  2282. //防止拖动图标即打开了桌面应用
  2283. U.MD.D.click(this, obj);
  2284. }, [_caleTeacherDeskIconInfo[i]])
  2285. }, _frag); //
  2286. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2287. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2288. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2289. }
  2290. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2291. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2292. _content = $$("div", {
  2293. className: "U_MD_D_KO",
  2294. "onmousedown": U.UF.C.closure(function (obj) {
  2295. //防止拖动图标即打开了桌面应用
  2296. U.MD.D.click(this, obj);
  2297. }, [_tpcOrganizerDeskIconInfo[i]]),
  2298. "onclick": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_tpcOrganizerDeskIconInfo[i]])
  2302. }, _frag); //
  2303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2306. }
  2307. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2308. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2309. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2310. continue
  2311. }
  2312. _content = $$("div", {
  2313. className: "U_MD_D_KO",
  2314. "onmousedown": U.UF.C.closure(function (obj) {
  2315. //防止拖动图标即打开了桌面应用
  2316. U.MD.D.click(this, obj);
  2317. }, [_tpcTeacherDeskIconInfo[i]]),
  2318. "onclick": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_tpcTeacherDeskIconInfo[i]])
  2322. }, _frag); //
  2323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2326. }
  2327. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2328. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2329. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2330. continue
  2331. }
  2332. _content = $$("div", {
  2333. className: "U_MD_D_KO",
  2334. "onmousedown": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_teacherDesktopIconInfo2[i]]),
  2338. "onclick": U.UF.C.closure(function (obj) {
  2339. //防止拖动图标即打开了桌面应用
  2340. U.MD.D.click(this, obj);
  2341. }, [_teacherDesktopIconInfo2[i]])
  2342. }, _frag); //
  2343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2346. }
  2347. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2348. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2349. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2350. continue
  2351. }
  2352. _content = $$("div", {
  2353. className: "U_MD_D_KO",
  2354. "onmousedown": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_thuioeTeacherDeskIconInfo[i]]),
  2358. "onclick": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_thuioeTeacherDeskIconInfo[i]])
  2362. }, _frag); //
  2363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2366. }
  2367. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2368. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2369. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2370. continue
  2371. }
  2372. _content = $$("div", {
  2373. className: "U_MD_D_KO",
  2374. "onmousedown": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_lotechTeacherDeskIconInfo[i]]),
  2378. "onclick": U.UF.C.closure(function (obj) {
  2379. //防止拖动图标即打开了桌面应用
  2380. U.MD.D.click(this, obj);
  2381. }, [_lotechTeacherDeskIconInfo[i]])
  2382. }, _frag); //
  2383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2386. }//
  2387. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2388. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2389. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2390. continue
  2391. }
  2392. _content = $$("div", {
  2393. className: "U_MD_D_KO",
  2394. "onmousedown": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2398. "onclick": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2402. }, _frag); //
  2403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2406. }
  2407. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2408. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2409. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2410. continue
  2411. }
  2412. _content = $$("div", {
  2413. className: "U_MD_D_KO",
  2414. "onmousedown": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_siesTeacherDeskIconInfo[i]]),
  2418. "onclick": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_siesTeacherDeskIconInfo[i]])
  2422. }, _frag); //
  2423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2426. }
  2427. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2428. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2429. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2430. continue
  2431. }
  2432. _content = $$("div", {
  2433. className: "U_MD_D_KO",
  2434. "onmousedown": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_guzmsTeacherDeskIconInfo[i]]),
  2438. "onclick": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_guzmsTeacherDeskIconInfo[i]])
  2442. }, _frag); //
  2443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2446. }
  2447. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2448. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2449. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2450. continue
  2451. }
  2452. _content = $$("div", {
  2453. className: "U_MD_D_KO",
  2454. "onmousedown": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_longhuaTeacherDeskIconInfo[i]]),
  2458. "onclick": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_longhuaTeacherDeskIconInfo[i]])
  2462. }, _frag); //
  2463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2466. }
  2467. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2468. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2469. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2470. continue
  2471. }
  2472. _content = $$("div", {
  2473. className: "U_MD_D_KO",
  2474. "onmousedown": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_ytyTeacherDeskIconInfo[i]]),
  2478. "onclick": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_ytyTeacherDeskIconInfo[i]])
  2482. }, _frag); //
  2483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2486. }
  2487. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2488. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2489. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2490. continue
  2491. }
  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. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_yunhaiTeacherDeskIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2506. } //_hkStudentDeskIconInfo
  2507. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2508. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2509. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2510. continue
  2511. }
  2512. _content = $$("div", {
  2513. className: "U_MD_D_KO",
  2514. "onmousedown": U.UF.C.closure(function (obj) {
  2515. //防止拖动图标即打开了桌面应用
  2516. U.MD.D.click(this, obj);
  2517. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2518. "onclick": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2522. }, _frag); //
  2523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2526. }
  2527. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2528. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2529. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2530. continue
  2531. }
  2532. _content = $$("div", {
  2533. className: "U_MD_D_KO",
  2534. "onmousedown": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_hkTeacherDeskIconInfo[i]]),
  2538. "onclick": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_hkTeacherDeskIconInfo[i]])
  2542. }, _frag); //
  2543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2546. }
  2547. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2548. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2549. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2550. continue
  2551. }
  2552. _content = $$("div", {
  2553. className: "U_MD_D_KO",
  2554. "onmousedown": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_hkaceTeacherDeskIconInfo[i]]),
  2558. "onclick": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_hkaceTeacherDeskIconInfo[i]])
  2562. }, _frag); //
  2563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2566. }
  2567. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2568. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2569. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2570. continue
  2571. }
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_cocobizTeacherDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_cocobizTeacherDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2588. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2589. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2590. continue
  2591. }
  2592. _content = $$("div", {
  2593. className: "U_MD_D_KO",
  2594. "onmousedown": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2598. "onclick": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2602. }, _frag); //
  2603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2606. }
  2607. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2608. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2609. _content = $$("div", {
  2610. className: "U_MD_D_KO",
  2611. "onmousedown": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_gdjgAdminDeskIconInfo[i]]),
  2615. "onclick": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_gdjgAdminDeskIconInfo[i]])
  2619. }, _frag); //
  2620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2623. }
  2624. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2625. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2626. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2627. continue
  2628. }
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_gdjgTeacherDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_gdjgTeacherDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2643. }
  2644. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2645. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2646. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2647. continue
  2648. }
  2649. _content = $$("div", {
  2650. className: "U_MD_D_KO",
  2651. "onmousedown": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_szherTeacherDeskIconInfo[i]]),
  2655. "onclick": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_szherTeacherDeskIconInfo[i]])
  2659. }, _frag); //
  2660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2663. }
  2664. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2665. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2666. _content = $$("div", {
  2667. className: "U_MD_D_KO",
  2668. "onmousedown": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_heyuannAdminDeskIconInfo[i]]),
  2672. "onclick": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_heyuannAdminDeskIconInfo[i]])
  2676. }, _frag); //
  2677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2680. }
  2681. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2682. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2683. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2684. continue
  2685. }
  2686. _content = $$("div", {
  2687. className: "U_MD_D_KO",
  2688. "onmousedown": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_heyuanTeacherDeskIconInfo[i]]),
  2692. "onclick": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_heyuanTeacherDeskIconInfo[i]])
  2696. }, _frag); //
  2697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2700. } //
  2701. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2702. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2703. _content = $$("div", {
  2704. className: "U_MD_D_KO",
  2705. "onmousedown": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_dseiAdminDeskIconInfo[i]]),
  2709. "onclick": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_dseiAdminDeskIconInfo[i]])
  2713. }, _frag); //
  2714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2717. }
  2718. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2719. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2720. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2721. continue
  2722. }
  2723. _content = $$("div", {
  2724. className: "U_MD_D_KO",
  2725. "onmousedown": U.UF.C.closure(function (obj) {
  2726. //防止拖动图标即打开了桌面应用
  2727. U.MD.D.click(this, obj);
  2728. }, [_dseiTeacherDeskIconInfo[i]]),
  2729. "onclick": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_dseiTeacherDeskIconInfo[i]])
  2733. }, _frag); //
  2734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2737. } //
  2738. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2739. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2740. _content = $$("div", {
  2741. className: "U_MD_D_KO",
  2742. "onmousedown": U.UF.C.closure(function (obj) {
  2743. //防止拖动图标即打开了桌面应用
  2744. U.MD.D.click(this, obj);
  2745. }, [_chjyjAdminDeskIconInfo[i]]),
  2746. "onclick": U.UF.C.closure(function (obj) {
  2747. //防止拖动图标即打开了桌面应用
  2748. U.MD.D.click(this, obj);
  2749. }, [_chjyjAdminDeskIconInfo[i]])
  2750. }, _frag); //
  2751. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2752. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2753. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2754. }//
  2755. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2756. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2757. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2758. continue
  2759. }
  2760. _content = $$("div", {
  2761. className: "U_MD_D_KO",
  2762. "onmousedown": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_chjyjTeacherDeskIconInfo[i]]),
  2766. "onclick": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_chjyjTeacherDeskIconInfo[i]])
  2770. }, _frag); //
  2771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2774. }
  2775. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2776. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2777. _content = $$("div", {
  2778. className: "U_MD_D_KO",
  2779. "onmousedown": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_szjkyAdminDeskIconInfo[i]]),
  2783. "onclick": U.UF.C.closure(function (obj) {
  2784. //防止拖动图标即打开了桌面应用
  2785. U.MD.D.click(this, obj);
  2786. }, [_szjkyAdminDeskIconInfo[i]])
  2787. }, _frag); //
  2788. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2789. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2790. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2791. }//
  2792. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2793. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2794. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2795. continue
  2796. }
  2797. _content = $$("div", {
  2798. className: "U_MD_D_KO",
  2799. "onmousedown": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_szjkyTeacherDeskIconInfo[i]]),
  2803. "onclick": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_szjkyTeacherDeskIconInfo[i]])
  2807. }, _frag); //
  2808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2811. }
  2812. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2813. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2814. _content = $$("div", {
  2815. className: "U_MD_D_KO",
  2816. "onmousedown": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_futianAdminDeskIconInfo[i]]),
  2820. "onclick": U.UF.C.closure(function (obj) {
  2821. //防止拖动图标即打开了桌面应用
  2822. U.MD.D.click(this, obj);
  2823. }, [_futianAdminDeskIconInfo[i]])
  2824. }, _frag); //
  2825. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2826. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2827. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2828. }
  2829. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2830. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2831. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2832. continue
  2833. }
  2834. _content = $$("div", {
  2835. className: "U_MD_D_KO",
  2836. "onmousedown": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_futianTeacherDeskIconInfo[i]]),
  2840. "onclick": U.UF.C.closure(function (obj) {
  2841. //防止拖动图标即打开了桌面应用
  2842. U.MD.D.click(this, obj);
  2843. }, [_futianTeacherDeskIconInfo[i]])
  2844. }, _frag); //
  2845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2848. }
  2849. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2850. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2851. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2852. continue
  2853. }
  2854. _content = $$("div", {
  2855. className: "U_MD_D_KO",
  2856. "onmousedown": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_MingdeTeacherDeskIcon[i]]),
  2860. "onclick": U.UF.C.closure(function (obj) {
  2861. //防止拖动图标即打开了桌面应用
  2862. U.MD.D.click(this, obj);
  2863. }, [_MingdeTeacherDeskIcon[i]])
  2864. }, _frag); //
  2865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2868. }
  2869. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2870. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2871. _content = $$("div", {
  2872. className: "U_MD_D_KO",
  2873. "onmousedown": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_lhsAdminDesktopIconInfo[i]]),
  2877. "onclick": U.UF.C.closure(function (obj) {
  2878. //防止拖动图标即打开了桌面应用
  2879. U.MD.D.click(this, obj);
  2880. }, [_lhsAdminDesktopIconInfo[i]])
  2881. }, _frag); //
  2882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2885. }
  2886. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2887. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2888. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2889. continue
  2890. }
  2891. _content = $$("div", {
  2892. className: "U_MD_D_KO",
  2893. "onmousedown": U.UF.C.closure(function (obj) {
  2894. //防止拖动图标即打开了桌面应用
  2895. U.MD.D.click(this, obj);
  2896. }, [_lhsteacherDesktopIconInfo[i]]),
  2897. "onclick": U.UF.C.closure(function (obj) {
  2898. //防止拖动图标即打开了桌面应用
  2899. U.MD.D.click(this, obj);
  2900. }, [_lhsteacherDesktopIconInfo[i]])
  2901. }, _frag); //
  2902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2905. }
  2906. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2907. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2908. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2909. continue
  2910. }
  2911. _content = $$("div", {
  2912. className: "U_MD_D_KO",
  2913. "onmousedown": U.UF.C.closure(function (obj) {
  2914. //防止拖动图标即打开了桌面应用
  2915. U.MD.D.click(this, obj);
  2916. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2917. "onclick": U.UF.C.closure(function (obj) {
  2918. //防止拖动图标即打开了桌面应用
  2919. U.MD.D.click(this, obj);
  2920. }, [_zhoujiateacherDesktopIconInfo[i]])
  2921. }, _frag); //
  2922. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2923. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2924. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2925. }
  2926. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2927. for (i = 0; i < _hanDeskIcon.length; i++) {
  2928. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2929. continue
  2930. }
  2931. _content = $$("div", {
  2932. className: "U_MD_D_KO",
  2933. "onmousedown": U.UF.C.closure(function (obj) {
  2934. //防止拖动图标即打开了桌面应用
  2935. U.MD.D.click(this, obj);
  2936. }, [_hanDeskIcon[i]]),
  2937. "onclick": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_hanDeskIcon[i]])
  2941. }, _frag); //
  2942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2945. }
  2946. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2947. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2948. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2949. continue
  2950. }
  2951. _content = $$("div", {
  2952. className: "U_MD_D_KO",
  2953. "onmousedown": U.UF.C.closure(function (obj) {
  2954. //防止拖动图标即打开了桌面应用
  2955. U.MD.D.click(this, obj);
  2956. }, [_orgStemDeskIcon[i]]),
  2957. "onclick": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_orgStemDeskIcon[i]])
  2961. }, _frag); //
  2962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2965. }
  2966. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2967. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2968. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2969. continue
  2970. }
  2971. _content = $$("div", {
  2972. className: "U_MD_D_KO",
  2973. "onmousedown": U.UF.C.closure(function (obj) {
  2974. //防止拖动图标即打开了桌面应用
  2975. U.MD.D.click(this, obj);
  2976. }, [_szulsDeskIcon[i]]),
  2977. "onclick": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_szulsDeskIcon[i]])
  2981. }, _frag); //
  2982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2985. }
  2986. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2987. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2988. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2989. continue
  2990. }
  2991. _content = $$("div", {
  2992. className: "U_MD_D_KO",
  2993. "onmousedown": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_orgDesktopIconInfo[i]]),
  2997. "onclick": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_orgDesktopIconInfo[i]])
  3001. }, _frag); //
  3002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3005. }
  3006. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3007. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3008. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3009. continue
  3010. }
  3011. _content = $$("div", {
  3012. className: "U_MD_D_KO",
  3013. "onmousedown": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_schoolDesktopIconInfo[i]]),
  3017. "onclick": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_schoolDesktopIconInfo[i]])
  3021. }, _frag); //
  3022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3025. }
  3026. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3027. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3028. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3029. continue
  3030. }
  3031. _content = $$("div", {
  3032. className: "U_MD_D_KO",
  3033. "onmousedown": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_GMteacherDesktopIconInfo[i]]),
  3037. "onclick": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_GMteacherDesktopIconInfo[i]])
  3041. }, _frag); //
  3042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3045. }
  3046. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3047. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3048. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3049. continue
  3050. }
  3051. _content = $$("div", {
  3052. className: "U_MD_D_KO",
  3053. "onmousedown": U.UF.C.closure(function (obj) {
  3054. //防止拖动图标即打开了桌面应用
  3055. U.MD.D.click(this, obj);
  3056. }, [_SONGteacherDesktopIconInfo[i]]),
  3057. "onclick": U.UF.C.closure(function (obj) {
  3058. //防止拖动图标即打开了桌面应用
  3059. U.MD.D.click(this, obj);
  3060. }, [_SONGteacherDesktopIconInfo[i]])
  3061. }, _frag); //
  3062. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3063. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3064. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3065. }
  3066. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3067. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3068. _content = $$("div", {
  3069. className: "U_MD_D_KO",
  3070. "onmousedown": U.UF.C.closure(function (obj) {
  3071. //防止拖动图标即打开了桌面应用
  3072. U.MD.D.click(this, obj);
  3073. }, [_GMstudentDesktopIconInfo[i]]),
  3074. "onclick": U.UF.C.closure(function (obj) {
  3075. //防止拖动图标即打开了桌面应用
  3076. U.MD.D.click(this, obj);
  3077. }, [_GMstudentDesktopIconInfo[i]])
  3078. }, _frag); //
  3079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3082. }
  3083. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3084. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3085. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3086. continue
  3087. }
  3088. _content = $$("div", {
  3089. className: "U_MD_D_KO",
  3090. "onmousedown": U.UF.C.closure(function (obj) {
  3091. //防止拖动图标即打开了桌面应用
  3092. U.MD.D.click(this, obj);
  3093. }, [_tcTeacherDeskIconInfo[i]]),
  3094. "onclick": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_tcTeacherDeskIconInfo[i]])
  3098. }, _frag); //
  3099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3102. }
  3103. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3104. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3105. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3106. continue
  3107. }
  3108. _content = $$("div", {
  3109. className: "U_MD_D_KO",
  3110. "onmousedown": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_tcOrganizerDeskIconInfo[i]]),
  3114. "onclick": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_tcOrganizerDeskIconInfo[i]])
  3118. }, _frag); //
  3119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3122. }
  3123. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3124. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3125. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3126. continue
  3127. }
  3128. _content = $$("div", {
  3129. className: "U_MD_D_KO",
  3130. "onmousedown": U.UF.C.closure(function (obj) {
  3131. //防止拖动图标即打开了桌面应用
  3132. U.MD.D.click(this, obj);
  3133. }, [_szscTeacherDeskIconInfo[i]]),
  3134. "onclick": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_szscTeacherDeskIconInfo[i]])
  3138. }, _frag); //
  3139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3142. }
  3143. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3144. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3145. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3146. continue
  3147. }
  3148. _content = $$("div", {
  3149. className: "U_MD_D_KO",
  3150. "onmousedown": U.UF.C.closure(function (obj) {
  3151. //防止拖动图标即打开了桌面应用
  3152. U.MD.D.click(this, obj);
  3153. }, [_szscOrganizerDeskIconInfo[i]]),
  3154. "onclick": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_szscOrganizerDeskIconInfo[i]])
  3158. }, _frag); //
  3159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3162. }
  3163. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3164. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3165. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3166. continue
  3167. }
  3168. _content = $$("div", {
  3169. className: "U_MD_D_KO",
  3170. "onmousedown": U.UF.C.closure(function (obj) {
  3171. //防止拖动图标即打开了桌面应用
  3172. U.MD.D.click(this, obj);
  3173. }, [_nsfxTeacherDeskIconInfo[i]]),
  3174. "onclick": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_nsfxTeacherDeskIconInfo[i]])
  3178. }, _frag); //
  3179. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3182. }
  3183. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3184. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3185. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3186. continue
  3187. }
  3188. _content = $$("div", {
  3189. className: "U_MD_D_KO",
  3190. "onmousedown": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_stiaTeacherDeskIconInfo[i]]),
  3194. "onclick": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_stiaTeacherDeskIconInfo[i]])
  3198. }, _frag); //
  3199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3202. }
  3203. } else {
  3204. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3205. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3206. continue
  3207. }
  3208. _content = $$("div", {
  3209. className: "U_MD_D_KO",
  3210. "onmousedown": U.UF.C.closure(function (obj) {
  3211. //防止拖动图标即打开了桌面应用
  3212. U.MD.D.click(this, obj);
  3213. }, [_teacherDesktopIconInfo[i]]),
  3214. "onclick": U.UF.C.closure(function (obj) {
  3215. //防止拖动图标即打开了桌面应用
  3216. U.MD.D.click(this, obj);
  3217. }, [_teacherDesktopIconInfo[i]])
  3218. }, _frag); //
  3219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3222. }
  3223. }
  3224. } else {
  3225. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3226. _content = $$("div", {
  3227. className: "U_MD_D_KO",
  3228. style: { 'width': '124px', 'height': '145px' },
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_easyDesktopIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_easyDesktopIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3241. }
  3242. }
  3243. if (type == 1) {
  3244. //加载好后给图标定位
  3245. U.MD.D.iconPostion($(_frag).Child());
  3246. } else {
  3247. //加载好后给图标定位
  3248. U.MD.D.iconPostion2($(_frag).Child());
  3249. }
  3250. //把图标加载到页面
  3251. el.appendChild(_frag);
  3252. }
  3253. /**
  3254. * 显示任务栏
  3255. *
  3256. * @param {element} 桌面元素
  3257. */
  3258. U.MD.D.I.displayTaskbar = function (el) {
  3259. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3260. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3261. //任务栏位置变化
  3262. U.selectEl(el).css({ "bottom": "0px" });
  3263. //桌面位置变话
  3264. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3265. }
  3266. }
  3267. //#region 桌面图标拖动逻辑
  3268. /**
  3269. * 桌面排列图标
  3270. *
  3271. * @param {element} 桌面元素
  3272. * @param {object} 上下相距的距离
  3273. * @param {object} 左右相距的距离
  3274. * @return {object} 命名空间
  3275. */
  3276. U.MD.D.iconPostion = function (childs, top, left) {
  3277. var i; //用于循环处理
  3278. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3279. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3280. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3281. for (i = 0; i < childs.length; i++) {
  3282. //如果竖排top超过了范围处理
  3283. if (top + 95 > US.height - 10) {
  3284. //left超过了页面范围处理,则向上重叠打印处理
  3285. if ((left + 180) > US.width) {
  3286. top -= 110;
  3287. left -= 90;
  3288. }
  3289. //没有超过范围,那么left+90添加到下一个竖排打印
  3290. else {
  3291. left += 90;
  3292. top = 15;
  3293. };
  3294. }
  3295. //给图标的位置赋值
  3296. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3297. if (i < childs.length - 1) {
  3298. //页面图标每次向下加95
  3299. top += 95;
  3300. }
  3301. }
  3302. //返回最后调用的图标的位置
  3303. return [top, left];
  3304. }
  3305. /**
  3306. * 桌面排列图标
  3307. *
  3308. * @param {element} 桌面元素
  3309. * @param {object} 上下相距的距离
  3310. * @param {object} 左右相距的距离
  3311. * @return {object} 命名空间
  3312. */
  3313. U.MD.D.iconPostion2 = function (childs, top, left) {
  3314. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3315. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3316. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3317. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3318. for (i = 0; i < childs.length; i++) {
  3319. //如果竖排top超过了范围处理
  3320. if (left + 150 > US.width - 10) {
  3321. //left超过了页面范围处理,则向上重叠打印处理
  3322. if ((top + 180) > US.Height) {
  3323. top -= 150;
  3324. left -= 150;
  3325. }
  3326. //没有超过范围,那么left+90添加到下一个竖排打印
  3327. else {
  3328. top += 150;
  3329. left = ol;
  3330. };
  3331. }
  3332. //给图标的位置赋值
  3333. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3334. if (i < childs.length - 1) {
  3335. //页面图标每次向下加95
  3336. left += 150;
  3337. }
  3338. }
  3339. //返回最后调用的图标的位置
  3340. return [top, left];
  3341. }
  3342. /**
  3343. * 桌面点击事件逻辑
  3344. *
  3345. * @param {element} 桌面元素
  3346. * @param {object} 上下相距的距离
  3347. * @param {object} 左右相距的距离
  3348. * @return {object} 命名空间
  3349. */
  3350. U.MD.D.click = function (el, obj) {
  3351. var _buttonnumber = event.button; //点击的按钮的事件值
  3352. var _userinfo = US.userInfo;
  3353. U.UF.EV.stopBubble(); //阻止向上冒泡
  3354. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3355. if (_buttonnumber < 2) {
  3356. //如果是click事件的处理
  3357. if (event.type == "click") {
  3358. //如果元素在mousemove事件中没有移动则出发click事件
  3359. if (!U.MD.D.I.IsDrag) {
  3360. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3361. U.alert("请先登录您的账号!");
  3362. setTimeout(() => {
  3363. U.MD.U.L.login();
  3364. }, 2000);
  3365. } else {
  3366. //打开应用处理
  3367. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3368. }
  3369. }
  3370. }
  3371. //如果是mouse事件的处理
  3372. else {
  3373. if (US.Config.type == '1') {
  3374. //拖动处理,添加拖动和拖动结束事件
  3375. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3376. }
  3377. }
  3378. U.MD.D.I.IsDrag = false;
  3379. }
  3380. }
  3381. /**
  3382. * 拖动的处理
  3383. *
  3384. */
  3385. U.MD.D.iconMove = function () {
  3386. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3387. U.MD.D.I.IsDrag = true;
  3388. }
  3389. /**
  3390. * 拖动结束后,这里是定位处理,以网状的形式定位
  3391. *
  3392. * @param {element} 拖动的元素
  3393. * @return {object} 命名空间
  3394. */
  3395. U.MD.D.iconUp = function (el) {
  3396. var _top = 15,
  3397. _left = 20,
  3398. _margin,
  3399. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3400. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3401. if (_positioninfo["OT"] > 15) {
  3402. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3403. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3404. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3405. }
  3406. if (_positioninfo["OL"] > 20) {
  3407. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3408. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3409. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3410. }
  3411. //while循环判断么一个重叠的元素
  3412. do {
  3413. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3414. _top = _positioninfo[0] + 95; //得到定位后的top
  3415. _left = _positioninfo[1]; //得到定位后的left
  3416. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3417. }
  3418. /**
  3419. * 判断拖动后图标是否重叠
  3420. *
  3421. * @param {element} 拖动的元素
  3422. * @param {element} 桌面所有的元素
  3423. * @param {array} 拖动元素的位置
  3424. ----------[0] 上 top
  3425. ----------[1] 左 left
  3426. * @return {object} 命名空间
  3427. */
  3428. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3429. //循环所有的图标
  3430. for (var i = 0; i < childs.length; i++) {
  3431. //判断有没有和该图标诶子重叠的元素
  3432. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3433. return childs[i]; //如果有返回
  3434. }
  3435. }
  3436. }
  3437. //#endregion
  3438. //#endregion
  3439. //#region 桌面应用
  3440. /**
  3441. * 打开应用
  3442. *
  3443. * @param {string} 类型
  3444. -----------------Disk 网盘系统
  3445. -----------------PDisk 学习系统网盘
  3446. -----------------Poto 图片
  3447. -----------------Video 视频
  3448. -----------------Music 音乐
  3449. -----------------Word word
  3450. -----------------Excel excel
  3451. -----------------Txt 记事本
  3452. -----------------PB 学习系统
  3453. -----------------Blog 朋友圈系统
  3454. -----------------FTP ftp系统
  3455. -----------------Group 好友群
  3456. -----------------SY 首页系统
  3457. -----------------Set 个人设置
  3458. -----------------XSet 系统设置
  3459. -----------------App 我们所有的app
  3460. -----------------BC c.1473.cn 平台
  3461. -----------------CWeb d.1473.cn 变成平台
  3462. -----------------其他的外联系统 我们统一用iframe打开
  3463. * @param {array} 类型
  3464. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3465. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3466. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3467. 如果第一个参数为其他,则无第二个参数
  3468. * @returns {array}
  3469. */
  3470. window.addEventListener('message', function (e) { // 监听 message 事件
  3471. // alert(e.data.type);
  3472. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3473. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3474. //3是展示全部阶段 2学生 1老师 4专家
  3475. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3476. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3477. //3是展示全部阶段 2学生 1老师 4专家
  3478. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3479. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3480. //3是展示全部阶段 2学生 1老师 4专家
  3481. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3482. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3483. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3484. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3485. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3486. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3487. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3488. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3489. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3490. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3491. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3492. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3493. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3494. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3495. //3是展示全部阶段 2学生 1老师 4专家
  3496. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3497. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3498. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3499. U.MD.D.I.selectUser();
  3500. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3501. var _formel = document.getElementById("study");
  3502. U.UF.F.windowZooming(_formel);
  3503. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3504. var _formel = document.getElementById("studyDetail");
  3505. U.UF.F.windowZooming(_formel);
  3506. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3507. var _formel = document.getElementById("studyDetail");
  3508. U.UF.F.windowZooming(_formel);
  3509. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3510. var _formel = document.getElementById("studentStudy");
  3511. U.UF.F.windowZooming(_formel);
  3512. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3513. // var _formel = document.getElementById("study");
  3514. //如果最大化了,那么就把他缩小
  3515. // if (_formel.ismaximize) {
  3516. // return;
  3517. // }
  3518. // U.UF.F.windowZooming(_formel);
  3519. // U.UF.F.topWindow(_formel);
  3520. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3521. // var _formel = document.getElementById("studyDetail");
  3522. //如果最大化了,那么就把他缩小
  3523. // if (_formel.ismaximize) {
  3524. // return;
  3525. // }
  3526. // U.UF.F.windowZooming(_formel);
  3527. // U.UF.F.topWindow(_formel);
  3528. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3529. // var _formel = document.getElementById("studentStudy");
  3530. // if (_formel.ismaximize) {
  3531. // return;
  3532. // }
  3533. // U.UF.F.windowZooming(_formel);
  3534. // U.UF.F.topWindow(_formel);
  3535. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3536. var _formel = document.getElementById("study");
  3537. // if (_formel.ismaximize) {
  3538. // return;
  3539. // }
  3540. // U.UF.F.windowZooming(_formel);
  3541. U.UF.F.topWindow(_formel);
  3542. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3543. var _formel = document.getElementById("studentIndex");
  3544. U.UF.F.windowZooming(_formel);
  3545. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3546. var _formel = document.getElementById("studyDetailS");
  3547. U.UF.F.windowZooming(_formel);
  3548. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3549. var _formel = document.getElementById("studioIndex");
  3550. U.UF.F.windowZooming(_formel);
  3551. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3552. var _formel = document.getElementById("studyDetailStudio");
  3553. U.UF.F.windowZooming(_formel);
  3554. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3555. var _formel = document.getElementById("studyDetailStudio");
  3556. U.UF.F.windowZooming(_formel);
  3557. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3558. var _formel = document.getElementById("studyDetailNT");
  3559. U.UF.F.windowZooming(_formel);
  3560. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3561. var _formel = document.getElementById("studyDetailS");
  3562. U.UF.F.windowZooming(_formel);
  3563. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3564. var _formel = document.getElementById("studyDetailS");
  3565. U.UF.F.topWindow(_formel);
  3566. } else if (e.data.tools && e.data.tools == "1") {
  3567. // U.MD.D.I.openApplication("whiteboard")
  3568. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3569. } else if (e.data.tools && e.data.tools == "2") {
  3570. U.MD.D.I.openApplication("note")
  3571. } else if (e.data.tools && e.data.tools == "3") {
  3572. // U.MD.D.I.openApplication("mind")
  3573. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3574. } else if (e.data.tools && e.data.tools == "4") {
  3575. U.MD.D.I.openApplication("investigation")
  3576. } else if (e.data.tools && e.data.tools == "6") {
  3577. // U.MD.D.I.openApplication("doc")
  3578. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3579. } else if (e.data.tools && e.data.tools == "7") {
  3580. // U.MD.D.I.openApplication("mindNetwork")
  3581. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3582. } else if (e.data.tools && e.data.tools == "8") {
  3583. U.MD.D.I.openApplication("library")
  3584. } else if (e.data.tools && e.data.tools == "17") {
  3585. U.MD.D.I.openApplication("stuLibrary")
  3586. } else if (e.data.tools && e.data.tools == "18") {
  3587. U.MD.D.I.openApplication("train")
  3588. } else if (e.data.tools && e.data.tools == "21") {
  3589. U.MD.D.I.openApplication("program")
  3590. } else if (e.data.tools && e.data.tools == "22") {
  3591. U.MD.D.I.openApplication("AIprogram2")
  3592. } else if (e.data.tools && e.data.tools == "23") {
  3593. U.MD.D.I.openApplication("Pythonprogram")
  3594. } else if (e.data.tools && e.data.tools == "24") {
  3595. U.MD.D.I.openApplication("AIprogram")
  3596. } else if (e.data.tools && e.data.tools == "25") {
  3597. U.MD.D.I.openApplication("sys")
  3598. } else if (e.data.tools && e.data.tools == "26") {
  3599. // U.MD.D.I.openApplication("courseDesign")
  3600. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3601. } else if (e.data.tools && e.data.tools == "31") {
  3602. U.MD.D.I.openApplication("netWorkPanel")
  3603. } else if (e.data.tools && e.data.tools == "32") {
  3604. U.MD.D.I.openApplication("codeEdit")
  3605. } else if (e.data.tools && e.data.tools == "57") {
  3606. U.MD.D.I.openApplication("CocoPi")
  3607. } else if (e.data.tools && e.data.tools == "63") {
  3608. U.MD.D.I.openApplication("Wood")
  3609. } else if (e.data.tools && e.data.tools == "58") {
  3610. U.MD.D.I.openApplication("car")
  3611. } else if (e.data.tools && e.data.tools == "59") {
  3612. U.MD.D.I.openApplication("lineSearch")
  3613. } else if (e.data.tools && e.data.tools == "60") {
  3614. U.MD.D.I.openApplication("deepLearning")
  3615. } else if (e.data.tools && e.data.tools == "61") {
  3616. U.MD.D.I.openApplication("allHistory")
  3617. } else if (e.data.tools && e.data.tools == "28") {
  3618. U.MD.D.I.openApplication("translation")
  3619. } else if (e.data.tools && e.data.tools == "37") {
  3620. U.MD.D.I.openApplication("mohe")
  3621. } else if (e.data.tools && e.data.tools == "38") {
  3622. U.MD.D.I.openApplication("24game")
  3623. } else if (e.data.tools && e.data.tools == "39") {
  3624. U.MD.D.I.openApplication("GeoGebra")
  3625. } else if (e.data.tools && e.data.tools == "43") {
  3626. U.MD.D.I.openApplication("studentEvaluate")
  3627. } else if (e.data.tools && e.data.tools == "44") {
  3628. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3629. } else if (e.data.tools && e.data.tools == "46") {
  3630. U.MD.D.I.openApplication("project")
  3631. } else if (e.data.tools && e.data.tools == "71") {
  3632. U.MD.D.I.openApplication("aigptCourse")
  3633. } else if (e.data.tools && e.data.tools == "1s") {
  3634. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3635. } else if (e.data.tools && e.data.tools == "3s") {
  3636. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3637. } else if (e.data.tools && e.data.tools == "6s") {
  3638. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3639. } else if (e.data.tools && e.data.tools == "1studio") {
  3640. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3641. } else if (e.data.tools && e.data.tools == "3studio") {
  3642. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3643. } else if (e.data.tools && e.data.tools == "6studio") {
  3644. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3645. } else if (e.data.tools && e.data.tools == "3y") {
  3646. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3647. } else if (e.data.tools && e.data.tools == "1y") {
  3648. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3649. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3650. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3651. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3652. U.MD.D.I.openApplication("AIAnalyse")
  3653. } else if (e.data.tools && e.data.tools == "1teacher") {
  3654. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3655. } else if (e.data.tools && e.data.tools == "3teacher") {
  3656. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3657. } else if (e.data.tools && e.data.tools == "7teacher") {
  3658. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3659. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3660. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3661. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3662. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3663. } else if (e.data.tools && e.data.tools == "1E") {
  3664. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3665. } else if (e.data.tools && e.data.tools == "3E") {
  3666. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3667. } else if (e.data.tools && e.data.tools == "57y") {
  3668. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3669. } else if (e.data.tools && e.data.tools == "57u") {
  3670. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3671. } else if (e.data.tools && e.data.tools == "57teacher") {
  3672. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3673. } else if (e.data.tools && e.data.tools == "64") {
  3674. U.MD.D.I.openApplication("AIChat")
  3675. } else if (e.data.tools && e.data.tools == "66") {
  3676. U.MD.D.I.openApplication("formulaEdi")
  3677. } else if (e.data.tools && e.data.tools == "67") {
  3678. U.MD.D.I.openApplication("molStr")
  3679. } else if (e.data.tools && e.data.tools == "68") {
  3680. U.MD.D.I.openApplication("timeAxis")
  3681. } else if (e.data.tools && e.data.tools == "openCourse") {
  3682. let _data = {
  3683. typea: e.data.typea || '',
  3684. typeb: e.data.typeb || '',
  3685. typed: e.data.typed || '',
  3686. }
  3687. U.MD.D.I.openInApplication("index", _data)
  3688. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3689. let _data = {
  3690. classid: e.data.classid || '',
  3691. }
  3692. U.MD.D.I.openInApplication("dataClass", _data)
  3693. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3694. let _data = {
  3695. cid: e.data.cid || '',
  3696. gid: e.data.gid || '',
  3697. }
  3698. U.MD.D.I.openInApplication("opencCscl", _data)
  3699. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3700. U.MD.D.I.openApplication("dataBoardTest")
  3701. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3702. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3703. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3704. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3705. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3706. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3707. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3708. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3709. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3710. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3711. }else if (e.data.tools && e.data.tools == "loginSz") {
  3712. U.MD.D.I.openInApplication("loginSz")
  3713. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3714. if($('#classroom_observation_board')[0]){
  3715. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3716. }
  3717. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3718. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3719. if($('#classroom_observation_ob_comment')[0]){
  3720. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3721. }
  3722. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3723. }
  3724. });
  3725. U.MD.D.I.selectUser = function () {
  3726. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3727. if (res.value[0].length > 0) {
  3728. US.userInfo = res.value[0][0];
  3729. $(".userName")[0].innerHTML = US.userInfo.username;
  3730. }
  3731. }, [], { "type": "GET", "withCredentials": true });
  3732. }
  3733. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3734. var _userinfo = US.userInfo, //登录用户信息
  3735. _userid = US.userInfo.userid, //登录用户id
  3736. _oid = _userinfo.organizeid,
  3737. _type = US.userInfo.type,
  3738. _org = US.userInfo.org,
  3739. _role = US.userInfo.role,
  3740. _classId = US.userInfo.classid;
  3741. if (_type == 4) {
  3742. tType = 4
  3743. }
  3744. switch (str) {
  3745. case "studyDetailNT": //无终端模式
  3746. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3747. setTimeout(() => {
  3748. U.MD.U.L.login();
  3749. }, 2000);
  3750. } else {
  3751. _formdiv = new U.UF.UI.form(
  3752. "课程详情",
  3753. $$("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 }), {
  3754. "id": "studyDetailNT",
  3755. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3756. "onresize": function () { }
  3757. }, {
  3758. closecallback: function () { }
  3759. }, { "style": { "height": "36px" } }).form; //创建窗体
  3760. _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); } }
  3761. break;
  3762. }
  3763. case "studyDetail":
  3764. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3765. setTimeout(() => {
  3766. U.MD.U.L.login();
  3767. }, 2000);
  3768. } else {
  3769. _formdiv = new U.UF.UI.form(
  3770. "课程详情",
  3771. $$("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 }), {
  3772. "id": "studyDetail",
  3773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3774. "onresize": function () { }
  3775. }, {
  3776. closecallback: function () { }
  3777. }, { "style": { "height": "36px" } }).form; //创建窗体
  3778. _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); } }
  3779. break;
  3780. }
  3781. case "studyDetailTrain":
  3782. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3783. setTimeout(() => {
  3784. U.MD.U.L.login();
  3785. }, 2000);
  3786. } else {
  3787. _formdiv = new U.UF.UI.form(
  3788. "培训详情",
  3789. $$("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 }), {
  3790. "id": "studyDetailTrain",
  3791. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3792. "onresize": function () { }
  3793. }, {
  3794. closecallback: function () { }
  3795. }, { "style": { "height": "36px" } }).form; //创建窗体
  3796. _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); } }
  3797. break;
  3798. }
  3799. case "studyDetailS":
  3800. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3801. setTimeout(() => {
  3802. U.MD.U.L.login();
  3803. }, 2000);
  3804. } else {
  3805. _formdiv = new U.UF.UI.form(
  3806. "项目详情",
  3807. $$("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 }), {
  3808. "id": "studyDetailS",
  3809. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3810. "onresize": function () { }
  3811. }, {
  3812. closecallback: function () { }
  3813. }, { "style": { "height": "36px" } }).form; //创建窗体
  3814. _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); } }
  3815. break;
  3816. }
  3817. case "studyDetailStudio":
  3818. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3819. setTimeout(() => {
  3820. U.MD.U.L.login();
  3821. }, 2000);
  3822. } else {
  3823. _formdiv = new U.UF.UI.form(
  3824. "工作详情",
  3825. $$("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 }), {
  3826. "id": "studyDetailStudio",
  3827. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3828. "onresize": function () { }
  3829. }, {
  3830. closecallback: function () { }
  3831. }, { "style": { "height": "36px" } }).form; //创建窗体
  3832. _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); } }
  3833. break;
  3834. }
  3835. case "studyDetailS5":
  3836. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3837. setTimeout(() => {
  3838. U.MD.U.L.login();
  3839. }, 2000);
  3840. } else {
  3841. _formdiv = new U.UF.UI.form(
  3842. "项目详情",
  3843. $$("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 }), {
  3844. "id": "studyDetailS",
  3845. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3846. "onresize": function () { }
  3847. }, {
  3848. closecallback: function () { }
  3849. }, { "style": { "height": "36px" } }).form; //创建窗体
  3850. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3851. break;
  3852. }
  3853. case "studyDetailGM":
  3854. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3855. setTimeout(() => {
  3856. U.MD.U.L.login();
  3857. }, 2000);
  3858. } else {
  3859. _formdiv = new U.UF.UI.form(
  3860. "课程详情",
  3861. $$("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 }), {
  3862. "id": "studyDetail",
  3863. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3864. "onresize": function () { }
  3865. }, {
  3866. closecallback: function () { }
  3867. }, { "style": { "height": "36px" } }).form; //创建窗体
  3868. _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); } }
  3869. break;
  3870. }
  3871. case "hanUrl":
  3872. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3873. setTimeout(() => {
  3874. U.MD.U.L.login();
  3875. }, 2000);
  3876. } else {
  3877. _formdiv = new U.UF.UI.form(
  3878. "汉字宫",
  3879. $$("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" }), {
  3880. "id": "hanUrl",
  3881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3882. "onresize": function () { }
  3883. }, {
  3884. closecallback: function () { }
  3885. }, { "style": { "height": "36px" } }).form; //创建窗体
  3886. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3887. break;
  3888. }
  3889. case "index":
  3890. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3891. setTimeout(() => {
  3892. U.MD.U.L.login();
  3893. }, 2000);
  3894. } else {
  3895. _formdiv = new U.UF.UI.form(
  3896. "课程中心",
  3897. $$("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 }), {
  3898. "id": "study",
  3899. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3900. "onresize": function () { }
  3901. }, {
  3902. closecallback: function () { }
  3903. }, { "style": { "height": "36px" } }).form; //创建窗体
  3904. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3905. break;
  3906. }
  3907. case "dataClass":
  3908. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3909. setTimeout(() => {
  3910. U.MD.U.L.login();
  3911. }, 2000);
  3912. } else {
  3913. _formdiv = new U.UF.UI.form(
  3914. "数据报告",
  3915. $$("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 }), {
  3916. "id": "dataClass",
  3917. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3918. "onresize": function () { }
  3919. }, {
  3920. closecallback: function () { }
  3921. }, { "style": { "height": "36px" } }).form; //创建窗体
  3922. _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); } }
  3923. break;
  3924. }
  3925. case "opencCscl":
  3926. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3927. setTimeout(() => {
  3928. U.MD.U.L.login();
  3929. }, 2000);
  3930. } else {
  3931. _formdiv = new U.UF.UI.form(
  3932. "协同建构",
  3933. $$("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 }), {
  3934. "id": "futureClass",
  3935. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3936. "onresize": function () { }
  3937. }, {
  3938. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3939. }, { "style": { "height": "36px" } }).form; //创建窗体
  3940. _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); } }
  3941. break;
  3942. }
  3943. case "openCourseUpdate":
  3944. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3945. setTimeout(() => {
  3946. U.MD.U.L.login();
  3947. }, 2000);
  3948. } else {
  3949. _formdiv = new U.UF.UI.form(
  3950. "课程管理",
  3951. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3952. "id": "openCourseUpdate",
  3953. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3954. "onresize": function () { }
  3955. }, {
  3956. closecallback: function () { }
  3957. }, { "style": { "height": "36px" } }).form; //创建窗体
  3958. break;
  3959. }
  3960. case "openNewCourseUpdate":
  3961. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3962. setTimeout(() => {
  3963. U.MD.U.L.login();
  3964. }, 2000);
  3965. } else {
  3966. _formdiv = new U.UF.UI.form(
  3967. "课程管理",
  3968. $$("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 }), {
  3969. "id": "openCourseUpdate",
  3970. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3971. "onresize": function () { }
  3972. }, {
  3973. closecallback: function () { }
  3974. }, { "style": { "height": "36px" } }).form; //创建窗体
  3975. break;
  3976. }
  3977. case "openCourseEUpdate":
  3978. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3979. setTimeout(() => {
  3980. U.MD.U.L.login();
  3981. }, 2000);
  3982. } else {
  3983. _formdiv = new U.UF.UI.form(
  3984. "课程管理",
  3985. $$("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 }), {
  3986. "id": "openCourseUpdate",
  3987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3988. "onresize": function () { }
  3989. }, {
  3990. closecallback: function () { }
  3991. }, { "style": { "height": "36px" } }).form; //创建窗体
  3992. break;
  3993. }
  3994. case "openCourseAiUpdate":
  3995. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3996. setTimeout(() => {
  3997. U.MD.U.L.login();
  3998. }, 2000);
  3999. } else {
  4000. _formdiv = new U.UF.UI.form(
  4001. "课程管理",
  4002. $$("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/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4003. "id": "openCourseUpdate",
  4004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4005. "onresize": function () { }
  4006. }, {
  4007. closecallback: function () { }
  4008. }, { "style": { "height": "36px" } }).form; //创建窗体
  4009. break;
  4010. }
  4011. case "openCourseNewUpdate":
  4012. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4013. setTimeout(() => {
  4014. U.MD.U.L.login();
  4015. }, 2000);
  4016. } else {
  4017. _formdiv = new U.UF.UI.form(
  4018. "课程管理",
  4019. $$("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 }), {
  4020. "id": "openCourseUpdate",
  4021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4022. "onresize": function () { }
  4023. }, {
  4024. closecallback: function () { }
  4025. }, { "style": { "height": "36px" } }).form; //创建窗体
  4026. break;
  4027. }
  4028. case "inviteLoginSz":
  4029. _formdiv = new U.UF.UI.form(
  4030. "随机码登录",
  4031. $$("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 }), {
  4032. "id": "loginSz",
  4033. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4034. "onresize": function () { }
  4035. }, {
  4036. closecallback: function () { }
  4037. }, { "style": { "height": "36px" } }).form; //创建窗体
  4038. break;
  4039. case "loginSz":
  4040. _formdiv = new U.UF.UI.form(
  4041. "教师登录",
  4042. $$("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" }), {
  4043. "id": "loginSz",
  4044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4045. "onresize": function () { }
  4046. }, {
  4047. closecallback: function () { }
  4048. }, { "style": { "height": "36px" } }).form; //创建窗体
  4049. break;
  4050. case "teacher":
  4051. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4052. setTimeout(() => {
  4053. U.MD.U.L.login();
  4054. }, 2000);
  4055. } else {
  4056. _formdiv = new U.UF.UI.form(
  4057. "教师管理",
  4058. $$("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 }), {
  4059. "id": "teacher",
  4060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4061. "onresize": function () { }
  4062. }, {
  4063. closecallback: function () { }
  4064. }, { "style": { "height": "36px" } }).form; //创建窗体
  4065. break;
  4066. }
  4067. case "dataBoardSZArea":
  4068. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4069. setTimeout(() => {
  4070. U.MD.U.L.login();
  4071. }, 2000);
  4072. } else {
  4073. _formdiv = new U.UF.UI.form(
  4074. "综合数据看板",
  4075. $$("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 }), {
  4076. "id": "dataBoardSZArea",
  4077. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4078. "onresize": function () { }
  4079. }, {
  4080. closecallback: function () { }
  4081. }, { "style": { "height": "36px" } }).form; //创建窗体
  4082. break;
  4083. }
  4084. case "dataBoardSZCity":
  4085. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4086. setTimeout(() => {
  4087. U.MD.U.L.login();
  4088. }, 2000);
  4089. } else {
  4090. _formdiv = new U.UF.UI.form(
  4091. "综合数据看板",
  4092. $$("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 }), {
  4093. "id": "dataBoardSZCity",
  4094. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4095. "onresize": function () { }
  4096. }, {
  4097. closecallback: function () { }
  4098. }, { "style": { "height": "36px" } }).form; //创建窗体
  4099. break;
  4100. }
  4101. case "classroom_observation_board":
  4102. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4103. setTimeout(() => {
  4104. U.MD.U.L.login();
  4105. }, 2000);
  4106. } else {
  4107. _formdiv = new U.UF.UI.form(
  4108. "课堂观察",
  4109. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  4110. "id": "classroom_observation_board",
  4111. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4112. "onresize": function () { }
  4113. }, {
  4114. closecallback: function () { }
  4115. }, { "style": { "height": "36px" } }).form; //创建窗体
  4116. break;
  4117. }
  4118. case "classroom_observation_ob_comment":
  4119. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4120. setTimeout(() => {
  4121. U.MD.U.L.login();
  4122. }, 2000);
  4123. } else {
  4124. _formdiv = new U.UF.UI.form(
  4125. "课堂审核",
  4126. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  4127. "id": "classroom_observation_ob_comment",
  4128. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4129. "onresize": function () { }
  4130. }, {
  4131. closecallback: function () { }
  4132. }, { "style": { "height": "36px" } }).form; //创建窗体
  4133. break;
  4134. }
  4135. }
  4136. }
  4137. U.MD.D.I.openApplication = function (str, obj, info) {
  4138. obj = obj || {};
  4139. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4140. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4141. _userinfo = US.userInfo, //登录用户信息
  4142. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4143. _oid = obj.organizeid || _userinfo.organizeid,
  4144. _type = US.userInfo.type,
  4145. _org = US.userInfo.org,
  4146. _role = US.userInfo.role,
  4147. _classId = US.userInfo.classid,
  4148. _TscreenType = 1
  4149. _screenType = 2,
  4150. _SscreenType = 3;
  4151. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4152. return;
  4153. }
  4154. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4155. switch (str) {
  4156. case "studnetProject": //好友打开
  4157. _formdiv = new U.UF.UI.form(
  4158. "我的项目",
  4159. $$("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 }), {
  4160. "id": "studnetProject",
  4161. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4162. "onresize": function () { }
  4163. }, {
  4164. closecallback: function () { }
  4165. }, { "style": { "height": "36px" } }).form; //创建窗体
  4166. _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); } }
  4167. break;
  4168. case "studentEvaluate": //好友打开
  4169. _formdiv = new U.UF.UI.form(
  4170. "我的评价",
  4171. $$("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 }), {
  4172. "id": "studentEvaluate",
  4173. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4174. "onresize": function () { }
  4175. }, {
  4176. closecallback: function () { }
  4177. }, { "style": { "height": "36px" } }).form; //创建窗体
  4178. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4179. break;
  4180. case "my":
  4181. _formdiv = new U.UF.UI.form(
  4182. "我的资料",
  4183. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4184. "id": "my",
  4185. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4186. "onresize": function () { }
  4187. }, {
  4188. closecallback: function () { }
  4189. }, { "style": { "height": "36px" } }).form; //创建窗体
  4190. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4191. break;
  4192. case "program":
  4193. _formdiv = new U.UF.UI.form(
  4194. "编程平台",
  4195. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4196. "id": "program",
  4197. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4198. "onresize": function () { }
  4199. }, {
  4200. closecallback: function () { }
  4201. }, { "style": { "height": "36px" } }).form; //创建窗体
  4202. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4203. break;
  4204. case "library":
  4205. _formdiv = new U.UF.UI.form(
  4206. "素材库",
  4207. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4208. "id": "library",
  4209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4210. "onresize": function () { }
  4211. }, {
  4212. closecallback: function () { }
  4213. }, { "style": { "height": "36px" } }).form; //创建窗体
  4214. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4215. break;
  4216. case "whiteboard":
  4217. _formdiv = new U.UF.UI.form(
  4218. "电子白板",
  4219. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4220. "id": "whiteboard",
  4221. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4222. "onresize": function () { }
  4223. }, {
  4224. closecallback: function () { }
  4225. }, { "style": { "height": "36px" } }).form; //创建窗体
  4226. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4227. break;
  4228. case "investigation":
  4229. _formdiv = new U.UF.UI.form(
  4230. "问卷调查",
  4231. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  4232. "id": "investigation",
  4233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4234. "onresize": function () { }
  4235. }, {
  4236. closecallback: function () { }
  4237. }, { "style": { "height": "36px" } }).form; //创建窗体
  4238. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4239. break;
  4240. case "note":
  4241. _formdiv = new U.UF.UI.form(
  4242. "便签分类",
  4243. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  4244. "id": "note",
  4245. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4246. "onresize": function () { }
  4247. }, {
  4248. closecallback: function () { }
  4249. }, { "style": { "height": "36px" } }).form; //创建窗体
  4250. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4251. break;
  4252. // case "score":
  4253. // _formdiv = new U.UF.UI.form(
  4254. // "量规评分",
  4255. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4256. // "id": "score",
  4257. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4258. // "onresize": function() {}
  4259. // }, {
  4260. // closecallback: function() {}
  4261. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4262. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4263. // break;
  4264. case "mind":
  4265. _formdiv = new U.UF.UI.form(
  4266. "思维导图",
  4267. $$("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"
  4268. "id": "mind",
  4269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4270. "onresize": function () { }
  4271. }, {
  4272. closecallback: function () { }
  4273. }, { "style": { "height": "36px" } }).form; //创建窗体
  4274. _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); } }
  4275. break;
  4276. case "doc":
  4277. // U.MD.D.I.isRoom();
  4278. _formdiv = new U.UF.UI.form(
  4279. "协同文档",
  4280. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4281. "id": "doc",
  4282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4283. "onresize": function () { }
  4284. }, {
  4285. closecallback: function () { }
  4286. }, { "style": { "height": "36px" } }).form; //创建窗体
  4287. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4288. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4289. // })
  4290. _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); } }
  4291. break;
  4292. case "studentStudy":
  4293. _formdiv = new U.UF.UI.form(
  4294. "课程中心",
  4295. $$("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
  4296. "id": "studentStudy",
  4297. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4298. "onresize": function () { }
  4299. }, {
  4300. closecallback: function () { }
  4301. }, { "style": { "height": "36px" } }).form; //创建窗体
  4302. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4303. break;
  4304. case "train": //好友打开
  4305. _formdiv = new U.UF.UI.form(
  4306. "训练平台",
  4307. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4308. "id": "train",
  4309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4310. "onresize": function () { }
  4311. }, {
  4312. closecallback: function () { }
  4313. }, { "style": { "height": "36px" } }).form; //创建窗体
  4314. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4315. break;
  4316. case "mindNetwork": //好友打开
  4317. _formdiv = new U.UF.UI.form(
  4318. "思维网格",
  4319. $$("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 }), {
  4320. "id": "mindNetwork",
  4321. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4322. "onresize": function () { }
  4323. }, {
  4324. closecallback: function () { }
  4325. }, { "style": { "height": "36px" } }).form; //创建窗体
  4326. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4327. break;
  4328. case "studentClassRoom": //好友打开
  4329. _formdiv = new U.UF.UI.form(
  4330. "实时课堂",
  4331. $$("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 }), {
  4332. "id": "studentClassRoom",
  4333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4334. "onresize": function () { }
  4335. }, {
  4336. closecallback: function () { }
  4337. }, { "style": { "height": "36px" } }).form; //创建窗体
  4338. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4339. setTimeout(() => {
  4340. U.UF.F.windowZooming(_formdiv)
  4341. }, 0);
  4342. break;
  4343. }
  4344. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4345. switch (str) {
  4346. case "studnetProject": //好友打开
  4347. _formdiv = new U.UF.UI.form(
  4348. "我的项目",
  4349. $$("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 }), {
  4350. "id": "studnetProject",
  4351. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4352. "onresize": function () { }
  4353. }, {
  4354. closecallback: function () { }
  4355. }, { "style": { "height": "36px" } }).form; //创建窗体
  4356. _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); } }
  4357. break;
  4358. case "studentEvaluate": //好友打开
  4359. _formdiv = new U.UF.UI.form(
  4360. "我的评价",
  4361. $$("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 }), {
  4362. "id": "studentEvaluate",
  4363. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4364. "onresize": function () { }
  4365. }, {
  4366. closecallback: function () { }
  4367. }, { "style": { "height": "36px" } }).form; //创建窗体
  4368. _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); } }
  4369. break;
  4370. case "my":
  4371. _formdiv = new U.UF.UI.form(
  4372. "我的资料",
  4373. $$("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 }), {
  4374. "id": "my",
  4375. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4376. "onresize": function () { }
  4377. }, {
  4378. closecallback: function () { }
  4379. }, { "style": { "height": "36px" } }).form; //创建窗体
  4380. _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); } }
  4381. break;
  4382. case "program":
  4383. _formdiv = new U.UF.UI.form(
  4384. "编程平台",
  4385. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4386. "id": "program",
  4387. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4388. "onresize": function () { }
  4389. }, {
  4390. closecallback: function () { }
  4391. }, { "style": { "height": "36px" } }).form; //创建窗体
  4392. _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); } }
  4393. break;
  4394. case "library":
  4395. _formdiv = new U.UF.UI.form(
  4396. "素材库",
  4397. $$("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 }), {
  4398. "id": "library",
  4399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4400. "onresize": function () { }
  4401. }, {
  4402. closecallback: function () { }
  4403. }, { "style": { "height": "36px" } }).form; //创建窗体
  4404. _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); } }
  4405. break;
  4406. case "whiteboard":
  4407. _formdiv = new U.UF.UI.form(
  4408. "电子白板",
  4409. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4410. "id": "whiteboard",
  4411. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4412. "onresize": function () { }
  4413. }, {
  4414. closecallback: function () { }
  4415. }, { "style": { "height": "36px" } }).form; //创建窗体
  4416. _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); } }
  4417. break;
  4418. case "investigation":
  4419. _formdiv = new U.UF.UI.form(
  4420. "问卷调查",
  4421. $$("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 }), {
  4422. "id": "investigation",
  4423. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4424. "onresize": function () { }
  4425. }, {
  4426. closecallback: function () { }
  4427. }, { "style": { "height": "36px" } }).form; //创建窗体
  4428. _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); } }
  4429. break;
  4430. case "note":
  4431. _formdiv = new U.UF.UI.form(
  4432. "便签分类",
  4433. $$("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 }), {
  4434. "id": "note",
  4435. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4436. "onresize": function () { }
  4437. }, {
  4438. closecallback: function () { }
  4439. }, { "style": { "height": "36px" } }).form; //创建窗体
  4440. _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); } }
  4441. break;
  4442. // case "score":
  4443. // _formdiv = new U.UF.UI.form(
  4444. // "量规评分",
  4445. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4446. // "id": "score",
  4447. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4448. // "onresize": function() {}
  4449. // }, {
  4450. // closecallback: function() {}
  4451. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4452. // _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); } }
  4453. // break;
  4454. case "mind":
  4455. _formdiv = new U.UF.UI.form(
  4456. "思维导图",
  4457. $$("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"
  4458. "id": "mind",
  4459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4460. "onresize": function () { }
  4461. }, {
  4462. closecallback: function () { }
  4463. }, { "style": { "height": "36px" } }).form; //创建窗体
  4464. _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); } }
  4465. break;
  4466. case "doc":
  4467. // U.MD.D.I.isRoom();
  4468. _formdiv = new U.UF.UI.form(
  4469. "协同文档",
  4470. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4471. "id": "doc",
  4472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4473. "onresize": function () { }
  4474. }, {
  4475. closecallback: function () { }
  4476. }, { "style": { "height": "36px" } }).form; //创建窗体
  4477. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4478. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4479. })
  4480. _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); } }
  4481. break;
  4482. case "train": //好友打开
  4483. _formdiv = new U.UF.UI.form(
  4484. "训练平台",
  4485. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4486. "id": "train",
  4487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4488. "onresize": function () { }
  4489. }, {
  4490. closecallback: function () { }
  4491. }, { "style": { "height": "36px" } }).form; //创建窗体
  4492. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4493. break;
  4494. case "studentStudy":
  4495. _formdiv = new U.UF.UI.form(
  4496. "课程中心",
  4497. $$("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
  4498. "id": "studentStudy",
  4499. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4500. "onresize": function () { }
  4501. }, {
  4502. closecallback: function () { }
  4503. }, { "style": { "height": "36px" } }).form; //创建窗体
  4504. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4505. break;
  4506. case "mindNetwork": //好友打开
  4507. _formdiv = new U.UF.UI.form(
  4508. "思维网格",
  4509. $$("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 }), {
  4510. "id": "mindNetwork",
  4511. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4512. "onresize": function () { }
  4513. }, {
  4514. closecallback: function () { }
  4515. }, { "style": { "height": "36px" } }).form; //创建窗体
  4516. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4517. break;
  4518. case "studentClassRoom": //好友打开
  4519. _formdiv = new U.UF.UI.form(
  4520. "实时课堂",
  4521. $$("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 }), {
  4522. "id": "studentClassRoom",
  4523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4524. "onresize": function () { }
  4525. }, {
  4526. closecallback: function () { }
  4527. }, { "style": { "height": "36px" } }).form; //创建窗体
  4528. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4529. setTimeout(() => {
  4530. U.UF.F.windowZooming(_formdiv)
  4531. }, 0);
  4532. break;
  4533. }
  4534. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4535. //选择应用处理
  4536. switch (str) {
  4537. case "project": //好友打开
  4538. _formdiv = new U.UF.UI.form(
  4539. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4540. $$("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 }), {
  4541. "id": "project",
  4542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4543. "onresize": function () { }
  4544. }, {
  4545. closecallback: function () { }
  4546. }, { "style": { "height": "36px" } }).form; //创建窗体
  4547. _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); } }
  4548. break;
  4549. case "student":
  4550. _formdiv = new U.UF.UI.form(
  4551. "学生管理",
  4552. $$("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 }), {
  4553. "id": "student",
  4554. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4555. "onresize": function () { }
  4556. }, {
  4557. closecallback: function () { }
  4558. }, { "style": { "height": "36px" } }).form; //创建窗体
  4559. _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); } }
  4560. break;
  4561. case "evaluate":
  4562. _formdiv = new U.UF.UI.form(
  4563. "学生评价",
  4564. $$("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 }), {
  4565. "id": "evaluate",
  4566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4567. "onresize": function () { }
  4568. }, {
  4569. closecallback: function () { }
  4570. }, { "style": { "height": "36px" } }).form; //创建窗体
  4571. _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); } }
  4572. break;
  4573. case "sys":
  4574. _formdiv = new U.UF.UI.form(
  4575. "目标管理",
  4576. $$("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 }), {
  4577. "id": "sys",
  4578. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4579. "onresize": function () { }
  4580. }, {
  4581. closecallback: function () { }
  4582. }, { "style": { "height": "36px" } }).form; //创建窗体
  4583. _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); } }
  4584. break;
  4585. case "courseDesign":
  4586. _formdiv = new U.UF.UI.form(
  4587. "项目设计",
  4588. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4589. "id": "courseDesign",
  4590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4591. "onresize": function () { }
  4592. }, {
  4593. closecallback: function () { }
  4594. }, { "style": { "height": "36px" } }).form; //创建窗体
  4595. _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); } }
  4596. break;
  4597. case "program":
  4598. _formdiv = new U.UF.UI.form(
  4599. "编程平台",
  4600. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4601. "id": "program",
  4602. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4603. "onresize": function () { }
  4604. }, {
  4605. closecallback: function () { }
  4606. }, { "style": { "height": "36px" } }).form; //创建窗体
  4607. _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); } }
  4608. break;
  4609. case "class":
  4610. _formdiv = new U.UF.UI.form(
  4611. "班级管理",
  4612. $$("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 }), {
  4613. "id": "class",
  4614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4615. "onresize": function () { }
  4616. }, {
  4617. closecallback: function () { }
  4618. }, { "style": { "height": "36px" } }).form; //创建窗体
  4619. _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); } }
  4620. break;
  4621. case "Grade":
  4622. _formdiv = new U.UF.UI.form(
  4623. "年级管理",
  4624. $$("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 }), {
  4625. "id": "Grade",
  4626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4627. "onresize": function () { }
  4628. }, {
  4629. closecallback: function () { }
  4630. }, { "style": { "height": "36px" } }).form; //创建窗体
  4631. _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); } }
  4632. break;
  4633. case "teacherOffice":
  4634. _formdiv = new U.UF.UI.form(
  4635. "教研室",
  4636. $$("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 }), {
  4637. "id": "teacherOffice",
  4638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4639. "onresize": function () { }
  4640. }, {
  4641. closecallback: function () { }
  4642. }, { "style": { "height": "36px" } }).form; //创建窗体
  4643. _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); } }
  4644. break;
  4645. case "my":
  4646. _formdiv = new U.UF.UI.form(
  4647. "我的资料",
  4648. $$("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 }), {
  4649. "id": "my",
  4650. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4651. "onresize": function () { }
  4652. }, {
  4653. closecallback: function () { }
  4654. }, { "style": { "height": "36px" } }).form; //创建窗体
  4655. _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); } }
  4656. break;
  4657. case "notice":
  4658. _formdiv = new U.UF.UI.form(
  4659. "通知公告",
  4660. $$("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 }), {
  4661. "id": "notice",
  4662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4663. "onresize": function () { }
  4664. }, {
  4665. closecallback: function () { }
  4666. }, { "style": { "height": "36px" } }).form; //创建窗体
  4667. _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); } }
  4668. break;
  4669. case "library":
  4670. _formdiv = new U.UF.UI.form(
  4671. "素材库",
  4672. $$("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 }), {
  4673. "id": "library",
  4674. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4675. "onresize": function () { }
  4676. }, {
  4677. closecallback: function () { }
  4678. }, { "style": { "height": "36px" } }).form; //创建窗体
  4679. _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); } }
  4680. break;
  4681. case "whiteboard":
  4682. _formdiv = new U.UF.UI.form(
  4683. "电子白板",
  4684. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4685. "id": "whiteboard",
  4686. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4687. "onresize": function () { }
  4688. }, {
  4689. closecallback: function () { }
  4690. }, { "style": { "height": "36px" } }).form; //创建窗体
  4691. _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); } }
  4692. break;
  4693. case "investigation":
  4694. _formdiv = new U.UF.UI.form(
  4695. "问卷调查",
  4696. $$("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 }), {
  4697. "id": "investigation",
  4698. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4699. "onresize": function () { }
  4700. }, {
  4701. closecallback: function () { }
  4702. }, { "style": { "height": "36px" } }).form; //创建窗体
  4703. _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); } }
  4704. break;
  4705. case "note":
  4706. _formdiv = new U.UF.UI.form(
  4707. "便签分类",
  4708. $$("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 }), {
  4709. "id": "note",
  4710. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4711. "onresize": function () { }
  4712. }, {
  4713. closecallback: function () { }
  4714. }, { "style": { "height": "36px" } }).form; //创建窗体
  4715. _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); } }
  4716. break;
  4717. // case "score":
  4718. // _formdiv = new U.UF.UI.form(
  4719. // "量规评分",
  4720. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4721. // "id": "score",
  4722. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4723. // "onresize": function() {}
  4724. // }, {
  4725. // closecallback: function() {}
  4726. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4727. // _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); } }
  4728. // break;
  4729. case "mind":
  4730. _formdiv = new U.UF.UI.form(
  4731. "思维导图",
  4732. $$("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"
  4733. "id": "mind",
  4734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4735. "onresize": function () { }
  4736. }, {
  4737. closecallback: function () { }
  4738. }, { "style": { "height": "36px" } }).form; //创建窗体
  4739. _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); } }
  4740. break;
  4741. case "doc":
  4742. // U.MD.D.I.isRoom();
  4743. _formdiv = new U.UF.UI.form(
  4744. "协同文档",
  4745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4746. "id": "doc",
  4747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4748. "onresize": function () { }
  4749. }, {
  4750. closecallback: function () { }
  4751. }, { "style": { "height": "36px" } }).form; //创建窗体
  4752. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4753. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4754. })
  4755. _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); } }
  4756. break;
  4757. case "study":
  4758. _formdiv = new U.UF.UI.form(
  4759. "课程中心",
  4760. $$("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
  4761. "id": "study",
  4762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4763. "onresize": function () { }
  4764. }, {
  4765. closecallback: function () { }
  4766. }, { "style": { "height": "36px" } }).form; //创建窗体
  4767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4768. break;
  4769. case "mindNetwork": //好友打开
  4770. _formdiv = new U.UF.UI.form(
  4771. "思维网格",
  4772. $$("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 }), {
  4773. "id": "mindNetwork",
  4774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4775. "onresize": function () { }
  4776. }, {
  4777. closecallback: function () { }
  4778. }, { "style": { "height": "36px" } }).form; //创建窗体
  4779. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4780. break;
  4781. case "train": //好友打开
  4782. _formdiv = new U.UF.UI.form(
  4783. "训练平台",
  4784. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4785. "id": "mindNetwork",
  4786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4787. "onresize": function () { }
  4788. }, {
  4789. closecallback: function () { }
  4790. }, { "style": { "height": "36px" } }).form; //创建窗体
  4791. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4792. break;
  4793. case "teacherClassRoom": //好友打开
  4794. _formdiv = new U.UF.UI.form(
  4795. "实时课堂",
  4796. $$("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 }), {
  4797. "id": "teacherClassRoom",
  4798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4799. "onresize": function () { }
  4800. }, {
  4801. closecallback: function () { }
  4802. }, { "style": { "height": "36px" } }).form; //创建窗体
  4803. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4804. setTimeout(() => {
  4805. U.UF.F.windowZooming(_formdiv)
  4806. }, 0);
  4807. break;
  4808. }
  4809. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4810. switch (str) {
  4811. case "project": //好友打开
  4812. _formdiv = new U.UF.UI.form(
  4813. "课程管理",
  4814. $$("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 }), {
  4815. "id": "project",
  4816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4817. "onresize": function () { }
  4818. }, {
  4819. closecallback: function () { }
  4820. }, { "style": { "height": "36px" } }).form; //创建窗体
  4821. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4822. break;
  4823. case "evaluate":
  4824. _formdiv = new U.UF.UI.form(
  4825. "学生评价",
  4826. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4827. "id": "evaluate",
  4828. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4829. "onresize": function () { }
  4830. }, {
  4831. closecallback: function () { }
  4832. }, { "style": { "height": "36px" } }).form; //创建窗体
  4833. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4834. break;
  4835. case "notice":
  4836. _formdiv = new U.UF.UI.form(
  4837. "通知公告",
  4838. $$("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 }), {
  4839. "id": "notice",
  4840. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4841. "onresize": function () { }
  4842. }, {
  4843. closecallback: function () { }
  4844. }, { "style": { "height": "36px" } }).form; //创建窗体
  4845. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4846. break;
  4847. case "stuLibrary":
  4848. _formdiv = new U.UF.UI.form(
  4849. "学习资料",
  4850. $$("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 }), {
  4851. "id": "stuLibrary",
  4852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4853. "onresize": function () { }
  4854. }, {
  4855. closecallback: function () { }
  4856. }, { "style": { "height": "36px" } }).form; //创建窗体
  4857. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4858. break;
  4859. case "program":
  4860. _formdiv = new U.UF.UI.form(
  4861. "编程平台",
  4862. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4863. "id": "program",
  4864. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4865. "onresize": function () { }
  4866. }, {
  4867. closecallback: function () { }
  4868. }, { "style": { "height": "36px" } }).form; //创建窗体
  4869. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4870. break;
  4871. case "whiteboard":
  4872. _formdiv = new U.UF.UI.form(
  4873. "电子白板",
  4874. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4875. "id": "whiteboard",
  4876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4877. "onresize": function () { }
  4878. }, {
  4879. closecallback: function () { }
  4880. }, { "style": { "height": "36px" } }).form; //创建窗体
  4881. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4882. break;
  4883. case "investigation":
  4884. _formdiv = new U.UF.UI.form(
  4885. "问卷调查",
  4886. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  4887. "id": "investigation",
  4888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4889. "onresize": function () { }
  4890. }, {
  4891. closecallback: function () { }
  4892. }, { "style": { "height": "36px" } }).form; //创建窗体
  4893. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4894. break;
  4895. case "mind":
  4896. _formdiv = new U.UF.UI.form(
  4897. "思维导图",
  4898. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4899. "id": "mind",
  4900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4901. "onresize": function () { }
  4902. }, {
  4903. closecallback: function () { }
  4904. }, { "style": { "height": "36px" } }).form; //创建窗体
  4905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4906. break;
  4907. case "doc":
  4908. // U.MD.D.I.isRoom();
  4909. _formdiv = new U.UF.UI.form(
  4910. "协同文档",
  4911. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4912. "id": "doc",
  4913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4914. "onresize": function () { }
  4915. }, {
  4916. closecallback: function () { }
  4917. }, { "style": { "height": "36px" } }).form; //创建窗体
  4918. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4919. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4920. })
  4921. _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); } }
  4922. break;
  4923. case "study":
  4924. _formdiv = new U.UF.UI.form(
  4925. "课程中心",
  4926. $$("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
  4927. "id": "study",
  4928. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4929. "onresize": function () { }
  4930. }, {
  4931. closecallback: function () { }
  4932. }, { "style": { "height": "36px" } }).form; //创建窗体
  4933. _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); } }
  4934. break;
  4935. case "mindNetwork": //好友打开
  4936. _formdiv = new U.UF.UI.form(
  4937. "思维网格",
  4938. $$("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 }), {
  4939. "id": "mindNetwork",
  4940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4941. "onresize": function () { }
  4942. }, {
  4943. closecallback: function () { }
  4944. }, { "style": { "height": "36px" } }).form; //创建窗体
  4945. _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); } }
  4946. break;
  4947. case "train": //好友打开
  4948. _formdiv = new U.UF.UI.form(
  4949. "训练平台",
  4950. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4951. "id": "train",
  4952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4953. "onresize": function () { }
  4954. }, {
  4955. closecallback: function () { }
  4956. }, { "style": { "height": "36px" } }).form; //创建窗体
  4957. _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); } }
  4958. break;
  4959. case "sys":
  4960. _formdiv = new U.UF.UI.form(
  4961. "目标管理",
  4962. $$("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 }), {
  4963. "id": "sys",
  4964. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4965. "onresize": function () { }
  4966. }, {
  4967. closecallback: function () { }
  4968. }, { "style": { "height": "36px" } }).form; //创建窗体
  4969. _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); } }
  4970. break;
  4971. case "courseDesign":
  4972. _formdiv = new U.UF.UI.form(
  4973. "项目设计",
  4974. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4975. "id": "courseDesign",
  4976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4977. "onresize": function () { }
  4978. }, {
  4979. closecallback: function () { }
  4980. }, { "style": { "height": "36px" } }).form; //创建窗体
  4981. _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); } }
  4982. break;
  4983. }
  4984. } else if (!_type) {
  4985. switch (str) {
  4986. case "my":
  4987. _formdiv = new U.UF.UI.form(
  4988. "我的资料",
  4989. $$("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 }), {
  4990. "id": "my",
  4991. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4992. "onresize": function () { }
  4993. }, {
  4994. closecallback: function () { }
  4995. }, { "style": { "height": "36px" } }).form; //创建窗体
  4996. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4997. break;
  4998. }
  4999. }
  5000. switch (str) {
  5001. // AIprogram2 AI体验 aihub.cocorobo.cn
  5002. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5003. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5004. case "formulaEdi": //公式编辑
  5005. _formdiv = new U.UF.UI.form(
  5006. "公式编辑",
  5007. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5008. "id": "formulaEdi",
  5009. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5010. "onresize": function () { }
  5011. }, {
  5012. closecallback: function () { }
  5013. }, { "style": { "height": "36px" } }).form; //创建窗体
  5014. _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); } }
  5015. break;
  5016. case "molStr": //分子结构
  5017. _formdiv = new U.UF.UI.form(
  5018. "分子结构",
  5019. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5020. "id": "molStr",
  5021. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5022. "onresize": function () { }
  5023. }, {
  5024. closecallback: function () { }
  5025. }, { "style": { "height": "36px" } }).form; //创建窗体
  5026. _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); } }
  5027. break;
  5028. case "timeAxis": //时间轴
  5029. _formdiv = new U.UF.UI.form(
  5030. "时间轴",
  5031. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5032. "id": "timeAxis",
  5033. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5034. "onresize": function () { }
  5035. }, {
  5036. closecallback: function () { }
  5037. }, { "style": { "height": "36px" } }).form; //创建窗体
  5038. _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); } }
  5039. break;
  5040. case "AIprogram2": //AI体验
  5041. _formdiv = new U.UF.UI.form(
  5042. "AI体验",
  5043. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5044. "id": "AIprogram2",
  5045. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5046. "onresize": function () { }
  5047. }, {
  5048. closecallback: function () { }
  5049. }, { "style": { "height": "36px" } }).form; //创建窗体
  5050. _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); } }
  5051. break;
  5052. case "Pythonprogram": //python编程
  5053. _formdiv = new U.UF.UI.form(
  5054. "Python编程",
  5055. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5056. "id": "Pythonprogram",
  5057. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5058. "onresize": function () { }
  5059. }, {
  5060. closecallback: function () { }
  5061. }, { "style": { "height": "36px" } }).form; //创建窗体
  5062. _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); } }
  5063. break;
  5064. case "AIprogram": //ai编程
  5065. _formdiv = new U.UF.UI.form(
  5066. "AI编程平台",
  5067. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5068. "id": "AIprogram",
  5069. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5070. "onresize": function () { }
  5071. }, {
  5072. closecallback: function () { }
  5073. }, { "style": { "height": "36px" } }).form; //创建窗体
  5074. _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); } }
  5075. break;
  5076. case "CocoPi": //CocoPi
  5077. _formdiv = new U.UF.UI.form(
  5078. "CocoPi",
  5079. $$("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" }), {
  5080. "id": "CocoPi",
  5081. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5082. "onresize": function () { }
  5083. }, {
  5084. closecallback: function () { }
  5085. }, { "style": { "height": "36px" } }).form; //创建窗体
  5086. _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); } }
  5087. break;
  5088. case "Wood": //Wood
  5089. _formdiv = new U.UF.UI.form(
  5090. "海龟编程",
  5091. $$("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/" }), {
  5092. "id": "Wood",
  5093. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5094. "onresize": function () { }
  5095. }, {
  5096. closecallback: function () { }
  5097. }, { "style": { "height": "36px" } }).form; //创建窗体
  5098. _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); } }
  5099. break;
  5100. case "car": //模拟驾驶
  5101. _formdiv = new U.UF.UI.form(
  5102. "模拟驾驶",
  5103. $$("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/" }), {
  5104. "id": "car",
  5105. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5106. "onresize": function () { }
  5107. }, {
  5108. closecallback: function () { }
  5109. }, { "style": { "height": "36px" } }).form; //创建窗体
  5110. _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); } }
  5111. break;
  5112. case "lineSearch": //路径搜索
  5113. _formdiv = new U.UF.UI.form(
  5114. "路径搜索",
  5115. $$("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/" }), {
  5116. "id": "lineSearch",
  5117. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5118. "onresize": function () { }
  5119. }, {
  5120. closecallback: function () { }
  5121. }, { "style": { "height": "36px" } }).form; //创建窗体
  5122. _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); } }
  5123. break;
  5124. case "deepLearning": //深度学习
  5125. _formdiv = new U.UF.UI.form(
  5126. "深度学习",
  5127. $$("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/#" }), {
  5128. "id": "deepLearning",
  5129. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5130. "onresize": function () { }
  5131. }, {
  5132. closecallback: function () { }
  5133. }, { "style": { "height": "36px" } }).form; //创建窗体
  5134. _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); } }
  5135. break;
  5136. case "allHistory": //深度学习
  5137. _formdiv = new U.UF.UI.form(
  5138. "全历史",
  5139. $$("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/" }), {
  5140. "id": "allHistory",
  5141. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5142. "onresize": function () { }
  5143. }, {
  5144. closecallback: function () { }
  5145. }, { "style": { "height": "36px" } }).form; //创建窗体
  5146. _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); } }
  5147. break;
  5148. case "chatPDF": //ai编程
  5149. _formdiv = new U.UF.UI.form(
  5150. "chatPDF",
  5151. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5152. "id": "chatPDF",
  5153. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5154. "onresize": function () { }
  5155. }, {
  5156. closecallback: function () { }
  5157. }, { "style": { "height": "36px" } }).form; //创建窗体
  5158. _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); } }
  5159. break;
  5160. case "resources": //国家教育
  5161. _formdiv = new U.UF.UI.form(
  5162. "国家教育",
  5163. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5164. "id": "resources",
  5165. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5166. "onresize": function () { }
  5167. }, {
  5168. closecallback: function () { }
  5169. }, { "style": { "height": "36px" } }).form; //创建窗体
  5170. _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); } }
  5171. break;
  5172. case "codeEdit": //源码编辑
  5173. _formdiv = new U.UF.UI.form(
  5174. "源码编辑",
  5175. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5176. "id": "codeEdit",
  5177. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5178. "onresize": function () { }
  5179. }, {
  5180. closecallback: function () { }
  5181. }, { "style": { "height": "36px" } }).form; //创建窗体
  5182. _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); } }
  5183. break; //
  5184. case "MindMap": //MindMap
  5185. _formdiv = new U.UF.UI.form(
  5186. "MindMap",
  5187. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5188. "id": "MindMap",
  5189. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5190. "onresize": function () { }
  5191. }, {
  5192. closecallback: function () { }
  5193. }, { "style": { "height": "36px" } }).form; //创建窗体
  5194. _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); } }
  5195. break;
  5196. case "netWorkPanel": //netWorkPanel
  5197. _formdiv = new U.UF.UI.form(
  5198. "netWorkPanel",
  5199. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5200. "id": "netWorkPanel",
  5201. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5202. "onresize": function () { }
  5203. }, {
  5204. closecallback: function () { }
  5205. }, { "style": { "height": "36px" } }).form; //创建窗体
  5206. _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); } }
  5207. break;
  5208. case "GeoGebra": //GeoGebra
  5209. _formdiv = new U.UF.UI.form(
  5210. "GeoGebra",
  5211. $$("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" }), {
  5212. "id": "GeoGebra",
  5213. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5214. "onresize": function () { }
  5215. }, {
  5216. closecallback: function () { }
  5217. }, { "style": { "height": "36px" } }).form; //创建窗体
  5218. _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); } }
  5219. break;
  5220. case "translation": //翻译
  5221. _formdiv = new U.UF.UI.form(
  5222. "翻译",
  5223. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5224. "id": "translation",
  5225. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5226. "onresize": function () { }
  5227. }, {
  5228. closecallback: function () { }
  5229. }, { "style": { "height": "36px" } }).form; //创建窗体
  5230. _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); } }
  5231. break;
  5232. case "mohe": //魔盒
  5233. _formdiv = new U.UF.UI.form(
  5234. "魔盒识字",
  5235. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5236. "id": "mohe",
  5237. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5238. "onresize": function () { }
  5239. }, {
  5240. closecallback: function () { }
  5241. }, { "style": { "height": "36px" } }).form; //创建窗体
  5242. _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); } }
  5243. break;
  5244. case "24game": //24点
  5245. _formdiv = new U.UF.UI.form(
  5246. "24点",
  5247. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5248. "id": "24game",
  5249. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5250. "onresize": function () { }
  5251. }, {
  5252. closecallback: function () { }
  5253. }, { "style": { "height": "36px" } }).form; //创建窗体
  5254. _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); } }
  5255. break;
  5256. case "case":
  5257. _formdiv = new U.UF.UI.form(
  5258. "课程进展",
  5259. $$("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 }), {
  5260. "id": "case",
  5261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5262. "onresize": function () { }
  5263. }, {
  5264. closecallback: function () { }
  5265. }, { "style": { "height": "36px" } }).form; //创建窗体
  5266. _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); } }
  5267. break;
  5268. case "snf":
  5269. _formdiv = new U.UF.UI.form(
  5270. "赛诺梵",
  5271. $$("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" }), {
  5272. "id": "snf",
  5273. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5274. "onresize": function () { }
  5275. }, {
  5276. closecallback: function () { }
  5277. }, { "style": { "height": "36px" } }).form; //创建窗体
  5278. _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); } }
  5279. break;
  5280. case "hanFamily":
  5281. _formdiv = new U.UF.UI.form(
  5282. "汉字家族",
  5283. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5284. "id": "hanFamily",
  5285. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5286. "onresize": function () { }
  5287. }, {
  5288. closecallback: function () { }
  5289. }, { "style": { "height": "36px" } }).form; //创建窗体
  5290. _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); } }
  5291. break;
  5292. case "hanClassics":
  5293. _formdiv = new U.UF.UI.form(
  5294. "国学经典",
  5295. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5296. "id": "hanClassics",
  5297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5298. "onresize": function () { }
  5299. }, {
  5300. closecallback: function () { }
  5301. }, { "style": { "height": "36px" } }).form; //创建窗体
  5302. _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); } }
  5303. break;
  5304. case "hanTraining":
  5305. _formdiv = new U.UF.UI.form(
  5306. "笔画训练",
  5307. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5308. "id": "hanTraining",
  5309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5310. "onresize": function () { }
  5311. }, {
  5312. closecallback: function () { }
  5313. }, { "style": { "height": "36px" } }).form; //创建窗体
  5314. _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); } }
  5315. break;
  5316. case "hanClass":
  5317. _formdiv = new U.UF.UI.form(
  5318. "书法课堂",
  5319. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5320. "id": "hanClass",
  5321. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5322. "onresize": function () { }
  5323. }, {
  5324. closecallback: function () { }
  5325. }, { "style": { "height": "36px" } }).form; //创建窗体
  5326. _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); } }
  5327. break;
  5328. case "han":
  5329. _formdiv = new U.UF.UI.form(
  5330. "汉字宫",
  5331. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5332. "id": "han",
  5333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5334. "onresize": function () { }
  5335. }, {
  5336. closecallback: function () { }
  5337. }, { "style": { "height": "36px" } }).form; //创建窗体
  5338. _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); } }
  5339. break;
  5340. case "projectGM": //课程管理
  5341. _formdiv = new U.UF.UI.form(
  5342. "课程管理",
  5343. $$("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 }), {
  5344. "id": "projectGM",
  5345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5346. "onresize": function () { }
  5347. }, {
  5348. closecallback: function () { }
  5349. }, { "style": { "height": "36px" } }).form; //创建窗体
  5350. _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); } }
  5351. break;
  5352. case "studyGM": //课程中心
  5353. _formdiv = new U.UF.UI.form(
  5354. "课程中心",
  5355. $$("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
  5356. "id": "study",
  5357. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5358. "onresize": function () { }
  5359. }, {
  5360. closecallback: function () { }
  5361. }, { "style": { "height": "36px" } }).form; //创建窗体
  5362. _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); } }
  5363. break;
  5364. // studentGM
  5365. case "studentGM": //学生管理
  5366. _formdiv = new U.UF.UI.form(
  5367. "学生管理",
  5368. $$("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 }), {
  5369. "id": "studentGM",
  5370. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5371. "onresize": function () { }
  5372. }, {
  5373. closecallback: function () { }
  5374. }, { "style": { "height": "36px" } }).form; //创建窗体
  5375. _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); } }
  5376. break;
  5377. case "evaluateGM": //学生评价
  5378. _formdiv = new U.UF.UI.form(
  5379. "学生评价",
  5380. $$("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 }), {
  5381. "id": "evaluateGM",
  5382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5383. "onresize": function () { }
  5384. }, {
  5385. closecallback: function () { }
  5386. }, { "style": { "height": "36px" } }).form; //创建窗体
  5387. _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); } }
  5388. break;
  5389. // classGM
  5390. case "classGM": //班级管理
  5391. _formdiv = new U.UF.UI.form(
  5392. "班级管理",
  5393. $$("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 }), {
  5394. "id": "classGM",
  5395. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5396. "onresize": function () { }
  5397. }, {
  5398. closecallback: function () { }
  5399. }, { "style": { "height": "36px" } }).form; //创建窗体
  5400. _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); } }
  5401. break;
  5402. // dataGM
  5403. case "dataGM":
  5404. _formdiv = new U.UF.UI.form(
  5405. "我的资料",
  5406. $$("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 }), {
  5407. "id": "dataGM",
  5408. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5409. "onresize": function () { }
  5410. }, {
  5411. closecallback: function () { }
  5412. }, { "style": { "height": "36px" } }).form; //创建窗体
  5413. _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); } }
  5414. break;
  5415. // caseGM
  5416. case "caseGM": //课程进展
  5417. _formdiv = new U.UF.UI.form(
  5418. "课程进展",
  5419. $$("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 }), {
  5420. "id": "caseGM",
  5421. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5422. "onresize": function () { }
  5423. }, {
  5424. closecallback: function () { }
  5425. }, { "style": { "height": "36px" } }).form; //创建窗体
  5426. _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); } }
  5427. break;
  5428. // meterialGM
  5429. case "meterialGM": //素材库
  5430. _formdiv = new U.UF.UI.form(
  5431. "素材库",
  5432. $$("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 }), {
  5433. "id": "meterialGM",
  5434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, { "style": { "height": "36px" } }).form; //创建窗体
  5439. _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); } }
  5440. break;
  5441. // evaluateSGM
  5442. case "evaluateSGM": //我的评价
  5443. _formdiv = new U.UF.UI.form(
  5444. "我的评价",
  5445. $$("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 }), {
  5446. "id": "evaluateSGM",
  5447. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //创建窗体
  5452. _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); } }
  5453. break;
  5454. case "jupyter": //jupyter
  5455. _formdiv = new U.UF.UI.form(
  5456. "jupyter",
  5457. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5458. "id": "jupyter",
  5459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. _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); } }
  5465. break;
  5466. case "number": //数字实验室
  5467. _formdiv = new U.UF.UI.form(
  5468. "数字实验室",
  5469. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5470. "id": "number",
  5471. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5472. "onresize": function () { }
  5473. }, {
  5474. closecallback: function () { }
  5475. }, { "style": { "height": "36px" } }).form; //创建窗体
  5476. _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); } }
  5477. break;
  5478. case "studentCourse": //项目管理 学生
  5479. _formdiv = new U.UF.UI.form(
  5480. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5481. $$("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 }), {
  5482. "id": "studentCourse",
  5483. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5484. "onresize": function () { }
  5485. }, {
  5486. closecallback: function () { }
  5487. }, { "style": { "height": "36px" } }).form; //创建窗体
  5488. _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); } }
  5489. break;
  5490. case "studentCourseS": //项目管理 老师
  5491. _formdiv = new U.UF.UI.form(
  5492. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5493. $$("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 }), {
  5494. "id": "studentCourseS",
  5495. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5496. "onresize": function () { }
  5497. }, {
  5498. closecallback: function () { }
  5499. }, { "style": { "height": "36px" } }).form; //创建窗体
  5500. _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); } }
  5501. break;
  5502. case "studentIndex": //项目中心
  5503. _formdiv = new U.UF.UI.form(
  5504. "项目中心",
  5505. $$("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 }), {
  5506. "id": "studentIndex",
  5507. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5508. "onresize": function () { }
  5509. }, {
  5510. closecallback: function () { }
  5511. }, { "style": { "height": "36px" } }).form; //创建窗体
  5512. _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); } }
  5513. break;
  5514. case "CaseDesignS":
  5515. _formdiv = new U.UF.UI.form(
  5516. "项目进展",
  5517. $$("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 }), {
  5518. "id": "case",
  5519. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5520. "onresize": function () { }
  5521. }, {
  5522. closecallback: function () { }
  5523. }, { "style": { "height": "36px" } }).form; //创建窗体
  5524. _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); } }
  5525. break;
  5526. case "tcStudent": //腾讯学生管理
  5527. _formdiv = new U.UF.UI.form(
  5528. "学生管理",
  5529. $$("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 }), {
  5530. "id": "tcStudent",
  5531. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5532. "onresize": function () { }
  5533. }, {
  5534. closecallback: function () { }
  5535. }, { "style": { "height": "36px" } }).form; //创建窗体
  5536. _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); } }
  5537. break;
  5538. case "tcSchool": //腾讯学校管理
  5539. _formdiv = new U.UF.UI.form(
  5540. "学校管理",
  5541. $$("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 }), {
  5542. "id": "tcSchool",
  5543. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5544. "onresize": function () { }
  5545. }, {
  5546. closecallback: function () { }
  5547. }, { "style": { "height": "36px" } }).form; //创建窗体
  5548. _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); } }
  5549. break;
  5550. case "tcTeacher": //腾讯学校管理
  5551. _formdiv = new U.UF.UI.form(
  5552. "教师管理",
  5553. $$("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 }), {
  5554. "id": "tcTeacher",
  5555. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5556. "onresize": function () { }
  5557. }, {
  5558. closecallback: function () { }
  5559. }, { "style": { "height": "36px" } }).form; //创建窗体
  5560. _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); } }
  5561. break;
  5562. case "tcData": //腾讯我的资料
  5563. _formdiv = new U.UF.UI.form(
  5564. "我的资料",
  5565. $$("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 }), {
  5566. "id": "tcData",
  5567. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5568. "onresize": function () { }
  5569. }, {
  5570. closecallback: function () { }
  5571. }, { "style": { "height": "36px" } }).form; //创建窗体
  5572. _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); } }
  5573. break;
  5574. case "tcNotice": //腾讯消息通知
  5575. _formdiv = new U.UF.UI.form(
  5576. "消息通知",
  5577. $$("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 }), {
  5578. "id": "tcNotice",
  5579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5580. "onresize": function () { }
  5581. }, {
  5582. closecallback: function () { }
  5583. }, { "style": { "height": "36px" } }).form; //创建窗体
  5584. _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); } }
  5585. break;
  5586. case "myReport": //好友打开
  5587. _formdiv = new U.UF.UI.form(
  5588. "我的评价",
  5589. $$("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 }), {
  5590. "id": "myReport",
  5591. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5592. "onresize": function () { }
  5593. }, {
  5594. closecallback: function () { }
  5595. }, { "style": { "height": "36px" } }).form; //创建窗体
  5596. _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); } }
  5597. break;
  5598. case "learnAna": //好友打开
  5599. _formdiv = new U.UF.UI.form(
  5600. "学习分析",
  5601. $$("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 }), {
  5602. "id": "learnAna",
  5603. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5604. "onresize": function () { }
  5605. }, {
  5606. closecallback: function () { }
  5607. }, { "style": { "height": "36px" } }).form; //创建窗体
  5608. _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); } }
  5609. break;
  5610. case "AIChat": //AI共创
  5611. _formdiv = new U.UF.UI.form(
  5612. "AI共创",
  5613. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5614. "id": "AIChat",
  5615. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5616. "onresize": function () { }
  5617. }, {
  5618. istop: true,
  5619. closecallback: function () { $("#aichat_icon").remove(); },
  5620. narrowcallback: function () {
  5621. if (!$("#aichat_icon")[0]) {
  5622. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5623. }
  5624. },
  5625. }, { "style": { "height": "36px" } }).form; //创建窗体
  5626. _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); } }
  5627. break;
  5628. case "ainew": //AI共创
  5629. _formdiv = new U.UF.UI.form(
  5630. "AI协同",
  5631. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5632. "id": "ainew",
  5633. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5634. "onresize": function () { }
  5635. }, {
  5636. closecallback: function () { }
  5637. }, { "style": { "height": "36px" } }).form; //创建窗体
  5638. _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); } }
  5639. break;
  5640. case "gpt4": //gpt4
  5641. _formdiv = new U.UF.UI.form(
  5642. "AI助手",
  5643. $$("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 }), {
  5644. "id": "gpt4",
  5645. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5646. "onresize": function () { }
  5647. }, {
  5648. closecallback: function () { }
  5649. }, { "style": { "height": "36px" } }).form; //创建窗体
  5650. _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); } }
  5651. break;
  5652. case "aigpt": //gpt4
  5653. _formdiv = new U.UF.UI.form(
  5654. "AI助手+",
  5655. $$("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 }), {
  5656. "id": "aigpt",
  5657. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5658. "onresize": function () { }
  5659. }, {
  5660. closecallback: function () { }
  5661. }, { "style": { "height": "36px" } }).form; //创建窗体
  5662. _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); } }
  5663. break;
  5664. case "aiKnowledge": //aiKnowledge
  5665. _formdiv = new U.UF.UI.form(
  5666. "知识建构",
  5667. $$("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/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5668. "id": "aiKnowledge",
  5669. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5670. "onresize": function () { }
  5671. }, {
  5672. closecallback: function () { }
  5673. }, { "style": { "height": "36px" } }).form; //创建窗体
  5674. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5675. break;
  5676. case "futureClass": //AI共创
  5677. _formdiv = new U.UF.UI.form(
  5678. "协同建构",
  5679. $$("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
  5680. "id": "synergyCourse",
  5681. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5682. "onresize": function () { }
  5683. }, {
  5684. closecallback: function () {
  5685. $("iframe", _formdiv)[0].contentWindow.loginout();
  5686. }
  5687. }, { "style": { "height": "36px" } }).form; //创建窗体
  5688. _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); } }
  5689. break;
  5690. case "aiagent": //ai agent
  5691. _formdiv = new U.UF.UI.form(
  5692. "AI Agent",
  5693. $$("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" }), {
  5694. "id": "AIAgent",
  5695. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5696. "onresize": function () { }
  5697. }, {
  5698. closecallback: function () { }
  5699. }, { "style": { "height": "36px" } }).form; //创建窗体
  5700. _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); } }
  5701. break;
  5702. case "dataBoard": //数据看板
  5703. _formdiv = new U.UF.UI.form(
  5704. "数据看板",
  5705. $$("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 }), {
  5706. "id": "dataBoard",
  5707. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5708. "onresize": function () { }
  5709. }, {
  5710. closecallback: function () { }
  5711. }, { "style": { "height": "36px" } }).form; //创建窗体
  5712. _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); } }
  5713. break;
  5714. case "dataBoardSies": //数据融合
  5715. _formdiv = new U.UF.UI.form(
  5716. "数据融合",
  5717. $$("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 }), {
  5718. "id": "dataBoardSies",
  5719. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5720. "onresize": function () { }
  5721. }, {
  5722. closecallback: function () { }
  5723. }, { "style": { "height": "36px" } }).form; //创建窗体
  5724. _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); } }
  5725. break;
  5726. case "dataBoardNew": //数据看板
  5727. _formdiv = new U.UF.UI.form(
  5728. "综合看板",
  5729. $$("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 }), {
  5730. "id": "dataBoardNew",
  5731. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. _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); } }
  5737. break;
  5738. case "dataBoardTest": //数据看板
  5739. _formdiv = new U.UF.UI.form(
  5740. "评测看板",
  5741. $$("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 }), {
  5742. "id": "dataBoardTest",
  5743. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5744. "onresize": function () { }
  5745. }, {
  5746. closecallback: function () { }
  5747. }, { "style": { "height": "36px" } }).form; //创建窗体
  5748. _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); } }
  5749. break;
  5750. case "AIAnalyse": //AI共创
  5751. _formdiv = new U.UF.UI.form(
  5752. "AI分析",
  5753. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5754. "id": "AIAnalyse",
  5755. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //创建窗体
  5760. _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); } }
  5761. break;
  5762. case "studioCourse": //AI共创
  5763. _formdiv = new U.UF.UI.form(
  5764. "工作管理",
  5765. $$("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 }), {
  5766. "id": "studioCourse",
  5767. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //创建窗体
  5772. _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); } }
  5773. break;
  5774. case "studioIndex": //AI共创
  5775. _formdiv = new U.UF.UI.form(
  5776. "工作中心",
  5777. $$("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 }), {
  5778. "id": "studioIndex",
  5779. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5780. "onresize": function () { }
  5781. }, {
  5782. closecallback: function () { }
  5783. }, { "style": { "height": "36px" } }).form; //创建窗体
  5784. _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); } }
  5785. break;
  5786. case "source":
  5787. _formdiv = new U.UF.UI.form(
  5788. "教学资源",
  5789. $$("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 }), {
  5790. "id": "source",
  5791. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //创建窗体
  5796. _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); } }
  5797. break;
  5798. case "testTeacher":
  5799. _formdiv = new U.UF.UI.form(
  5800. "教师管理",
  5801. $$("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 }), {
  5802. "id": "testTeacher",
  5803. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5804. "onresize": function () { }
  5805. }, {
  5806. closecallback: function () { }
  5807. }, { "style": { "height": "36px" } }).form; //创建窗体
  5808. _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); } }
  5809. break;
  5810. case "testStudent":
  5811. _formdiv = new U.UF.UI.form(
  5812. "教师中心",
  5813. $$("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 }), {
  5814. "id": "testStudent",
  5815. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5816. "onresize": function () { }
  5817. }, {
  5818. closecallback: function () { }
  5819. }, { "style": { "height": "36px" } }).form; //创建窗体
  5820. _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); } }
  5821. break;
  5822. case "testTeacherSies":
  5823. _formdiv = new U.UF.UI.form(
  5824. "教师管理",
  5825. $$("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 }), {
  5826. "id": "testTeacherSies",
  5827. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5828. "onresize": function () { }
  5829. }, {
  5830. closecallback: function () { }
  5831. }, { "style": { "height": "36px" } }).form; //创建窗体
  5832. _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); } }
  5833. break;
  5834. case "testStudentSies":
  5835. _formdiv = new U.UF.UI.form(
  5836. "教师中心",
  5837. $$("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 }), {
  5838. "id": "testStudentSies",
  5839. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5840. "onresize": function () { }
  5841. }, {
  5842. closecallback: function () { }
  5843. }, { "style": { "height": "36px" } }).form; //创建窗体
  5844. _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); } }
  5845. break;
  5846. case "ytpbl": //消息通知
  5847. _formdiv = new U.UF.UI.form(
  5848. "案例征集",
  5849. $$("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 }), {
  5850. "id": "ytpbl",
  5851. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5852. "onresize": function () { }
  5853. }, {
  5854. closecallback: function () { }
  5855. }, { "style": { "height": "36px" } }).form; //创建窗体
  5856. _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); } }
  5857. // 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");
  5858. break;
  5859. case "aiCourseResource": //人工智能窗体
  5860. _formdiv = new U.UF.UI.form(
  5861. false,
  5862. $$("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 }), {
  5863. "id": "aiCourseResource",
  5864. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5865. "onresize": function () { },
  5866. "isdrag": false,
  5867. }, {
  5868. closecallback: function () { }
  5869. }, { "style": { "height": "36px" } }).form; //创建窗体
  5870. _taskbar = ''
  5871. break;
  5872. case "szdjgCocooroboX": //图形化编程
  5873. _formdiv = new U.UF.UI.form(
  5874. "图形化编程",
  5875. $$("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" }), {
  5876. "id": "szdjgCocooroboX",
  5877. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5878. "onresize": function () { }
  5879. }, {
  5880. closecallback: function () { }
  5881. }, { "style": { "height": "36px" } }).form; //创建窗体
  5882. _taskbar = ''
  5883. break;
  5884. case "szdjgPython": //python编程
  5885. _formdiv = new U.UF.UI.form(
  5886. "Python编程",
  5887. $$("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" }), {
  5888. "id": "szdjgPython",
  5889. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5890. "onresize": function () { }
  5891. }, {
  5892. closecallback: function () { }
  5893. }, { "style": { "height": "36px" } }).form; //创建窗体
  5894. _taskbar = ''
  5895. break;
  5896. case "Record":
  5897. _formdiv = new U.UF.UI.form(
  5898. "观察记录",
  5899. $$("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 }), {
  5900. "id": "Record",
  5901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5902. "onresize": function () { }
  5903. }, {
  5904. closecallback: function () { }
  5905. }, { "style": { "height": "36px" } }).form; //创建窗体
  5906. _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); } }
  5907. break;
  5908. case "aigptCourse":
  5909. _formdiv = new U.UF.UI.form(
  5910. "AI智能体",
  5911. $$("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' }), {
  5912. "id": "aigptCourse",
  5913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5914. "onresize": function () { }
  5915. }, {
  5916. closecallback: function () { }
  5917. }, { "style": { "height": "36px" } }).form; //创建窗体
  5918. _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); } }
  5919. break;
  5920. case "classroomObservation":
  5921. _formdiv = new U.UF.UI.form(
  5922. "课堂观察",
  5923. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5924. "id": "classroomObservation",
  5925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //创建窗体
  5930. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5931. break;
  5932. case "pblCourse":
  5933. _formdiv = new U.UF.UI.form(
  5934. "学生PBL",
  5935. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5936. "id": "pblCourse",
  5937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //创建窗体
  5942. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5943. break;
  5944. }
  5945. //U.MD.D.I.openClick(str);
  5946. //如果有任务栏信息
  5947. if (_taskbar) {
  5948. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5949. }
  5950. }
  5951. // U.MD.D.I.openClick = function(str){
  5952. // var click = '';
  5953. // switch(str){
  5954. // case 'friend':
  5955. // click = '我的好友';
  5956. // break;
  5957. // case 'domain':
  5958. // click = '域名管理';
  5959. // break;
  5960. // case 'disk':
  5961. // click = '我的云盘';
  5962. // break;
  5963. // case 'word':
  5964. // click = 'Word';
  5965. // break;
  5966. // case 'excel':
  5967. // click = 'Execl';
  5968. // break;
  5969. // case 'txt':
  5970. // click = '文本文件';
  5971. // break;
  5972. // case 'lookupFriend':
  5973. // click = '查找好友';
  5974. // break;
  5975. // case 'ftp':
  5976. // click = 'FTP';
  5977. // break;
  5978. // case 'group':
  5979. // click = '群组';
  5980. // break;
  5981. // case 'set':
  5982. // click = '我的设置';
  5983. // break;
  5984. // case 'systemSet':
  5985. // click = '系统设置';
  5986. // break;
  5987. // case 'boomYun':
  5988. // click = '互联办公';
  5989. // break;
  5990. // case 'xz':
  5991. // click = '云端下载';
  5992. // break;
  5993. // case 'client':
  5994. // click = '有思浏览器';
  5995. // break;
  5996. // case 'backEndProgramming':
  5997. // click = '在线后台编程';
  5998. // break;
  5999. // case 'frontEndProgramming':
  6000. // click = '在线前端编程';
  6001. // break;
  6002. // default: break;
  6003. // }
  6004. // if(U.MD.D.I.Ip && click){
  6005. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6006. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6007. // })
  6008. // }
  6009. // }
  6010. /**
  6011. *函数作用:ajax简易函数,使用post格式
  6012. *@param url {data} 后台地址
  6013. *@param data {data} 参数json
  6014. *@param fn {data} 回调函数
  6015. *
  6016. */
  6017. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6018. // var xhr = new XMLHttpRequest();
  6019. // xhr.open("GET",url,true);
  6020. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6021. // xhr.onreadystatechange = function(){
  6022. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6023. // fn.call(this,xhr.responseText);
  6024. // }
  6025. // };
  6026. // xhr.send();
  6027. // }
  6028. /*判断是否是内网IP*/
  6029. // U.MD.D.I.isInnerIPFn = function(str){
  6030. // var curPageUrl = str;
  6031. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6032. // curPageUrl =curPageUrl.replace(reg1,'');
  6033. // // console.log('curPageUrl-1 '+curPageUrl);
  6034. // var reg2 = /\:+/g;//替换冒号为一点
  6035. // curPageUrl =curPageUrl.replace(reg2,'.');
  6036. // // console.log('curPageUrl-2 '+curPageUrl);
  6037. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6038. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6039. // if(curPageUrl[2] != '16'){
  6040. // return ipAddress;
  6041. // }else{
  6042. // return false;
  6043. // }
  6044. // }
  6045. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6046. // //compatibility for firefox and chrome
  6047. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6048. // var pc = new myPeerConnection({
  6049. // iceServers: []
  6050. // }),
  6051. // noop = function() {},
  6052. // localIPs = {},
  6053. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6054. // key;
  6055. // function iterateIP(ip) {
  6056. // if (!localIPs[ip]) onNewIP(ip);
  6057. // localIPs[ip] = true;
  6058. // }
  6059. // //create a bogus data channel
  6060. // pc.createDataChannel("");
  6061. // // create offer and set local description
  6062. // pc.createOffer().then(function(sdp) {
  6063. // sdp.sdp.split('\n').forEach(function(line) {
  6064. // if (line.indexOf('candidate') < 0) return;
  6065. // line.match(ipRegex).forEach(iterateIP);
  6066. // });
  6067. // pc.setLocalDescription(sdp, noop, noop);
  6068. // }).catch(function(reason) {
  6069. // // An error occurred, so handle the failure to connect
  6070. // });
  6071. // //sten for candidate events
  6072. // pc.onicecandidate = function(ice) {
  6073. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6074. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6075. // };
  6076. // }
  6077. // U.MD.D.I.getUserIpBool = function(callback){
  6078. // U.MD.D.I.getUserIP(function(ip){
  6079. // alert("Got IP! :" + ip);
  6080. // });
  6081. //}
  6082. //#endregion
  6083. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6084. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6085. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6086. _userinfo = US.userInfo, //登录用户信息
  6087. _userid = US.userInfo.userid //登录用户id
  6088. let _iframe;
  6089. let _cid = cid,
  6090. _stage = stage,
  6091. _task = task,
  6092. _tool = tool;
  6093. var _jie = $$("div", {
  6094. "style": {
  6095. "position": "absolute",
  6096. "bottom": "50px",
  6097. "right": "50px",
  6098. "zIndex": "9999",
  6099. "backgroundColor": "#2268bc",
  6100. "color": "#fff",
  6101. "padding": "12px 20px",
  6102. "cursor": "pointer",
  6103. "borderRadius": "4px",
  6104. },
  6105. "innerHTML": "提交作业"
  6106. })
  6107. let aTool = ''
  6108. let _loading = document.createElement('div')
  6109. _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;"
  6110. // _loading.id = "";
  6111. let _lchild = document.createElement('div')
  6112. let _limg = document.createElement('img')
  6113. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6114. _limg.style = "width: 26px;margin-right: 10px;"
  6115. _lchild.appendChild(_limg)
  6116. let _lspan = document.createElement('span')
  6117. _lspan.innerHTML = "上传中..."
  6118. _lchild.appendChild(_lspan)
  6119. _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%);"
  6120. _loading.appendChild(_lchild)
  6121. var _box = $$('div', {
  6122. "style": {
  6123. "position": "relative",
  6124. "width": "100%",
  6125. "height": "100%",
  6126. },
  6127. })
  6128. _box.appendChild(_loading)
  6129. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6130. switch (str) {
  6131. case "whiteboard":
  6132. aTool = 1;
  6133. _iframe = $$("iframe", {
  6134. "frameborder": "no",
  6135. "border": "0",
  6136. "scrolling ": "no",
  6137. "style": {
  6138. "cssText": "border:0;width:100%;height:100%"
  6139. },
  6140. "src": "https://beta.iwb.cocorobo.cn/"
  6141. })
  6142. _box.appendChild(_iframe);
  6143. _box.appendChild(_jie);
  6144. _formdiv = new U.UF.UI.form(
  6145. "电子白板",
  6146. _box, {
  6147. "id": "whiteboard" + cid + stage + task + tool,
  6148. "style": {
  6149. "width": "90%",
  6150. "height": "90%",
  6151. "overflow": 'hidden'
  6152. },
  6153. "onresize": function () { }
  6154. }, {
  6155. closecallback: function () { }
  6156. }, {
  6157. "style": {
  6158. "height": "36px"
  6159. }
  6160. }).form; //创建窗体
  6161. _taskbar = {
  6162. "id": str + _formdiv.id,
  6163. "style": {
  6164. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6165. },
  6166. "name": "电子白板",
  6167. "forms": _formdiv,
  6168. "click": function () {
  6169. U.MD.D.I.openApplication(str, obj, info);
  6170. }
  6171. }
  6172. break;
  6173. case "mind":
  6174. aTool = 3;
  6175. _iframe = $$("iframe", {
  6176. "frameborder": "no",
  6177. "border": "0",
  6178. "scrolling ": "no",
  6179. "style": {
  6180. "cssText": "border:0;width:100%;height:100%"
  6181. },
  6182. "src": "/kityminder-editor/dist/index.html"
  6183. })
  6184. _box.appendChild(_iframe);
  6185. _box.appendChild(_jie);
  6186. _formdiv = new U.UF.UI.form(
  6187. "思维导图",
  6188. _box, { //"/jsmind/example/demo.html"
  6189. "id": "mind" + cid + stage + task + tool,
  6190. "style": {
  6191. "width": "90%",
  6192. "height": "90%",
  6193. "overflow": 'hidden'
  6194. },
  6195. "onresize": function () { }
  6196. }, {
  6197. closecallback: function () { }
  6198. }, {
  6199. "style": {
  6200. "height": "36px"
  6201. }
  6202. }).form; //创建窗体
  6203. _taskbar = {
  6204. "id": str + _formdiv.id,
  6205. "style": {
  6206. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6207. },
  6208. "name": "思维导图",
  6209. "forms": _formdiv,
  6210. "click": function () {
  6211. U.MD.D.I.openApplication(str, obj, info);
  6212. }
  6213. }
  6214. break;
  6215. case "MindMap":
  6216. aTool = 3;
  6217. _iframe = $$("iframe", {
  6218. "frameborder": "no",
  6219. "border": "0",
  6220. "scrolling ": "no",
  6221. "style": {
  6222. "cssText": "border:0;width:100%;height:100%"
  6223. },
  6224. "src": "//cloud.cocorobo.cn/mind/"
  6225. })
  6226. _box.appendChild(_iframe);
  6227. _box.appendChild(_jie);
  6228. _formdiv = new U.UF.UI.form(
  6229. "思维导图",
  6230. _box, { //"/jsmind/example/demo.html"
  6231. "id": "mind" + cid + stage + task + tool,
  6232. "style": {
  6233. "width": "90%",
  6234. "height": "90%",
  6235. "overflow": 'hidden'
  6236. },
  6237. "onresize": function () { }
  6238. }, {
  6239. closecallback: function () { }
  6240. }, {
  6241. "style": {
  6242. "height": "36px"
  6243. }
  6244. }).form; //创建窗体
  6245. _taskbar = {
  6246. "id": str + _formdiv.id,
  6247. "style": {
  6248. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6249. },
  6250. "name": "思维导图",
  6251. "forms": _formdiv,
  6252. "click": function () {
  6253. U.MD.D.I.openApplication(str, obj, info);
  6254. }
  6255. }
  6256. break;
  6257. case "doc":
  6258. aTool = 6;
  6259. _iframe = $$("iframe", {
  6260. "frameborder": "no",
  6261. "border": "0",
  6262. "scrolling ": "no",
  6263. "style": {
  6264. "cssText": "border:0;width:100%;height:100%"
  6265. },
  6266. "src": "/Office/Word/WordEditArea.htm"
  6267. })
  6268. _box.appendChild(_iframe);
  6269. _box.appendChild(_jie);
  6270. _formdiv = new U.UF.UI.form(
  6271. "协同文档",
  6272. _box, {
  6273. "id": "doc" + cid + stage + task + tool,
  6274. "style": {
  6275. "width": "90%",
  6276. "height": "90%",
  6277. "overflow": 'hidden'
  6278. },
  6279. "onresize": function () { }
  6280. }, {
  6281. closecallback: function () { }
  6282. }, {
  6283. "style": {
  6284. "height": "36px"
  6285. }
  6286. }).form; //创建窗体
  6287. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6288. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6289. })
  6290. _taskbar = {
  6291. "id": str + _formdiv.id,
  6292. "style": {
  6293. "backgroundImage": "url(/img/icon/doc.png)"
  6294. },
  6295. "name": "协同文档",
  6296. "forms": _formdiv,
  6297. "click": function () {
  6298. U.MD.D.I.openApplication(str, obj, info);
  6299. }
  6300. }
  6301. break;
  6302. case "mindNetwork": //好友打开
  6303. aTool = 7;
  6304. _iframe = $$("iframe", {
  6305. "webkitallowfullscreen": "",
  6306. "mozallowfullscreen": "",
  6307. "allowfullscreen": "",
  6308. "frameborder": "no",
  6309. "border": "0",
  6310. "scrolling ": "no",
  6311. "style": {
  6312. "cssText": "border:0; width:100%; height:100%;"
  6313. },
  6314. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6315. })
  6316. _box.appendChild(_iframe);
  6317. _box.appendChild(_jie);
  6318. _formdiv = new U.UF.UI.form(
  6319. "思维网格",
  6320. _box, {
  6321. "id": "mindNetwork" + cid + stage + task + tool,
  6322. "style": {
  6323. "width": "90%",
  6324. "height": "90%",
  6325. "overflow": 'hidden'
  6326. },
  6327. "onresize": function () { }
  6328. }, {
  6329. closecallback: function () { }
  6330. }, {
  6331. "style": {
  6332. "height": "36px"
  6333. }
  6334. }).form; //创建窗体
  6335. _taskbar = {
  6336. "id": str + _formdiv.id,
  6337. "style": {
  6338. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6339. },
  6340. "name": "思维网格",
  6341. "forms": _formdiv,
  6342. "click": function () {
  6343. U.MD.D.I.openApplication(str, obj, info);
  6344. }
  6345. }
  6346. break;
  6347. case "courseDesign":
  6348. _iframe = $$("iframe", {
  6349. "webkitallowfullscreen": "",
  6350. "mozallowfullscreen": "",
  6351. "allowfullscreen": "",
  6352. "frameborder": "no",
  6353. "border": "0",
  6354. "scrolling ": "no",
  6355. "style": {
  6356. "cssText": "border:0; width:100%; height:100%;"
  6357. },
  6358. "src": "/course-design-vue"
  6359. })
  6360. _box.appendChild(_iframe);
  6361. _box.appendChild(_jie);
  6362. _formdiv = new U.UF.UI.form(
  6363. "项目设计",
  6364. _box, {
  6365. "id": "courseDesign" + cid + stage + task + tool,
  6366. "style": {
  6367. "width": "90%",
  6368. "height": "90%",
  6369. "overflow": 'hidden'
  6370. },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, {
  6375. "style": {
  6376. "height": "36px"
  6377. }
  6378. }).form; //创建窗体
  6379. _taskbar = {
  6380. "id": str + _formdiv.id,
  6381. "style": {
  6382. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6383. },
  6384. "name": "项目设计",
  6385. "forms": _formdiv,
  6386. "click": function () {
  6387. U.MD.D.I.openApplication(str, obj, info);
  6388. }
  6389. }
  6390. break;
  6391. }
  6392. const script1 = document.createElement("script");
  6393. script1.type = "text/javascript";
  6394. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6395. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6396. const script2 = document.createElement("script");
  6397. script2.type = "text/javascript";
  6398. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6399. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6400. const script3 = document.createElement("script");
  6401. script3.type = "text/javascript";
  6402. script3.charset = "UTF-8";
  6403. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6404. const script4 = document.createElement("script");
  6405. script4.type = "text/javascript";
  6406. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6407. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6408. if (_iframe) {
  6409. if (str == 'doc') {
  6410. _iframe = _formdiv.querySelector('iframe')
  6411. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6412. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6413. _iframe.contentWindow.document.body.appendChild(script1);
  6414. _iframe.contentWindow.document.body.appendChild(script2);
  6415. // _iframe.contentWindow.document.body.appendChild(script3);
  6416. _iframe.contentWindow.document.body.appendChild(script4);
  6417. })
  6418. if (onloadListener) {
  6419. _iframe.contentDocument.location.reload()
  6420. } else {
  6421. _iframe.contentDocument.location.reload()
  6422. }
  6423. } else if (str == 'courseDesign') {
  6424. U.UF.DL.iframeLoad(_iframe, function () {
  6425. // _iframe.contentWindow.U.MD.O.W.load();
  6426. // _iframe.contentWindow.document.body.appendChild(script1);
  6427. _iframe.contentWindow.document.body.appendChild(script2);
  6428. _iframe.contentWindow.document.body.appendChild(script4);
  6429. })
  6430. } else if (str == 'mind') {
  6431. _iframe = _formdiv.querySelector('iframe')
  6432. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6433. //
  6434. _iframe.contentWindow.document.body.appendChild(script1);
  6435. _iframe.contentWindow.document.body.appendChild(script2);
  6436. _iframe.contentWindow.document.body.appendChild(script4);
  6437. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6438. })
  6439. if (onloadListener) {
  6440. _iframe.contentDocument.location.reload()
  6441. } else {
  6442. _iframe.contentDocument.location.reload()
  6443. }
  6444. } else if (str == 'whiteboard') {
  6445. _iframe = _formdiv.querySelector('iframe')
  6446. let onloadListener = _iframe.onload = () => {
  6447. _iframe.contentWindow.document.body.appendChild(script1);
  6448. _iframe.contentWindow.document.body.appendChild(script2);
  6449. _iframe.contentWindow.document.body.appendChild(script4);
  6450. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6451. };
  6452. // if (onloadListener) {
  6453. // try {
  6454. // _iframe.src += "?cocorobo="+new Date().getTime()
  6455. // _iframe.contentWindow.document.location.reload()
  6456. // } catch (error) {
  6457. // }
  6458. // } else {
  6459. // _iframe.contentDocument.location.reload()
  6460. // }
  6461. } else {
  6462. _iframe.onload = () => {
  6463. _iframe.contentWindow.document.body.appendChild(script1);
  6464. _iframe.contentWindow.document.body.appendChild(script2);
  6465. // _iframe.contentWindow.document.body.appendChild(script3);
  6466. _iframe.contentWindow.document.body.appendChild(script4);
  6467. };
  6468. }
  6469. _jie.onclick = async () => {
  6470. let text = ''
  6471. if (aTool == 1) {
  6472. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6473. } else if (aTool == 6) {
  6474. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6475. } else if (aTool == 3) {
  6476. text = await U.MD.D.I.getEditorContent(_iframe);
  6477. }
  6478. _loading.style.display = 'flex'
  6479. console.log(_loading);
  6480. var _ajs = _iframe.contentWindow.document.createElement("script");
  6481. _ajs.type = "text/javascript";
  6482. _ajs.innerHTML =
  6483. // 'console.log(' + _loading + ');\n' +
  6484. 'var _js = document.createElement("script");\n' +
  6485. '_js.type="text/javascript";\n' +
  6486. '_js.charset="UTF-8";\n' +
  6487. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6488. "_js.onload = function(){\n" +
  6489. ' var a = document.getElementsByTagName("img")\n' +
  6490. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6491. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6492. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6493. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6494. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6495. "beforeUpload_shishi(file," +
  6496. "'" +
  6497. _userid +
  6498. "'" +
  6499. ", " +
  6500. "'" +
  6501. _cid +
  6502. "'" +
  6503. ", " +
  6504. "'" +
  6505. _stage +
  6506. "'" +
  6507. ", " +
  6508. "'" +
  6509. _task +
  6510. "'" +
  6511. ", " +
  6512. "'" +
  6513. _tool +
  6514. "'" +
  6515. ", " +
  6516. "'" +
  6517. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6518. "'" +
  6519. ", " +
  6520. "'" +
  6521. aTool +
  6522. "'" +
  6523. ", " +
  6524. "`" +
  6525. text +
  6526. "`" +
  6527. ")\n" +
  6528. " });\n" +
  6529. "}\n" +
  6530. "document.head.appendChild(_js);\n";
  6531. _iframe.contentWindow.document.head.appendChild(_ajs);
  6532. }
  6533. }
  6534. //U.MD.D.I.openClick(str);
  6535. //如果有任务栏信息
  6536. // if (_taskbar) {
  6537. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6538. // }
  6539. }
  6540. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6541. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6542. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6543. _userinfo = US.userInfo, //登录用户信息
  6544. _userid = US.userInfo.userid //登录用户id
  6545. let _iframe;
  6546. let _cid = cid,
  6547. _stage = stage,
  6548. _task = task,
  6549. _tool = tool;
  6550. var _jie = $$("div", {
  6551. "style": {
  6552. "position": "absolute",
  6553. "bottom": "50px",
  6554. "right": "50px",
  6555. "zIndex": "9999",
  6556. "backgroundColor": "#2268bc",
  6557. "color": "#fff",
  6558. "padding": "12px 20px",
  6559. "cursor": "pointer",
  6560. "borderRadius": "4px",
  6561. },
  6562. "innerHTML": "提交作业"
  6563. })
  6564. let aTool = ''
  6565. let _loading = document.createElement('div')
  6566. _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;"
  6567. // _loading.id = "";
  6568. let _lchild = document.createElement('div')
  6569. let _limg = document.createElement('img')
  6570. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6571. _limg.style = "width: 26px;margin-right: 10px;"
  6572. _lchild.appendChild(_limg)
  6573. let _lspan = document.createElement('span')
  6574. _lspan.innerHTML = "上传中..."
  6575. _lchild.appendChild(_lspan)
  6576. _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%);"
  6577. _loading.appendChild(_lchild)
  6578. let _box = $$('div', {
  6579. "style": {
  6580. "position": "relative",
  6581. "width": "100%",
  6582. "height": "100%",
  6583. },
  6584. })
  6585. _box.appendChild(_loading)
  6586. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6587. switch (str) {
  6588. case "whiteboard":
  6589. aTool = 1;
  6590. _iframe = $$("iframe", {
  6591. "frameborder": "no",
  6592. "border": "0",
  6593. "scrolling ": "no",
  6594. "style": {
  6595. "cssText": "border:0;width:100%;height:100%"
  6596. },
  6597. "src": "https://beta.iwb.cocorobo.cn/"
  6598. })
  6599. _box.appendChild(_iframe);
  6600. _box.appendChild(_jie);
  6601. _formdiv = new U.UF.UI.form(
  6602. "电子白板",
  6603. _box, {
  6604. "id": "whiteboard" + cid + stage + task + tool,
  6605. "style": {
  6606. "width": "90%",
  6607. "height": "90%",
  6608. "overflow": 'hidden'
  6609. },
  6610. "onresize": function () { }
  6611. }, {
  6612. closecallback: function () { }
  6613. }, {
  6614. "style": {
  6615. "height": "36px"
  6616. }
  6617. }).form; //创建窗体
  6618. _taskbar = {
  6619. "id": str + _formdiv.id,
  6620. "style": {
  6621. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6622. },
  6623. "name": "电子白板",
  6624. "forms": _formdiv,
  6625. "click": function () {
  6626. U.MD.D.I.openApplication(str, obj, info);
  6627. }
  6628. }
  6629. break;
  6630. case "mind":
  6631. aTool = 3;
  6632. _iframe = $$("iframe", {
  6633. "frameborder": "no",
  6634. "border": "0",
  6635. "scrolling ": "no",
  6636. "style": {
  6637. "cssText": "border:0;width:100%;height:100%"
  6638. },
  6639. "src": "/kityminder-editor/dist/index.html"
  6640. })
  6641. _box.appendChild(_iframe);
  6642. _box.appendChild(_jie);
  6643. _formdiv = new U.UF.UI.form(
  6644. "思维导图",
  6645. _box, { //"/jsmind/example/demo.html"
  6646. "id": "mind" + cid + stage + task + tool,
  6647. "style": {
  6648. "width": "90%",
  6649. "height": "90%",
  6650. "overflow": 'hidden'
  6651. },
  6652. "onresize": function () { }
  6653. }, {
  6654. closecallback: function () { }
  6655. }, {
  6656. "style": {
  6657. "height": "36px"
  6658. }
  6659. }).form; //创建窗体
  6660. _taskbar = {
  6661. "id": str + _formdiv.id,
  6662. "style": {
  6663. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6664. },
  6665. "name": "思维导图",
  6666. "forms": _formdiv,
  6667. "click": function () {
  6668. U.MD.D.I.openApplication(str, obj, info);
  6669. }
  6670. }
  6671. break;
  6672. case "MindMap":
  6673. aTool = 3;
  6674. _iframe = $$("iframe", {
  6675. "frameborder": "no",
  6676. "border": "0",
  6677. "scrolling ": "no",
  6678. "style": {
  6679. "cssText": "border:0;width:100%;height:100%"
  6680. },
  6681. "src": "//cloud.cocorobo.cn/mind/"
  6682. })
  6683. _box.appendChild(_iframe);
  6684. _box.appendChild(_jie);
  6685. _formdiv = new U.UF.UI.form(
  6686. "思维导图",
  6687. _box, { //"/jsmind/example/demo.html"
  6688. "id": "mind" + cid + stage + task + tool,
  6689. "style": {
  6690. "width": "90%",
  6691. "height": "90%",
  6692. "overflow": 'hidden'
  6693. },
  6694. "onresize": function () { }
  6695. }, {
  6696. closecallback: function () { }
  6697. }, {
  6698. "style": {
  6699. "height": "36px"
  6700. }
  6701. }).form; //创建窗体
  6702. _taskbar = {
  6703. "id": str + _formdiv.id,
  6704. "style": {
  6705. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6706. },
  6707. "name": "思维导图",
  6708. "forms": _formdiv,
  6709. "click": function () {
  6710. U.MD.D.I.openApplication(str, obj, info);
  6711. }
  6712. }
  6713. break;
  6714. case "doc":
  6715. aTool = 6;
  6716. _iframe = $$("iframe", {
  6717. "frameborder": "no",
  6718. "border": "0",
  6719. "scrolling ": "no",
  6720. "style": {
  6721. "cssText": "border:0;width:100%;height:100%"
  6722. },
  6723. "src": "/Office/Word/WordEditArea.htm"
  6724. })
  6725. _box.appendChild(_iframe);
  6726. _box.appendChild(_jie);
  6727. _formdiv = new U.UF.UI.form(
  6728. "协同文档",
  6729. _box, {
  6730. "id": "doc" + cid + stage + task + tool,
  6731. "style": {
  6732. "width": "90%",
  6733. "height": "90%",
  6734. "overflow": 'hidden'
  6735. },
  6736. "onresize": function () { }
  6737. }, {
  6738. closecallback: function () { }
  6739. }, {
  6740. "style": {
  6741. "height": "36px"
  6742. }
  6743. }).form; //创建窗体
  6744. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6745. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6746. })
  6747. _taskbar = {
  6748. "id": str + _formdiv.id,
  6749. "style": {
  6750. "backgroundImage": "url(/img/icon/doc.png)"
  6751. },
  6752. "name": "协同文档",
  6753. "forms": _formdiv,
  6754. "click": function () {
  6755. U.MD.D.I.openApplication(str, obj, info);
  6756. }
  6757. }
  6758. break;
  6759. case "mindNetwork": //好友打开
  6760. aTool = 7;
  6761. _iframe = $$("iframe", {
  6762. "webkitallowfullscreen": "",
  6763. "mozallowfullscreen": "",
  6764. "allowfullscreen": "",
  6765. "frameborder": "no",
  6766. "border": "0",
  6767. "scrolling ": "no",
  6768. "style": {
  6769. "cssText": "border:0; width:100%; height:100%;"
  6770. },
  6771. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6772. })
  6773. _box.appendChild(_iframe);
  6774. _box.appendChild(_jie);
  6775. _formdiv = new U.UF.UI.form(
  6776. "思维网格",
  6777. _box, {
  6778. "id": "mindNetwork" + cid + stage + task + tool,
  6779. "style": {
  6780. "width": "90%",
  6781. "height": "90%",
  6782. "overflow": 'hidden'
  6783. },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, {
  6788. "style": {
  6789. "height": "36px"
  6790. }
  6791. }).form; //创建窗体
  6792. _taskbar = {
  6793. "id": str + _formdiv.id,
  6794. "style": {
  6795. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6796. },
  6797. "name": "思维网格",
  6798. "forms": _formdiv,
  6799. "click": function () {
  6800. U.MD.D.I.openApplication(str, obj, info);
  6801. }
  6802. }
  6803. break;
  6804. case "courseDesign":
  6805. _iframe = $$("iframe", {
  6806. "webkitallowfullscreen": "",
  6807. "mozallowfullscreen": "",
  6808. "allowfullscreen": "",
  6809. "frameborder": "no",
  6810. "border": "0",
  6811. "scrolling ": "no",
  6812. "style": {
  6813. "cssText": "border:0; width:100%; height:100%;"
  6814. },
  6815. "src": "/course-design-vue"
  6816. })
  6817. _box.appendChild(_iframe);
  6818. _box.appendChild(_jie);
  6819. _formdiv = new U.UF.UI.form(
  6820. "项目设计",
  6821. _box, {
  6822. "id": "courseDesign" + cid + stage + task + tool,
  6823. "style": {
  6824. "width": "90%",
  6825. "height": "90%",
  6826. "overflow": 'hidden'
  6827. },
  6828. "onresize": function () { }
  6829. }, {
  6830. closecallback: function () { }
  6831. }, {
  6832. "style": {
  6833. "height": "36px"
  6834. }
  6835. }).form; //创建窗体
  6836. _taskbar = {
  6837. "id": str + _formdiv.id,
  6838. "style": {
  6839. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6840. },
  6841. "name": "项目设计",
  6842. "forms": _formdiv,
  6843. "click": function () {
  6844. U.MD.D.I.openApplication(str, obj, info);
  6845. }
  6846. }
  6847. break;
  6848. }
  6849. const script1 = document.createElement("script");
  6850. script1.type = "text/javascript";
  6851. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6852. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6853. const script2 = document.createElement("script");
  6854. script2.type = "text/javascript";
  6855. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6856. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6857. const script3 = document.createElement("script");
  6858. script3.type = "text/javascript";
  6859. script3.charset = "UTF-8";
  6860. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6861. const script4 = document.createElement("script");
  6862. script4.type = "text/javascript";
  6863. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6864. script4.src = window.origin + "/js/Common/jietu2E.js";
  6865. if (_iframe) {
  6866. if (str == 'doc') {
  6867. _iframe = _formdiv.querySelector('iframe')
  6868. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6869. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6870. _iframe.contentWindow.document.body.appendChild(script1);
  6871. _iframe.contentWindow.document.body.appendChild(script2);
  6872. // _iframe.contentWindow.document.body.appendChild(script3);
  6873. _iframe.contentWindow.document.body.appendChild(script4);
  6874. })
  6875. if (onloadListener) {
  6876. _iframe.contentDocument.location.reload()
  6877. } else {
  6878. _iframe.contentDocument.location.reload()
  6879. }
  6880. } else if (str == 'courseDesign') {
  6881. U.UF.DL.iframeLoad(_iframe, function () {
  6882. // _iframe.contentWindow.U.MD.O.W.load();
  6883. // _iframe.contentWindow.document.body.appendChild(script1);
  6884. _iframe.contentWindow.document.body.appendChild(script2);
  6885. _iframe.contentWindow.document.body.appendChild(script4);
  6886. })
  6887. } else if (str == 'mind') {
  6888. _iframe = _formdiv.querySelector('iframe')
  6889. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6890. //
  6891. _iframe.contentWindow.document.body.appendChild(script1);
  6892. _iframe.contentWindow.document.body.appendChild(script2);
  6893. _iframe.contentWindow.document.body.appendChild(script4);
  6894. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6895. })
  6896. if (onloadListener) {
  6897. _iframe.contentDocument.location.reload()
  6898. } else {
  6899. _iframe.contentDocument.location.reload()
  6900. }
  6901. } else if (str == 'whiteboard') {
  6902. _iframe = _formdiv.querySelector('iframe')
  6903. let onloadListener = _iframe.onload = () => {
  6904. _iframe.contentWindow.document.body.appendChild(script1);
  6905. _iframe.contentWindow.document.body.appendChild(script2);
  6906. _iframe.contentWindow.document.body.appendChild(script4);
  6907. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6908. };
  6909. // if (onloadListener) {
  6910. // try {
  6911. // _iframe.src += "?cocorobo="+new Date().getTime()
  6912. // _iframe.contentWindow.document.location.reload()
  6913. // } catch (error) {
  6914. // }
  6915. // } else {
  6916. // _iframe.contentDocument.location.reload()
  6917. // }
  6918. } else {
  6919. _iframe.onload = () => {
  6920. _iframe.contentWindow.document.body.appendChild(script1);
  6921. _iframe.contentWindow.document.body.appendChild(script2);
  6922. // _iframe.contentWindow.document.body.appendChild(script3);
  6923. _iframe.contentWindow.document.body.appendChild(script4);
  6924. };
  6925. }
  6926. _jie.onclick = async () => {
  6927. let text = ''
  6928. if (aTool == 1) {
  6929. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6930. } else if (aTool == 6) {
  6931. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6932. } else if (aTool == 3) {
  6933. text = await U.MD.D.I.getEditorContent(_iframe);
  6934. }
  6935. _loading.style.display = 'flex'
  6936. console.log(_loading);
  6937. var _ajs = _iframe.contentWindow.document.createElement("script");
  6938. _ajs.type = "text/javascript";
  6939. _ajs.innerHTML =
  6940. // 'console.log(' + _loading + ');\n' +
  6941. 'var _js = document.createElement("script");\n' +
  6942. '_js.type="text/javascript";\n' +
  6943. '_js.charset="UTF-8";\n' +
  6944. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6945. "_js.onload = function(){\n" +
  6946. ' var a = document.getElementsByTagName("img")\n' +
  6947. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6948. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6949. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6950. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6951. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6952. "beforeUpload_shishi(file," +
  6953. "'" +
  6954. _userid +
  6955. "'" +
  6956. ", " +
  6957. "'" +
  6958. _cid +
  6959. "'" +
  6960. ", " +
  6961. "'" +
  6962. _stage +
  6963. "'" +
  6964. ", " +
  6965. "'" +
  6966. _task +
  6967. "'" +
  6968. ", " +
  6969. "'" +
  6970. _tool +
  6971. "'" +
  6972. ", " +
  6973. "'" +
  6974. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6975. "'" +
  6976. ", " +
  6977. "'" +
  6978. aTool +
  6979. "'" +
  6980. ", " +
  6981. "`" +
  6982. text +
  6983. "`" +
  6984. ")\n" +
  6985. " });\n" +
  6986. "}\n" +
  6987. "document.head.appendChild(_js);\n";
  6988. _iframe.contentWindow.document.head.appendChild(_ajs);
  6989. }
  6990. }
  6991. //U.MD.D.I.openClick(str);
  6992. //如果有任务栏信息
  6993. // if (_taskbar) {
  6994. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6995. // }
  6996. }
  6997. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6998. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6999. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7000. _userid = student.userid, //登录用户id
  7001. _username = student.student //用户名字
  7002. let _iframe;
  7003. let _cid = cid,
  7004. _stage = stage,
  7005. _task = task,
  7006. _tool = tool;
  7007. var _jie = $$("div", {
  7008. "style": {
  7009. "position": "absolute",
  7010. "bottom": "50px",
  7011. "right": "50px",
  7012. "zIndex": "9999",
  7013. "backgroundColor": "#2268bc",
  7014. "color": "#fff",
  7015. "padding": "12px 20px",
  7016. "cursor": "pointer",
  7017. "borderRadius": "4px",
  7018. },
  7019. "innerHTML": "提交作业"
  7020. })
  7021. let aTool = ''
  7022. let _loading = document.createElement('div')
  7023. _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;"
  7024. // _loading.id = "";
  7025. let _lchild = document.createElement('div')
  7026. let _limg = document.createElement('img')
  7027. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7028. _limg.style = "width: 26px;margin-right: 10px;"
  7029. _lchild.appendChild(_limg)
  7030. let _lspan = document.createElement('span')
  7031. _lspan.innerHTML = "上传中..."
  7032. _lchild.appendChild(_lspan)
  7033. _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%);"
  7034. _loading.appendChild(_lchild)
  7035. var _box = $$('div', {
  7036. "style": {
  7037. "position": "relative",
  7038. "width": "100%",
  7039. "height": "100%",
  7040. },
  7041. })
  7042. _box.appendChild(_loading)
  7043. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7044. switch (str) {
  7045. case "whiteboard":
  7046. aTool = 1;
  7047. _iframe = $$("iframe", {
  7048. "frameborder": "no",
  7049. "border": "0",
  7050. "scrolling ": "no",
  7051. "style": {
  7052. "cssText": "border:0;width:100%;height:100%"
  7053. },
  7054. "src": "https://beta.iwb.cocorobo.cn/"
  7055. })
  7056. _box.appendChild(_iframe);
  7057. _box.appendChild(_jie);
  7058. _formdiv = new U.UF.UI.form(
  7059. "电子白板-" + _username,
  7060. _box, {
  7061. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7062. "style": {
  7063. "width": "90%",
  7064. "height": "90%",
  7065. "overflow": 'hidden'
  7066. },
  7067. "onresize": function () { }
  7068. }, {
  7069. closecallback: function () { }
  7070. }, {
  7071. "style": {
  7072. "height": "36px"
  7073. }
  7074. }).form; //创建窗体
  7075. _taskbar = {
  7076. "id": str + _formdiv.id,
  7077. "style": {
  7078. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7079. },
  7080. "name": "电子白板",
  7081. "forms": _formdiv,
  7082. "click": function () {
  7083. U.MD.D.I.openApplication(str, obj, info);
  7084. }
  7085. }
  7086. break;
  7087. case "mind":
  7088. aTool = 3;
  7089. _iframe = $$("iframe", {
  7090. "frameborder": "no",
  7091. "border": "0",
  7092. "scrolling ": "no",
  7093. "style": {
  7094. "cssText": "border:0;width:100%;height:100%"
  7095. },
  7096. "src": "/kityminder-editor/dist/index.html"
  7097. })
  7098. _box.appendChild(_iframe);
  7099. _box.appendChild(_jie);
  7100. _formdiv = new U.UF.UI.form(
  7101. "思维导图-" + _username,
  7102. _box, { //"/jsmind/example/demo.html"
  7103. "id": "mind" + cid + stage + task + tool + _userid,
  7104. "style": {
  7105. "width": "90%",
  7106. "height": "90%",
  7107. "overflow": 'hidden'
  7108. },
  7109. "onresize": function () { }
  7110. }, {
  7111. closecallback: function () { }
  7112. }, {
  7113. "style": {
  7114. "height": "36px"
  7115. }
  7116. }).form; //创建窗体
  7117. _taskbar = {
  7118. "id": str + _formdiv.id,
  7119. "style": {
  7120. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7121. },
  7122. "name": "思维导图",
  7123. "forms": _formdiv,
  7124. "click": function () {
  7125. U.MD.D.I.openApplication(str, obj, info);
  7126. }
  7127. }
  7128. break;
  7129. case "MindMap":
  7130. aTool = 3;
  7131. _iframe = $$("iframe", {
  7132. "frameborder": "no",
  7133. "border": "0",
  7134. "scrolling ": "no",
  7135. "style": {
  7136. "cssText": "border:0;width:100%;height:100%"
  7137. },
  7138. "src": "//cloud.cocorobo.cn/mind/"
  7139. })
  7140. _box.appendChild(_iframe);
  7141. _box.appendChild(_jie);
  7142. _formdiv = new U.UF.UI.form(
  7143. "思维导图-" + _username,
  7144. _box, { //"/jsmind/example/demo.html"
  7145. "id": "mind" + cid + stage + task + tool + _userid,
  7146. "style": {
  7147. "width": "90%",
  7148. "height": "90%",
  7149. "overflow": 'hidden'
  7150. },
  7151. "onresize": function () { }
  7152. }, {
  7153. closecallback: function () { }
  7154. }, {
  7155. "style": {
  7156. "height": "36px"
  7157. }
  7158. }).form; //创建窗体
  7159. _taskbar = {
  7160. "id": str + _formdiv.id,
  7161. "style": {
  7162. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7163. },
  7164. "name": "思维导图",
  7165. "forms": _formdiv,
  7166. "click": function () {
  7167. U.MD.D.I.openApplication(str, obj, info);
  7168. }
  7169. }
  7170. break;
  7171. case "doc":
  7172. aTool = 6;
  7173. _iframe = $$("iframe", {
  7174. "frameborder": "no",
  7175. "border": "0",
  7176. "scrolling ": "no",
  7177. "style": {
  7178. "cssText": "border:0;width:100%;height:100%"
  7179. },
  7180. "src": "/Office/Word/WordEditArea.htm"
  7181. })
  7182. _box.appendChild(_iframe);
  7183. _box.appendChild(_jie);
  7184. _formdiv = new U.UF.UI.form(
  7185. "协同文档-" + _username,
  7186. _box, {
  7187. "id": "doc" + cid + stage + task + tool + _userid,
  7188. "style": {
  7189. "width": "90%",
  7190. "height": "90%",
  7191. "overflow": 'hidden'
  7192. },
  7193. "onresize": function () { }
  7194. }, {
  7195. closecallback: function () { }
  7196. }, {
  7197. "style": {
  7198. "height": "36px"
  7199. }
  7200. }).form; //创建窗体
  7201. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7202. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7203. })
  7204. _taskbar = {
  7205. "id": str + _formdiv.id,
  7206. "style": {
  7207. "backgroundImage": "url(/img/icon/doc.png)"
  7208. },
  7209. "name": "协同文档",
  7210. "forms": _formdiv,
  7211. "click": function () {
  7212. U.MD.D.I.openApplication(str, obj, info);
  7213. }
  7214. }
  7215. break;
  7216. case "mindNetwork": //好友打开
  7217. aTool = 7;
  7218. _iframe = $$("iframe", {
  7219. "webkitallowfullscreen": "",
  7220. "mozallowfullscreen": "",
  7221. "allowfullscreen": "",
  7222. "frameborder": "no",
  7223. "border": "0",
  7224. "scrolling ": "no",
  7225. "style": {
  7226. "cssText": "border:0; width:100%; height:100%;"
  7227. },
  7228. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7229. })
  7230. _box.appendChild(_iframe);
  7231. _box.appendChild(_jie);
  7232. _formdiv = new U.UF.UI.form(
  7233. "思维网格-" + _username,
  7234. _box, {
  7235. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7236. "style": {
  7237. "width": "90%",
  7238. "height": "90%",
  7239. "overflow": 'hidden'
  7240. },
  7241. "onresize": function () { }
  7242. }, {
  7243. closecallback: function () { }
  7244. }, {
  7245. "style": {
  7246. "height": "36px"
  7247. }
  7248. }).form; //创建窗体
  7249. _taskbar = {
  7250. "id": str + _formdiv.id,
  7251. "style": {
  7252. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7253. },
  7254. "name": "思维网格",
  7255. "forms": _formdiv,
  7256. "click": function () {
  7257. U.MD.D.I.openApplication(str, obj, info);
  7258. }
  7259. }
  7260. break;
  7261. case "courseDesign":
  7262. _iframe = $$("iframe", {
  7263. "webkitallowfullscreen": "",
  7264. "mozallowfullscreen": "",
  7265. "allowfullscreen": "",
  7266. "frameborder": "no",
  7267. "border": "0",
  7268. "scrolling ": "no",
  7269. "style": {
  7270. "cssText": "border:0; width:100%; height:100%;"
  7271. },
  7272. "src": "/course-design-vue"
  7273. })
  7274. _box.appendChild(_iframe);
  7275. _box.appendChild(_jie);
  7276. _formdiv = new U.UF.UI.form(
  7277. "项目设计-" + _username,
  7278. _box, {
  7279. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7280. "style": {
  7281. "width": "90%",
  7282. "height": "90%",
  7283. "overflow": 'hidden'
  7284. },
  7285. "onresize": function () { }
  7286. }, {
  7287. closecallback: function () { }
  7288. }, {
  7289. "style": {
  7290. "height": "36px"
  7291. }
  7292. }).form; //创建窗体
  7293. _taskbar = {
  7294. "id": str + _formdiv.id,
  7295. "style": {
  7296. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7297. },
  7298. "name": "项目设计",
  7299. "forms": _formdiv,
  7300. "click": function () {
  7301. U.MD.D.I.openApplication(str, obj, info);
  7302. }
  7303. }
  7304. break;
  7305. }
  7306. const script1 = document.createElement("script");
  7307. script1.type = "text/javascript";
  7308. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7309. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7310. const script2 = document.createElement("script");
  7311. script2.type = "text/javascript";
  7312. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7313. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7314. const script3 = document.createElement("script");
  7315. script3.type = "text/javascript";
  7316. script3.charset = "UTF-8";
  7317. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7318. const script4 = document.createElement("script");
  7319. script4.type = "text/javascript";
  7320. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7321. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7322. if (_iframe) {
  7323. if (str == 'doc') {
  7324. _iframe = _formdiv.querySelector('iframe')
  7325. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7326. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7327. _iframe.contentWindow.document.body.appendChild(script1);
  7328. _iframe.contentWindow.document.body.appendChild(script2);
  7329. // _iframe.contentWindow.document.body.appendChild(script3);
  7330. _iframe.contentWindow.document.body.appendChild(script4);
  7331. })
  7332. if (onloadListener) {
  7333. _iframe.contentDocument.location.reload()
  7334. } else {
  7335. _iframe.contentDocument.location.reload()
  7336. }
  7337. } else if (str == 'courseDesign') {
  7338. U.UF.DL.iframeLoad(_iframe, function () {
  7339. // _iframe.contentWindow.U.MD.O.W.load();
  7340. // _iframe.contentWindow.document.body.appendChild(script1);
  7341. _iframe.contentWindow.document.body.appendChild(script2);
  7342. _iframe.contentWindow.document.body.appendChild(script4);
  7343. })
  7344. } else if (str == 'mind') {
  7345. _iframe = _formdiv.querySelector('iframe')
  7346. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7347. //
  7348. _iframe.contentWindow.document.body.appendChild(script1);
  7349. _iframe.contentWindow.document.body.appendChild(script2);
  7350. _iframe.contentWindow.document.body.appendChild(script4);
  7351. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7352. })
  7353. if (onloadListener) {
  7354. _iframe.contentDocument.location.reload()
  7355. } else {
  7356. _iframe.contentDocument.location.reload()
  7357. }
  7358. } else if (str == 'whiteboard') {
  7359. _iframe = _formdiv.querySelector('iframe')
  7360. let onloadListener = _iframe.onload = () => {
  7361. _iframe.contentWindow.document.body.appendChild(script1);
  7362. _iframe.contentWindow.document.body.appendChild(script2);
  7363. _iframe.contentWindow.document.body.appendChild(script4);
  7364. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7365. };
  7366. // if (onloadListener) {
  7367. // try {
  7368. // _iframe.src += "?cocorobo="+new Date().getTime()
  7369. // _iframe.contentWindow.document.location.reload()
  7370. // } catch (error) {
  7371. // }
  7372. // } else {
  7373. // _iframe.contentDocument.location.reload()
  7374. // }
  7375. } else {
  7376. _iframe.onload = () => {
  7377. _iframe.contentWindow.document.body.appendChild(script1);
  7378. _iframe.contentWindow.document.body.appendChild(script2);
  7379. // _iframe.contentWindow.document.body.appendChild(script3);
  7380. _iframe.contentWindow.document.body.appendChild(script4);
  7381. };
  7382. }
  7383. _jie.onclick = async () => {
  7384. let text = ''
  7385. if (aTool == 1) {
  7386. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7387. } else if (aTool == 6) {
  7388. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7389. } else if (aTool == 3) {
  7390. text = await U.MD.D.I.getEditorContent(_iframe);
  7391. }
  7392. _loading.style.display = 'flex'
  7393. console.log(_loading);
  7394. var _ajs = _iframe.contentWindow.document.createElement("script");
  7395. _ajs.type = "text/javascript";
  7396. _ajs.innerHTML =
  7397. // 'console.log(' + _loading + ');\n' +
  7398. 'var _js = document.createElement("script");\n' +
  7399. '_js.type="text/javascript";\n' +
  7400. '_js.charset="UTF-8";\n' +
  7401. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7402. "_js.onload = function(){\n" +
  7403. ' var a = document.getElementsByTagName("img")\n' +
  7404. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7405. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7406. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7407. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7408. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7409. "beforeUpload_shishi(file," +
  7410. "'" +
  7411. _userid +
  7412. "'" +
  7413. ", " +
  7414. "'" +
  7415. _cid +
  7416. "'" +
  7417. ", " +
  7418. "'" +
  7419. _stage +
  7420. "'" +
  7421. ", " +
  7422. "'" +
  7423. _task +
  7424. "'" +
  7425. ", " +
  7426. "'" +
  7427. _tool +
  7428. "'" +
  7429. ", " +
  7430. "'" +
  7431. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7432. "'" +
  7433. ", " +
  7434. "'" +
  7435. aTool +
  7436. "'" +
  7437. ", " +
  7438. "`" +
  7439. text +
  7440. "`" +
  7441. ")\n" +
  7442. " });\n" +
  7443. "}\n" +
  7444. "document.head.appendChild(_js);\n";
  7445. _iframe.contentWindow.document.head.appendChild(_ajs);
  7446. }
  7447. }
  7448. }
  7449. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7450. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7451. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7452. _userid = student.userid, //登录用户id
  7453. _username = student.student //用户名字
  7454. let _iframe;
  7455. let _cid = cid,
  7456. _stage = stage,
  7457. _task = task,
  7458. _tool = tool;
  7459. var _jie = $$("div", {
  7460. "style": {
  7461. "position": "absolute",
  7462. "bottom": "50px",
  7463. "right": "50px",
  7464. "zIndex": "9999",
  7465. "backgroundColor": "#2268bc",
  7466. "color": "#fff",
  7467. "padding": "12px 20px",
  7468. "cursor": "pointer",
  7469. "borderRadius": "4px",
  7470. },
  7471. "innerHTML": "提交作业"
  7472. })
  7473. let aTool = ''
  7474. let _loading = document.createElement('div')
  7475. _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;"
  7476. // _loading.id = "";
  7477. let _lchild = document.createElement('div')
  7478. let _limg = document.createElement('img')
  7479. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7480. _limg.style = "width: 26px;margin-right: 10px;"
  7481. _lchild.appendChild(_limg)
  7482. let _lspan = document.createElement('span')
  7483. _lspan.innerHTML = "上传中..."
  7484. _lchild.appendChild(_lspan)
  7485. _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%);"
  7486. _loading.appendChild(_lchild)
  7487. var _box = $$('div', {
  7488. "style": {
  7489. "position": "relative",
  7490. "width": "100%",
  7491. "height": "100%",
  7492. },
  7493. })
  7494. _box.appendChild(_loading)
  7495. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7496. switch (str) {
  7497. case "whiteboard":
  7498. aTool = 1;
  7499. _iframe = $$("iframe", {
  7500. "frameborder": "no",
  7501. "border": "0",
  7502. "scrolling ": "no",
  7503. "style": {
  7504. "cssText": "border:0;width:100%;height:100%"
  7505. },
  7506. "src": "https://beta.iwb.cocorobo.cn/"
  7507. })
  7508. _box.appendChild(_iframe);
  7509. _box.appendChild(_jie);
  7510. _formdiv = new U.UF.UI.form(
  7511. "电子白板-" + _username,
  7512. _box, {
  7513. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7514. "style": {
  7515. "width": "90%",
  7516. "height": "90%",
  7517. "overflow": 'hidden'
  7518. },
  7519. "onresize": function () { }
  7520. }, {
  7521. closecallback: function () { }
  7522. }, {
  7523. "style": {
  7524. "height": "36px"
  7525. }
  7526. }).form; //创建窗体
  7527. _taskbar = {
  7528. "id": str + _formdiv.id,
  7529. "style": {
  7530. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7531. },
  7532. "name": "电子白板",
  7533. "forms": _formdiv,
  7534. "click": function () {
  7535. U.MD.D.I.openApplication(str, obj, info);
  7536. }
  7537. }
  7538. break;
  7539. case "mind":
  7540. aTool = 3;
  7541. _iframe = $$("iframe", {
  7542. "frameborder": "no",
  7543. "border": "0",
  7544. "scrolling ": "no",
  7545. "style": {
  7546. "cssText": "border:0;width:100%;height:100%"
  7547. },
  7548. "src": "/kityminder-editor/dist/index.html"
  7549. })
  7550. _box.appendChild(_iframe);
  7551. _box.appendChild(_jie);
  7552. _formdiv = new U.UF.UI.form(
  7553. "思维导图-" + _username,
  7554. _box, { //"/jsmind/example/demo.html"
  7555. "id": "mind" + cid + stage + task + tool + _userid,
  7556. "style": {
  7557. "width": "90%",
  7558. "height": "90%",
  7559. "overflow": 'hidden'
  7560. },
  7561. "onresize": function () { }
  7562. }, {
  7563. closecallback: function () { }
  7564. }, {
  7565. "style": {
  7566. "height": "36px"
  7567. }
  7568. }).form; //创建窗体
  7569. _taskbar = {
  7570. "id": str + _formdiv.id,
  7571. "style": {
  7572. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7573. },
  7574. "name": "思维导图",
  7575. "forms": _formdiv,
  7576. "click": function () {
  7577. U.MD.D.I.openApplication(str, obj, info);
  7578. }
  7579. }
  7580. break;
  7581. case "MindMap":
  7582. aTool = 3;
  7583. _iframe = $$("iframe", {
  7584. "frameborder": "no",
  7585. "border": "0",
  7586. "scrolling ": "no",
  7587. "style": {
  7588. "cssText": "border:0;width:100%;height:100%"
  7589. },
  7590. "src": "//cloud.cocorobo.cn/mind/"
  7591. })
  7592. _box.appendChild(_iframe);
  7593. _box.appendChild(_jie);
  7594. _formdiv = new U.UF.UI.form(
  7595. "思维导图-" + _username,
  7596. _box, { //"/jsmind/example/demo.html"
  7597. "id": "mind" + cid + stage + task + tool + _userid,
  7598. "style": {
  7599. "width": "90%",
  7600. "height": "90%",
  7601. "overflow": 'hidden'
  7602. },
  7603. "onresize": function () { }
  7604. }, {
  7605. closecallback: function () { }
  7606. }, {
  7607. "style": {
  7608. "height": "36px"
  7609. }
  7610. }).form; //创建窗体
  7611. _taskbar = {
  7612. "id": str + _formdiv.id,
  7613. "style": {
  7614. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7615. },
  7616. "name": "思维导图",
  7617. "forms": _formdiv,
  7618. "click": function () {
  7619. U.MD.D.I.openApplication(str, obj, info);
  7620. }
  7621. }
  7622. break;
  7623. case "doc":
  7624. aTool = 6;
  7625. _iframe = $$("iframe", {
  7626. "frameborder": "no",
  7627. "border": "0",
  7628. "scrolling ": "no",
  7629. "style": {
  7630. "cssText": "border:0;width:100%;height:100%"
  7631. },
  7632. "src": "/Office/Word/WordEditArea.htm"
  7633. })
  7634. _box.appendChild(_iframe);
  7635. _box.appendChild(_jie);
  7636. _formdiv = new U.UF.UI.form(
  7637. "协同文档-" + _username,
  7638. _box, {
  7639. "id": "doc" + cid + stage + task + tool + _userid,
  7640. "style": {
  7641. "width": "90%",
  7642. "height": "90%",
  7643. "overflow": 'hidden'
  7644. },
  7645. "onresize": function () { }
  7646. }, {
  7647. closecallback: function () { }
  7648. }, {
  7649. "style": {
  7650. "height": "36px"
  7651. }
  7652. }).form; //创建窗体
  7653. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7654. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7655. })
  7656. _taskbar = {
  7657. "id": str + _formdiv.id,
  7658. "style": {
  7659. "backgroundImage": "url(/img/icon/doc.png)"
  7660. },
  7661. "name": "协同文档",
  7662. "forms": _formdiv,
  7663. "click": function () {
  7664. U.MD.D.I.openApplication(str, obj, info);
  7665. }
  7666. }
  7667. break;
  7668. case "mindNetwork": //好友打开
  7669. aTool = 7;
  7670. _iframe = $$("iframe", {
  7671. "webkitallowfullscreen": "",
  7672. "mozallowfullscreen": "",
  7673. "allowfullscreen": "",
  7674. "frameborder": "no",
  7675. "border": "0",
  7676. "scrolling ": "no",
  7677. "style": {
  7678. "cssText": "border:0; width:100%; height:100%;"
  7679. },
  7680. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7681. })
  7682. _box.appendChild(_iframe);
  7683. _box.appendChild(_jie);
  7684. _formdiv = new U.UF.UI.form(
  7685. "思维网格-" + _username,
  7686. _box, {
  7687. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7688. "style": {
  7689. "width": "90%",
  7690. "height": "90%",
  7691. "overflow": 'hidden'
  7692. },
  7693. "onresize": function () { }
  7694. }, {
  7695. closecallback: function () { }
  7696. }, {
  7697. "style": {
  7698. "height": "36px"
  7699. }
  7700. }).form; //创建窗体
  7701. _taskbar = {
  7702. "id": str + _formdiv.id,
  7703. "style": {
  7704. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7705. },
  7706. "name": "思维网格",
  7707. "forms": _formdiv,
  7708. "click": function () {
  7709. U.MD.D.I.openApplication(str, obj, info);
  7710. }
  7711. }
  7712. break;
  7713. case "courseDesign":
  7714. _iframe = $$("iframe", {
  7715. "webkitallowfullscreen": "",
  7716. "mozallowfullscreen": "",
  7717. "allowfullscreen": "",
  7718. "frameborder": "no",
  7719. "border": "0",
  7720. "scrolling ": "no",
  7721. "style": {
  7722. "cssText": "border:0; width:100%; height:100%;"
  7723. },
  7724. "src": "/course-design-vue"
  7725. })
  7726. _box.appendChild(_iframe);
  7727. _box.appendChild(_jie);
  7728. _formdiv = new U.UF.UI.form(
  7729. "项目设计-" + _username,
  7730. _box, {
  7731. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7732. "style": {
  7733. "width": "90%",
  7734. "height": "90%",
  7735. "overflow": 'hidden'
  7736. },
  7737. "onresize": function () { }
  7738. }, {
  7739. closecallback: function () { }
  7740. }, {
  7741. "style": {
  7742. "height": "36px"
  7743. }
  7744. }).form; //创建窗体
  7745. _taskbar = {
  7746. "id": str + _formdiv.id,
  7747. "style": {
  7748. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7749. },
  7750. "name": "项目设计",
  7751. "forms": _formdiv,
  7752. "click": function () {
  7753. U.MD.D.I.openApplication(str, obj, info);
  7754. }
  7755. }
  7756. break;
  7757. }
  7758. const script1 = document.createElement("script");
  7759. script1.type = "text/javascript";
  7760. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7761. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7762. const script2 = document.createElement("script");
  7763. script2.type = "text/javascript";
  7764. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7765. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7766. const script3 = document.createElement("script");
  7767. script3.type = "text/javascript";
  7768. script3.charset = "UTF-8";
  7769. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7770. const script4 = document.createElement("script");
  7771. script4.type = "text/javascript";
  7772. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7773. script4.src = window.origin + "/js/Common/jietu2E.js";
  7774. if (_iframe) {
  7775. if (str == 'doc') {
  7776. _iframe = _formdiv.querySelector('iframe')
  7777. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7778. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7779. _iframe.contentWindow.document.body.appendChild(script1);
  7780. _iframe.contentWindow.document.body.appendChild(script2);
  7781. // _iframe.contentWindow.document.body.appendChild(script3);
  7782. _iframe.contentWindow.document.body.appendChild(script4);
  7783. })
  7784. if (onloadListener) {
  7785. _iframe.contentDocument.location.reload()
  7786. } else {
  7787. _iframe.contentDocument.location.reload()
  7788. }
  7789. } else if (str == 'courseDesign') {
  7790. U.UF.DL.iframeLoad(_iframe, function () {
  7791. // _iframe.contentWindow.U.MD.O.W.load();
  7792. // _iframe.contentWindow.document.body.appendChild(script1);
  7793. _iframe.contentWindow.document.body.appendChild(script2);
  7794. _iframe.contentWindow.document.body.appendChild(script4);
  7795. })
  7796. } else if (str == 'mind') {
  7797. _iframe = _formdiv.querySelector('iframe')
  7798. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7799. //
  7800. _iframe.contentWindow.document.body.appendChild(script1);
  7801. _iframe.contentWindow.document.body.appendChild(script2);
  7802. _iframe.contentWindow.document.body.appendChild(script4);
  7803. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7804. })
  7805. if (onloadListener) {
  7806. _iframe.contentDocument.location.reload()
  7807. } else {
  7808. _iframe.contentDocument.location.reload()
  7809. }
  7810. } else if (str == 'whiteboard') {
  7811. _iframe = _formdiv.querySelector('iframe')
  7812. let onloadListener = _iframe.onload = () => {
  7813. _iframe.contentWindow.document.body.appendChild(script1);
  7814. _iframe.contentWindow.document.body.appendChild(script2);
  7815. _iframe.contentWindow.document.body.appendChild(script4);
  7816. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7817. };
  7818. // if (onloadListener) {
  7819. // try {
  7820. // _iframe.src += "?cocorobo="+new Date().getTime()
  7821. // _iframe.contentWindow.document.location.reload()
  7822. // } catch (error) {
  7823. // }
  7824. // } else {
  7825. // _iframe.contentDocument.location.reload()
  7826. // }
  7827. } else {
  7828. _iframe.onload = () => {
  7829. _iframe.contentWindow.document.body.appendChild(script1);
  7830. _iframe.contentWindow.document.body.appendChild(script2);
  7831. // _iframe.contentWindow.document.body.appendChild(script3);
  7832. _iframe.contentWindow.document.body.appendChild(script4);
  7833. };
  7834. }
  7835. _jie.onclick = async () => {
  7836. let text = ''
  7837. if (aTool == 1) {
  7838. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7839. } else if (aTool == 6) {
  7840. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7841. } else if (aTool == 3) {
  7842. text = await U.MD.D.I.getEditorContent(_iframe);
  7843. }
  7844. _loading.style.display = 'flex'
  7845. console.log(_loading);
  7846. var _ajs = _iframe.contentWindow.document.createElement("script");
  7847. _ajs.type = "text/javascript";
  7848. _ajs.innerHTML =
  7849. // 'console.log(' + _loading + ');\n' +
  7850. 'var _js = document.createElement("script");\n' +
  7851. '_js.type="text/javascript";\n' +
  7852. '_js.charset="UTF-8";\n' +
  7853. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7854. "_js.onload = function(){\n" +
  7855. ' var a = document.getElementsByTagName("img")\n' +
  7856. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7857. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7858. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7859. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7860. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7861. "beforeUpload_shishi(file," +
  7862. "'" +
  7863. _userid +
  7864. "'" +
  7865. ", " +
  7866. "'" +
  7867. _cid +
  7868. "'" +
  7869. ", " +
  7870. "'" +
  7871. _stage +
  7872. "'" +
  7873. ", " +
  7874. "'" +
  7875. _task +
  7876. "'" +
  7877. ", " +
  7878. "'" +
  7879. _tool +
  7880. "'" +
  7881. ", " +
  7882. "'" +
  7883. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7884. "'" +
  7885. ", " +
  7886. "'" +
  7887. aTool +
  7888. "'" +
  7889. ", " +
  7890. "`" +
  7891. text +
  7892. "`" +
  7893. ")\n" +
  7894. " });\n" +
  7895. "}\n" +
  7896. "document.head.appendChild(_js);\n";
  7897. _iframe.contentWindow.document.head.appendChild(_ajs);
  7898. }
  7899. }
  7900. }
  7901. U.MD.D.I.getEditorContent = function (iframe) {
  7902. return new Promise((resolve, reject) => {
  7903. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7904. console.log(content);
  7905. resolve(content)
  7906. });
  7907. });
  7908. }
  7909. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7910. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7911. // if (res.value[0].length > 0) {
  7912. // // resolve(res.value[0][0].text);
  7913. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7914. // $(fileInput).val('');
  7915. // });
  7916. // }
  7917. // }, [], { "type": "GET", "withCredentials": true });
  7918. var xmlhttp;
  7919. var Mac, Sn, DeviceId
  7920. if (window.XMLHttpRequest) {
  7921. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7922. xmlhttp = new XMLHttpRequest();
  7923. } else {
  7924. // IE6, IE5 浏览器执行代码
  7925. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7926. }
  7927. xmlhttp.onreadystatechange = function () {
  7928. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7929. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7930. // resolve(res.value[0][0].text);
  7931. if (type == '2') {
  7932. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7933. } else if (type == '3') {
  7934. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7935. }
  7936. } else {
  7937. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7938. }
  7939. }
  7940. }
  7941. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7942. xmlhttp.send();
  7943. }
  7944. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7945. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7946. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7947. _userinfo = US.userInfo, //登录用户信息
  7948. _userid = US.userInfo.userid //登录用户id
  7949. let _iframe;
  7950. let _cid = cid,
  7951. _stage = stage,
  7952. _task = task,
  7953. _tool = tool;
  7954. var _jie = $$("div", {
  7955. "style": {
  7956. "position": "absolute",
  7957. "bottom": "50px",
  7958. "right": "50px",
  7959. "zIndex": "9999",
  7960. "backgroundColor": "#2268bc",
  7961. "color": "#fff",
  7962. "padding": "12px 20px",
  7963. "cursor": "pointer",
  7964. "borderRadius": "4px",
  7965. },
  7966. "innerHTML": "确认并提交"
  7967. })
  7968. let aTool = ''
  7969. let _loading = document.createElement('div')
  7970. _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;"
  7971. // _loading.id = "";
  7972. let _lchild = document.createElement('div')
  7973. let _limg = document.createElement('img')
  7974. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7975. _limg.style = "width: 26px;margin-right: 10px;"
  7976. _lchild.appendChild(_limg)
  7977. let _lspan = document.createElement('span')
  7978. _lspan.innerHTML = "上传中..."
  7979. _lchild.appendChild(_lspan)
  7980. _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%);"
  7981. _loading.appendChild(_lchild)
  7982. var _box = $$('div', {
  7983. "style": {
  7984. "position": "relative",
  7985. "width": "100%",
  7986. "height": "100%",
  7987. },
  7988. })
  7989. _box.appendChild(_loading)
  7990. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7991. switch (str) {
  7992. case "whiteboard":
  7993. aTool = 1;
  7994. _iframe = $$("iframe", {
  7995. "frameborder": "no",
  7996. "border": "0",
  7997. "scrolling ": "no",
  7998. "style": {
  7999. "cssText": "border:0;width:100%;height:100%"
  8000. },
  8001. "src": "https://beta.iwb.cocorobo.cn/"
  8002. })
  8003. _box.appendChild(_iframe);
  8004. _box.appendChild(_jie);
  8005. _formdiv = new U.UF.UI.form(
  8006. "电子白板",
  8007. _box, {
  8008. "id": "whiteboards" + cid + stage + task + tool,
  8009. "style": {
  8010. "width": "90%",
  8011. "height": "90%",
  8012. "overflow": 'hidden'
  8013. },
  8014. "onresize": function () { }
  8015. }, {
  8016. closecallback: function () { }
  8017. }, {
  8018. "style": {
  8019. "height": "36px"
  8020. }
  8021. }).form; //创建窗体
  8022. _taskbar = {
  8023. "id": str + _formdiv.id,
  8024. "style": {
  8025. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8026. },
  8027. "name": "电子白板",
  8028. "forms": _formdiv,
  8029. "click": function () {
  8030. U.MD.D.I.openApplication(str, obj, info);
  8031. }
  8032. }
  8033. break;
  8034. case "mind":
  8035. aTool = 3;
  8036. _iframe = $$("iframe", {
  8037. "frameborder": "no",
  8038. "border": "0",
  8039. "scrolling ": "no",
  8040. "style": {
  8041. "cssText": "border:0;width:100%;height:100%"
  8042. },
  8043. "src": "/kityminder-editor/dist/index.html"
  8044. });
  8045. _box.appendChild(_iframe);
  8046. _box.appendChild(_jie);
  8047. _formdiv = new U.UF.UI.form(
  8048. "思维导图",
  8049. _box, { //"/jsmind/example/demo.html"
  8050. "id": "minds" + cid + stage + task + tool,
  8051. "style": {
  8052. "width": "90%",
  8053. "height": "90%",
  8054. "overflow": 'hidden'
  8055. },
  8056. "onresize": function () { }
  8057. }, {
  8058. closecallback: function () { }
  8059. }, {
  8060. "style": {
  8061. "height": "36px"
  8062. }
  8063. }).form; //创建窗体
  8064. _taskbar = {
  8065. "id": str + _formdiv.id,
  8066. "style": {
  8067. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8068. },
  8069. "name": "思维导图",
  8070. "forms": _formdiv,
  8071. "click": function () {
  8072. U.MD.D.I.openApplication(str, obj, info);
  8073. }
  8074. }
  8075. break;
  8076. case "doc":
  8077. aTool = 6;
  8078. _iframe = $$("iframe", {
  8079. "frameborder": "no",
  8080. "border": "0",
  8081. "scrolling ": "no",
  8082. "style": {
  8083. "cssText": "border:0;width:100%;height:100%"
  8084. },
  8085. "src": "/Office/Word/WordEditArea.htm"
  8086. })
  8087. _box.appendChild(_iframe);
  8088. _box.appendChild(_jie);
  8089. _formdiv = new U.UF.UI.form(
  8090. "协同文档",
  8091. _box, {
  8092. "id": "docs" + cid + stage + task + tool,
  8093. "style": {
  8094. "width": "90%",
  8095. "height": "90%",
  8096. "overflow": 'hidden'
  8097. },
  8098. "onresize": function () { }
  8099. }, {
  8100. closecallback: function () { }
  8101. }, {
  8102. "style": {
  8103. "height": "36px"
  8104. }
  8105. }).form; //创建窗体
  8106. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8107. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8108. })
  8109. _taskbar = {
  8110. "id": str + _formdiv.id,
  8111. "style": {
  8112. "backgroundImage": "url(/img/icon/doc.png)"
  8113. },
  8114. "name": "协同文档",
  8115. "forms": _formdiv,
  8116. "click": function () {
  8117. U.MD.D.I.openApplication(str, obj, info);
  8118. }
  8119. }
  8120. break;
  8121. }
  8122. const script1 = document.createElement("script");
  8123. script1.type = "text/javascript";
  8124. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8125. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8126. const script2 = document.createElement("script");
  8127. script2.type = "text/javascript";
  8128. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8129. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8130. const script3 = document.createElement("script");
  8131. script3.type = "text/javascript";
  8132. script3.charset = "UTF-8";
  8133. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8134. const script4 = document.createElement("script");
  8135. script4.type = "text/javascript";
  8136. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8137. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8138. if (_iframe) {
  8139. if (str == 'doc') {
  8140. _iframe = _formdiv.querySelector('iframe')
  8141. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8142. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8143. _iframe.contentWindow.document.body.appendChild(script1);
  8144. _iframe.contentWindow.document.body.appendChild(script2);
  8145. // _iframe.contentWindow.document.body.appendChild(script3);
  8146. _iframe.contentWindow.document.body.appendChild(script4);
  8147. })
  8148. if (onloadListener) {
  8149. _iframe.contentDocument.location.reload()
  8150. } else {
  8151. _iframe.contentDocument.location.reload()
  8152. }
  8153. } else if (str == 'mind') {
  8154. _iframe = _formdiv.querySelector('iframe')
  8155. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8156. _iframe.contentWindow.document.body.appendChild(script1);
  8157. _iframe.contentWindow.document.body.appendChild(script2);
  8158. _iframe.contentWindow.document.body.appendChild(script4);
  8159. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8160. })
  8161. if (onloadListener) {
  8162. _iframe.contentDocument.location.reload()
  8163. } else {
  8164. _iframe.contentDocument.location.reload()
  8165. }
  8166. } else {
  8167. _iframe.onload = () => {
  8168. _iframe.contentWindow.document.body.appendChild(script1);
  8169. _iframe.contentWindow.document.body.appendChild(script2);
  8170. // _iframe.contentWindow.document.body.appendChild(script3);
  8171. _iframe.contentWindow.document.body.appendChild(script4);
  8172. };
  8173. }
  8174. _jie.onclick = async () => {
  8175. let text = ''
  8176. if (aTool == 6) {
  8177. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8178. } else if (aTool == 3) {
  8179. text = await U.MD.D.I.getEditorContent(_iframe);
  8180. }
  8181. _loading.style.display = 'flex'
  8182. console.log(_loading);
  8183. var _ajs = _iframe.contentWindow.document.createElement("script");
  8184. _ajs.type = "text/javascript";
  8185. _ajs.innerHTML =
  8186. // 'console.log(' + _loading + ');\n' +
  8187. 'var _js = document.createElement("script");\n' +
  8188. '_js.type="text/javascript";\n' +
  8189. '_js.charset="UTF-8";\n' +
  8190. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8191. "_js.onload = function(){\n" +
  8192. ' var a = document.getElementsByTagName("img")\n' +
  8193. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8194. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8195. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8196. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8197. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8198. "beforeUpload_shishi(file," +
  8199. "'" +
  8200. _userid +
  8201. "'" +
  8202. ", " +
  8203. "'" +
  8204. _cid +
  8205. "'" +
  8206. ", " +
  8207. "'" +
  8208. _stage +
  8209. "'" +
  8210. ", " +
  8211. "'" +
  8212. _task +
  8213. "'" +
  8214. ", " +
  8215. "'" +
  8216. _tool +
  8217. "'" +
  8218. ", " +
  8219. "'" +
  8220. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8221. "'" +
  8222. ", " +
  8223. "'" +
  8224. aTool +
  8225. "'" +
  8226. ", " +
  8227. "`" +
  8228. text +
  8229. "`" +
  8230. ")\n" +
  8231. " });\n" +
  8232. "}\n" +
  8233. "document.head.appendChild(_js);\n";
  8234. _iframe.contentWindow.document.head.appendChild(_ajs);
  8235. }
  8236. }
  8237. //U.MD.D.I.openClick(str);
  8238. //如果有任务栏信息
  8239. // if (_taskbar) {
  8240. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8241. // }
  8242. }
  8243. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8244. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8245. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8246. _userinfo = US.userInfo, //登录用户信息
  8247. _userid = US.userInfo.userid //登录用户id
  8248. let _iframe;
  8249. let _cid = cid,
  8250. _stage = stage,
  8251. _task = task,
  8252. _tool = tool;
  8253. var _jie = $$("div", {
  8254. "style": {
  8255. "position": "absolute",
  8256. "bottom": "50px",
  8257. "right": "50px",
  8258. "zIndex": "9999",
  8259. "backgroundColor": "#2268bc",
  8260. "color": "#fff",
  8261. "padding": "12px 20px",
  8262. "cursor": "pointer",
  8263. "borderRadius": "4px",
  8264. },
  8265. "innerHTML": "确认并提交"
  8266. })
  8267. let aTool = ''
  8268. let _loading = document.createElement('div')
  8269. _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;"
  8270. // _loading.id = "";
  8271. let _lchild = document.createElement('div')
  8272. let _limg = document.createElement('img')
  8273. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8274. _limg.style = "width: 26px;margin-right: 10px;"
  8275. _lchild.appendChild(_limg)
  8276. let _lspan = document.createElement('span')
  8277. _lspan.innerHTML = "上传中..."
  8278. _lchild.appendChild(_lspan)
  8279. _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%);"
  8280. _loading.appendChild(_lchild)
  8281. var _box = $$('div', {
  8282. "style": {
  8283. "position": "relative",
  8284. "width": "100%",
  8285. "height": "100%",
  8286. },
  8287. })
  8288. _box.appendChild(_loading)
  8289. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8290. switch (str) {
  8291. case "whiteboard":
  8292. aTool = 1;
  8293. _iframe = $$("iframe", {
  8294. "frameborder": "no",
  8295. "border": "0",
  8296. "scrolling ": "no",
  8297. "style": {
  8298. "cssText": "border:0;width:100%;height:100%"
  8299. },
  8300. "src": "https://beta.iwb.cocorobo.cn/"
  8301. })
  8302. _box.appendChild(_iframe);
  8303. _box.appendChild(_jie);
  8304. _formdiv = new U.UF.UI.form(
  8305. "电子白板",
  8306. _box, {
  8307. "id": "whiteboards" + cid + stage + task + tool,
  8308. "style": {
  8309. "width": "90%",
  8310. "height": "90%",
  8311. "overflow": 'hidden'
  8312. },
  8313. "onresize": function () { }
  8314. }, {
  8315. closecallback: function () { }
  8316. }, {
  8317. "style": {
  8318. "height": "36px"
  8319. }
  8320. }).form; //创建窗体
  8321. _taskbar = {
  8322. "id": str + _formdiv.id,
  8323. "style": {
  8324. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8325. },
  8326. "name": "电子白板",
  8327. "forms": _formdiv,
  8328. "click": function () {
  8329. U.MD.D.I.openApplication(str, obj, info);
  8330. }
  8331. }
  8332. break;
  8333. case "mind":
  8334. aTool = 3;
  8335. _iframe = $$("iframe", {
  8336. "frameborder": "no",
  8337. "border": "0",
  8338. "scrolling ": "no",
  8339. "style": {
  8340. "cssText": "border:0;width:100%;height:100%"
  8341. },
  8342. "src": "/kityminder-editor/dist/index.html"
  8343. });
  8344. _box.appendChild(_iframe);
  8345. _box.appendChild(_jie);
  8346. _formdiv = new U.UF.UI.form(
  8347. "思维导图",
  8348. _box, { //"/jsmind/example/demo.html"
  8349. "id": "minds" + cid + stage + task + tool,
  8350. "style": {
  8351. "width": "90%",
  8352. "height": "90%",
  8353. "overflow": 'hidden'
  8354. },
  8355. "onresize": function () { }
  8356. }, {
  8357. closecallback: function () { }
  8358. }, {
  8359. "style": {
  8360. "height": "36px"
  8361. }
  8362. }).form; //创建窗体
  8363. _taskbar = {
  8364. "id": str + _formdiv.id,
  8365. "style": {
  8366. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8367. },
  8368. "name": "思维导图",
  8369. "forms": _formdiv,
  8370. "click": function () {
  8371. U.MD.D.I.openApplication(str, obj, info);
  8372. }
  8373. }
  8374. break;
  8375. case "doc":
  8376. aTool = 6;
  8377. _iframe = $$("iframe", {
  8378. "frameborder": "no",
  8379. "border": "0",
  8380. "scrolling ": "no",
  8381. "style": {
  8382. "cssText": "border:0;width:100%;height:100%"
  8383. },
  8384. "src": "/Office/Word/WordEditArea.htm"
  8385. })
  8386. _box.appendChild(_iframe);
  8387. _box.appendChild(_jie);
  8388. _formdiv = new U.UF.UI.form(
  8389. "协同文档",
  8390. _box, {
  8391. "id": "docs" + cid + stage + task + tool,
  8392. "style": {
  8393. "width": "90%",
  8394. "height": "90%",
  8395. "overflow": 'hidden'
  8396. },
  8397. "onresize": function () { }
  8398. }, {
  8399. closecallback: function () { }
  8400. }, {
  8401. "style": {
  8402. "height": "36px"
  8403. }
  8404. }).form; //创建窗体
  8405. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8406. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8407. })
  8408. _taskbar = {
  8409. "id": str + _formdiv.id,
  8410. "style": {
  8411. "backgroundImage": "url(/img/icon/doc.png)"
  8412. },
  8413. "name": "协同文档",
  8414. "forms": _formdiv,
  8415. "click": function () {
  8416. U.MD.D.I.openApplication(str, obj, info);
  8417. }
  8418. }
  8419. break;
  8420. }
  8421. const script1 = document.createElement("script");
  8422. script1.type = "text/javascript";
  8423. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8424. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8425. const script2 = document.createElement("script");
  8426. script2.type = "text/javascript";
  8427. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8428. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8429. const script3 = document.createElement("script");
  8430. script3.type = "text/javascript";
  8431. script3.charset = "UTF-8";
  8432. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8433. const script4 = document.createElement("script");
  8434. script4.type = "text/javascript";
  8435. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8436. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8437. if (_iframe) {
  8438. if (str == 'doc') {
  8439. _iframe = _formdiv.querySelector('iframe')
  8440. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8441. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8442. _iframe.contentWindow.document.body.appendChild(script1);
  8443. _iframe.contentWindow.document.body.appendChild(script2);
  8444. // _iframe.contentWindow.document.body.appendChild(script3);
  8445. _iframe.contentWindow.document.body.appendChild(script4);
  8446. })
  8447. if (onloadListener) {
  8448. _iframe.contentDocument.location.reload()
  8449. } else {
  8450. _iframe.contentDocument.location.reload()
  8451. }
  8452. } else if (str == 'mind') {
  8453. _iframe = _formdiv.querySelector('iframe')
  8454. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8455. _iframe.contentWindow.document.body.appendChild(script1);
  8456. _iframe.contentWindow.document.body.appendChild(script2);
  8457. _iframe.contentWindow.document.body.appendChild(script4);
  8458. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8459. })
  8460. if (onloadListener) {
  8461. _iframe.contentDocument.location.reload()
  8462. } else {
  8463. _iframe.contentDocument.location.reload()
  8464. }
  8465. } else {
  8466. _iframe.onload = () => {
  8467. _iframe.contentWindow.document.body.appendChild(script1);
  8468. _iframe.contentWindow.document.body.appendChild(script2);
  8469. // _iframe.contentWindow.document.body.appendChild(script3);
  8470. _iframe.contentWindow.document.body.appendChild(script4);
  8471. };
  8472. }
  8473. _jie.onclick = async () => {
  8474. let text = ''
  8475. if (aTool == 6) {
  8476. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8477. } else if (aTool == 3) {
  8478. text = await U.MD.D.I.getEditorContent(_iframe);
  8479. }
  8480. _loading.style.display = 'flex'
  8481. console.log(_loading);
  8482. var _ajs = _iframe.contentWindow.document.createElement("script");
  8483. _ajs.type = "text/javascript";
  8484. _ajs.innerHTML =
  8485. // 'console.log(' + _loading + ');\n' +
  8486. 'var _js = document.createElement("script");\n' +
  8487. '_js.type="text/javascript";\n' +
  8488. '_js.charset="UTF-8";\n' +
  8489. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8490. "_js.onload = function(){\n" +
  8491. ' var a = document.getElementsByTagName("img")\n' +
  8492. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8493. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8494. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8495. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8496. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8497. "beforeUpload_shishi(file," +
  8498. "'" +
  8499. _userid +
  8500. "'" +
  8501. ", " +
  8502. "'" +
  8503. _cid +
  8504. "'" +
  8505. ", " +
  8506. "'" +
  8507. _stage +
  8508. "'" +
  8509. ", " +
  8510. "'" +
  8511. _task +
  8512. "'" +
  8513. ", " +
  8514. "'" +
  8515. _tool +
  8516. "'" +
  8517. ", " +
  8518. "'" +
  8519. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8520. "'" +
  8521. ", " +
  8522. "'" +
  8523. aTool +
  8524. "'" +
  8525. ", " +
  8526. "`" +
  8527. text +
  8528. "`" +
  8529. ")\n" +
  8530. " });\n" +
  8531. "}\n" +
  8532. "document.head.appendChild(_js);\n";
  8533. _iframe.contentWindow.document.head.appendChild(_ajs);
  8534. }
  8535. }
  8536. //U.MD.D.I.openClick(str);
  8537. //如果有任务栏信息
  8538. // if (_taskbar) {
  8539. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8540. // }
  8541. }
  8542. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8543. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8544. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8545. _userinfo = US.userInfo, //登录用户信息
  8546. _userid = US.userInfo.userid //登录用户id
  8547. let _iframe;
  8548. let _cid = cid,
  8549. _stage = stage,
  8550. _task = task,
  8551. _tool = tool;
  8552. var _jie = $$("div", {
  8553. "style": {
  8554. "position": "absolute",
  8555. "bottom": "50px",
  8556. "right": "50px",
  8557. "zIndex": "9999",
  8558. "backgroundColor": "#2268bc",
  8559. "color": "#fff",
  8560. "padding": "12px 20px",
  8561. "cursor": "pointer",
  8562. "borderRadius": "4px",
  8563. },
  8564. "innerHTML": "上传模板"
  8565. })
  8566. let aTool = ''
  8567. let _loading = document.createElement('div')
  8568. _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;"
  8569. // _loading.id = "";
  8570. let _lchild = document.createElement('div')
  8571. let _limg = document.createElement('img')
  8572. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8573. _limg.style = "width: 26px;margin-right: 10px;"
  8574. _lchild.appendChild(_limg)
  8575. let _lspan = document.createElement('span')
  8576. _lspan.innerHTML = "上传中..."
  8577. _lchild.appendChild(_lspan)
  8578. _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%);"
  8579. _loading.appendChild(_lchild)
  8580. var _box = $$('div', {
  8581. "style": {
  8582. "position": "relative",
  8583. "width": "100%",
  8584. "height": "100%",
  8585. },
  8586. })
  8587. _box.appendChild(_loading)
  8588. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8589. switch (str) {
  8590. case "whiteboard":
  8591. aTool = 1;
  8592. _iframe = $$("iframe", {
  8593. "frameborder": "no",
  8594. "border": "0",
  8595. "scrolling ": "no",
  8596. "style": {
  8597. "cssText": "border:0;width:100%;height:100%"
  8598. },
  8599. "src": "https://beta.iwb.cocorobo.cn/"
  8600. })
  8601. _box.appendChild(_iframe);
  8602. _box.appendChild(_jie);
  8603. _formdiv = new U.UF.UI.form(
  8604. "电子白板",
  8605. _box, {
  8606. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8607. "style": {
  8608. "width": "90%",
  8609. "height": "90%",
  8610. "overflow": 'hidden'
  8611. },
  8612. "onresize": function () { }
  8613. }, {
  8614. closecallback: function () { }
  8615. }, {
  8616. "style": {
  8617. "height": "36px"
  8618. }
  8619. }).form; //创建窗体
  8620. _taskbar = {
  8621. "id": str + _formdiv.id,
  8622. "style": {
  8623. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8624. },
  8625. "name": "电子白板",
  8626. "forms": _formdiv,
  8627. "click": function () {
  8628. U.MD.D.I.openApplication(str, obj, info);
  8629. }
  8630. }
  8631. break;
  8632. case "mind":
  8633. aTool = 3;
  8634. _iframe = $$("iframe", {
  8635. "frameborder": "no",
  8636. "border": "0",
  8637. "scrolling ": "no",
  8638. "style": {
  8639. "cssText": "border:0;width:100%;height:100%"
  8640. },
  8641. "src": "/kityminder-editor/dist/index.html"
  8642. });
  8643. _box.appendChild(_iframe);
  8644. _box.appendChild(_jie);
  8645. _formdiv = new U.UF.UI.form(
  8646. "思维导图",
  8647. _box, { //"/jsmind/example/demo.html"
  8648. "id": "minds_Yu" + cid + stage + task + tool,
  8649. "style": {
  8650. "width": "90%",
  8651. "height": "90%",
  8652. "overflow": 'hidden'
  8653. },
  8654. "onresize": function () { }
  8655. }, {
  8656. closecallback: function () { }
  8657. }, {
  8658. "style": {
  8659. "height": "36px"
  8660. }
  8661. }).form; //创建窗体
  8662. _taskbar = {
  8663. "id": str + _formdiv.id,
  8664. "style": {
  8665. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8666. },
  8667. "name": "思维导图",
  8668. "forms": _formdiv,
  8669. "click": function () {
  8670. U.MD.D.I.openApplication(str, obj, info);
  8671. }
  8672. }
  8673. break;
  8674. case "doc":
  8675. aTool = 6;
  8676. _iframe = $$("iframe", {
  8677. "frameborder": "no",
  8678. "border": "0",
  8679. "scrolling ": "no",
  8680. "style": {
  8681. "cssText": "border:0;width:100%;height:100%"
  8682. },
  8683. "src": "/Office/Word/WordEditArea.htm"
  8684. })
  8685. _box.appendChild(_iframe);
  8686. _box.appendChild(_jie);
  8687. _formdiv = new U.UF.UI.form(
  8688. "协同文档",
  8689. _box, {
  8690. "id": "docs_Yu" + cid + stage + task + tool,
  8691. "style": {
  8692. "width": "90%",
  8693. "height": "90%",
  8694. "overflow": 'hidden'
  8695. },
  8696. "onresize": function () { }
  8697. }, {
  8698. closecallback: function () { }
  8699. }, {
  8700. "style": {
  8701. "height": "36px"
  8702. }
  8703. }).form; //创建窗体
  8704. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8705. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8706. })
  8707. _taskbar = {
  8708. "id": str + _formdiv.id,
  8709. "style": {
  8710. "backgroundImage": "url(/img/icon/doc.png)"
  8711. },
  8712. "name": "协同文档",
  8713. "forms": _formdiv,
  8714. "click": function () {
  8715. U.MD.D.I.openApplication(str, obj, info);
  8716. }
  8717. }
  8718. break;
  8719. case "CocoPi":
  8720. aTool = 57;
  8721. _iframe = $$("iframe", {
  8722. "allowpaymentrequest": "allowpaymentrequest",
  8723. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8724. "webkitallowfullscreen": "",
  8725. "mozallowfullscreen": "",
  8726. "frameborder": "no",
  8727. "border": "0",
  8728. "scrolling ": "no",
  8729. "style": {
  8730. "cssText": "border:0;width:100%;height:100%"
  8731. },
  8732. "src": "https://pi.cocorobo.cn/"
  8733. })
  8734. _box.appendChild(_iframe);
  8735. _box.appendChild(_jie);
  8736. _formdiv = new U.UF.UI.form(
  8737. "CocoPi",
  8738. _box, {
  8739. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8740. "style": {
  8741. "width": "90%",
  8742. "height": "90%",
  8743. "overflow": 'hidden'
  8744. },
  8745. "onresize": function () { }
  8746. }, {
  8747. closecallback: function () { }
  8748. }, {
  8749. "style": {
  8750. "height": "36px"
  8751. }
  8752. }).form; //创建窗体
  8753. _taskbar = {
  8754. "id": str + _formdiv.id,
  8755. "style": {
  8756. "backgroundImage": "url(/img/icon/cocopi.png)"
  8757. },
  8758. "name": "CocoPi",
  8759. "forms": _formdiv,
  8760. "click": function () {
  8761. U.MD.D.I.openApplication(str, obj, info);
  8762. }
  8763. }
  8764. break;
  8765. }
  8766. if (_iframe) {
  8767. if (str == 'doc') {
  8768. _iframe = _formdiv.querySelector('iframe')
  8769. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8770. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8771. })
  8772. if (onloadListener) {
  8773. _iframe.contentDocument.location.reload()
  8774. } else {
  8775. _iframe.contentDocument.location.reload()
  8776. }
  8777. } else if (str == 'mind') {
  8778. _iframe = _formdiv.querySelector('iframe')
  8779. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8780. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8781. })
  8782. if (onloadListener) {
  8783. _iframe.contentDocument.location.reload()
  8784. } else {
  8785. _iframe.contentDocument.location.reload()
  8786. }
  8787. } else if (str == 'whiteboard') {
  8788. _iframe = _formdiv.querySelector('iframe')
  8789. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8790. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8791. })
  8792. // if (onloadListener) {
  8793. // try {
  8794. // _iframe.src += "?cocorobo="+new Date().getTime()
  8795. // _iframe.contentWindow.document.location.reload()
  8796. // } catch (error) {
  8797. // }
  8798. // } else {
  8799. // _iframe.contentDocument.location.reload()
  8800. // }
  8801. } else if (str == 'CocoPi') {
  8802. _iframe = _formdiv.querySelector('iframe')
  8803. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8804. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8805. })
  8806. if (onloadListener) {
  8807. _iframe.contentDocument.location.reload()
  8808. } else {
  8809. _iframe.contentDocument.location.reload()
  8810. }
  8811. } else {
  8812. _iframe.onload = () => { };
  8813. }
  8814. _jie.onclick = async () => {
  8815. let text = ''
  8816. let type = '2'
  8817. if (aTool == 1) {
  8818. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8819. type = '3'
  8820. } else if (aTool == 6) {
  8821. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8822. type = '1'
  8823. } else if (aTool == 3) {
  8824. text = await U.MD.D.I.getEditorContent(_iframe);
  8825. type = '2'
  8826. } else if (aTool == 57) {
  8827. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8828. type = '4'
  8829. }
  8830. _loading.style.display = 'flex'
  8831. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8832. }
  8833. }
  8834. //U.MD.D.I.openClick(str);
  8835. //如果有任务栏信息
  8836. // if (_taskbar) {
  8837. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8838. // }
  8839. }
  8840. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8841. var xmlhttp;
  8842. var Mac, Sn, DeviceId
  8843. if (window.XMLHttpRequest) {
  8844. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8845. xmlhttp = new XMLHttpRequest();
  8846. } else {
  8847. // IE6, IE5 浏览器执行代码
  8848. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8849. }
  8850. xmlhttp.onreadystatechange = function () {
  8851. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8852. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8853. // resolve(res.value[0][0].text);
  8854. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8855. }
  8856. }
  8857. }
  8858. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8859. xmlhttp.send();
  8860. }
  8861. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8862. var xmlhttp;
  8863. var Mac, Sn, DeviceId
  8864. if (window.XMLHttpRequest) {
  8865. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8866. xmlhttp = new XMLHttpRequest();
  8867. } else {
  8868. // IE6, IE5 浏览器执行代码
  8869. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8870. }
  8871. xmlhttp.onreadystatechange = function () {
  8872. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8873. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8874. // resolve(res.value[0][0].text);
  8875. if (type == '2') {
  8876. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8877. } else if (type == '3') {
  8878. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8879. } else if (type == '4') {
  8880. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8881. }
  8882. } else {
  8883. if (type == '2') {
  8884. iframe.contentWindow.editor.minder.importData('json', '')
  8885. } else if (type == '3') {
  8886. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8887. } else if (type == '4') {
  8888. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8889. }
  8890. }
  8891. }
  8892. }
  8893. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8894. xmlhttp.send();
  8895. }
  8896. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8897. var xmlhttp;
  8898. var Mac, Sn, DeviceId
  8899. if (window.XMLHttpRequest) {
  8900. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8901. xmlhttp = new XMLHttpRequest();
  8902. } else {
  8903. // IE6, IE5 浏览器执行代码
  8904. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8905. }
  8906. xmlhttp.onreadystatechange = function () {
  8907. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8908. if (xmlhttp.response) {
  8909. // resolve(res.value[0][0].text);
  8910. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8911. // $(fileInput).val('');
  8912. // });
  8913. span.innerHTML = '上传成功'
  8914. setTimeout(() => {
  8915. loading.style.display = 'none'
  8916. }, 1000);
  8917. }
  8918. }
  8919. }
  8920. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8921. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8922. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8923. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8924. // 设置请求头,表示请求体的编码格式
  8925. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8926. // 设置请求体,使用url-encoded格式的数据
  8927. }
  8928. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8929. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8930. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8931. _userinfo = US.userInfo, //登录用户信息
  8932. _userid = US.userInfo.userid //登录用户id
  8933. let _iframe;
  8934. let _cid = cid,
  8935. _stage = stage,
  8936. _task = task,
  8937. _tool = tool;
  8938. var _jie = $$("div", {
  8939. "style": {
  8940. "position": "absolute",
  8941. "bottom": "50px",
  8942. "right": "50px",
  8943. "zIndex": "9999",
  8944. "backgroundColor": "#2268bc",
  8945. "color": "#fff",
  8946. "padding": "12px 20px",
  8947. "cursor": "pointer",
  8948. "borderRadius": "4px",
  8949. },
  8950. "innerHTML": "提交作业"
  8951. })
  8952. let aTool = ''
  8953. let _loading = document.createElement('div')
  8954. _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;"
  8955. // _loading.id = "";
  8956. let _lchild = document.createElement('div')
  8957. let _limg = document.createElement('img')
  8958. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8959. _limg.style = "width: 26px;margin-right: 10px;"
  8960. _lchild.appendChild(_limg)
  8961. let _lspan = document.createElement('span')
  8962. _lspan.innerHTML = "上传中..."
  8963. _lchild.appendChild(_lspan)
  8964. _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%);"
  8965. _loading.appendChild(_lchild)
  8966. var _box = $$('div', {
  8967. "style": {
  8968. "position": "relative",
  8969. "width": "100%",
  8970. "height": "100%",
  8971. },
  8972. })
  8973. _box.appendChild(_loading)
  8974. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8975. switch (str) {
  8976. case "CocoPi":
  8977. aTool = 57;
  8978. _iframe = $$("iframe", {
  8979. "allowpaymentrequest": "allowpaymentrequest",
  8980. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8981. "webkitallowfullscreen": "",
  8982. "mozallowfullscreen": "",
  8983. "frameborder": "no",
  8984. "border": "0",
  8985. "scrolling ": "no",
  8986. "style": {
  8987. "cssText": "border:0;width:100%;height:100%"
  8988. },
  8989. "src": "https://pi.cocorobo.cn/"
  8990. })
  8991. _box.appendChild(_iframe);
  8992. _box.appendChild(_jie);
  8993. _formdiv = new U.UF.UI.form(
  8994. "CocoPi",
  8995. _box, {
  8996. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8997. "style": {
  8998. "width": "90%",
  8999. "height": "90%",
  9000. "overflow": 'hidden'
  9001. },
  9002. "onresize": function () { }
  9003. }, {
  9004. closecallback: function () { }
  9005. }, {
  9006. "style": {
  9007. "height": "36px"
  9008. }
  9009. }).form; //创建窗体
  9010. _taskbar = {
  9011. "id": str + _formdiv.id,
  9012. "style": {
  9013. "backgroundImage": "url(/img/icon/cocopi.png)"
  9014. },
  9015. "name": "CocoPi",
  9016. "forms": _formdiv,
  9017. "click": function () {
  9018. U.MD.D.I.openApplication(str, obj, info);
  9019. }
  9020. }
  9021. break;
  9022. }
  9023. if (_iframe) {
  9024. if (str == 'CocoPi') {
  9025. _iframe = _formdiv.querySelector('iframe')
  9026. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9027. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9028. })
  9029. if (onloadListener) {
  9030. _iframe.contentDocument.location.reload()
  9031. } else {
  9032. _iframe.contentDocument.location.reload()
  9033. }
  9034. }
  9035. _jie.onclick = async () => {
  9036. let text = ''
  9037. if (aTool == 57) {
  9038. text = _iframe.contentWindow.getLoadXmlStr()
  9039. }
  9040. _loading.style.display = 'flex'
  9041. console.log(_loading);
  9042. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9043. _loading.style.display = 'none'
  9044. let _div = document.createElement('div')
  9045. _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;"
  9046. let _inner = document.createElement('div')
  9047. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9048. _inner.innerHTML = "上传成功"
  9049. _div.appendChild(_inner)
  9050. _iframe.contentWindow.window.document.body.appendChild(_div)
  9051. _div.onclick = () => {
  9052. _iframe.contentWindow.window.document.body.removeChild(_div)
  9053. }
  9054. setTimeout(() => {
  9055. _iframe.contentWindow.window.document.body.removeChild(_div)
  9056. }, 1000);
  9057. }, [], { "type": "POST", "withCredentials": true });
  9058. }
  9059. }
  9060. }
  9061. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9062. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9063. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9064. _userid = student.userid, //登录用户id
  9065. _username = student.student //用户名字
  9066. let _iframe;
  9067. let _cid = cid,
  9068. _stage = stage,
  9069. _task = task,
  9070. _tool = tool;
  9071. var _jie = $$("div", {
  9072. "style": {
  9073. "position": "absolute",
  9074. "bottom": "50px",
  9075. "right": "50px",
  9076. "zIndex": "9999",
  9077. "backgroundColor": "#2268bc",
  9078. "color": "#fff",
  9079. "padding": "12px 20px",
  9080. "cursor": "pointer",
  9081. "borderRadius": "4px",
  9082. },
  9083. "innerHTML": "提交作业"
  9084. })
  9085. let aTool = ''
  9086. let _loading = document.createElement('div')
  9087. _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;"
  9088. // _loading.id = "";
  9089. let _lchild = document.createElement('div')
  9090. let _limg = document.createElement('img')
  9091. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9092. _limg.style = "width: 26px;margin-right: 10px;"
  9093. _lchild.appendChild(_limg)
  9094. let _lspan = document.createElement('span')
  9095. _lspan.innerHTML = "上传中..."
  9096. _lchild.appendChild(_lspan)
  9097. _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%);"
  9098. _loading.appendChild(_lchild)
  9099. var _box = $$('div', {
  9100. "style": {
  9101. "position": "relative",
  9102. "width": "100%",
  9103. "height": "100%",
  9104. },
  9105. })
  9106. _box.appendChild(_loading)
  9107. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9108. switch (str) {
  9109. case "CocoPi":
  9110. aTool = 57;
  9111. _iframe = $$("iframe", {
  9112. "allowpaymentrequest": "allowpaymentrequest",
  9113. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9114. "webkitallowfullscreen": "",
  9115. "mozallowfullscreen": "",
  9116. "frameborder": "no",
  9117. "border": "0",
  9118. "scrolling ": "no",
  9119. "style": {
  9120. "cssText": "border:0;width:100%;height:100%"
  9121. },
  9122. "src": "https://pi.cocorobo.cn/"
  9123. })
  9124. _box.appendChild(_iframe);
  9125. _box.appendChild(_jie);
  9126. _formdiv = new U.UF.UI.form(
  9127. "CocoPi-" + _username,
  9128. _box, {
  9129. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9130. "style": {
  9131. "width": "90%",
  9132. "height": "90%",
  9133. "overflow": 'hidden'
  9134. },
  9135. "onresize": function () { }
  9136. }, {
  9137. closecallback: function () { }
  9138. }, {
  9139. "style": {
  9140. "height": "36px"
  9141. }
  9142. }).form; //创建窗体
  9143. _taskbar = {
  9144. "id": str + _formdiv.id,
  9145. "style": {
  9146. "backgroundImage": "url(/img/icon/cocopi.png)"
  9147. },
  9148. "name": "CocoPi",
  9149. "forms": _formdiv,
  9150. "click": function () {
  9151. U.MD.D.I.openApplication(str, obj, info);
  9152. }
  9153. }
  9154. break;
  9155. }
  9156. if (_iframe) {
  9157. if (str == 'CocoPi') {
  9158. _iframe = _formdiv.querySelector('iframe')
  9159. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9160. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9161. })
  9162. if (onloadListener) {
  9163. _iframe.contentDocument.location.reload()
  9164. } else {
  9165. _iframe.contentDocument.location.reload()
  9166. }
  9167. }
  9168. _jie.onclick = async () => {
  9169. let text = ''
  9170. if (aTool == 57) {
  9171. text = _iframe.contentWindow.getLoadXmlStr()
  9172. }
  9173. _loading.style.display = 'flex'
  9174. console.log(_loading);
  9175. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9176. _loading.style.display = 'none'
  9177. let _div = document.createElement('div')
  9178. _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;"
  9179. let _inner = document.createElement('div')
  9180. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9181. _inner.innerHTML = "上传成功"
  9182. _div.appendChild(_inner)
  9183. _iframe.contentWindow.window.document.body.appendChild(_div)
  9184. _div.onclick = () => {
  9185. _iframe.contentWindow.window.document.body.removeChild(_div)
  9186. }
  9187. setTimeout(() => {
  9188. _iframe.contentWindow.window.document.body.removeChild(_div)
  9189. }, 1000);
  9190. }, [], { "type": "POST", "withCredentials": true });
  9191. }
  9192. }
  9193. }
  9194. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9195. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9196. if (res.value[0].length > 0) {
  9197. if (atool == 57) {
  9198. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9199. }
  9200. } else {
  9201. if (atool == 57) {
  9202. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9203. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9204. }
  9205. }
  9206. }, [], { "type": "POST", "withCredentials": true });
  9207. }