DeskTop.js 574 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371
  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. ];
  986. //未来教育基地
  987. U.MD.D.I.szjkyAdminDeskIcon = [
  988. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  989. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  990. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  991. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  992. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  993. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  994. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  995. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  996. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  997. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  998. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  999. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1000. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1006. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1007. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1008. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1009. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1010. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1011. ];
  1012. //未来教育基地
  1013. U.MD.D.I.szjkyStudentDeskIcon = [
  1014. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1015. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1016. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1017. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1018. ];
  1019. //成华教育局
  1020. U.MD.D.I.chjyjTeacherDeskIcon = [
  1021. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1022. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1023. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1024. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1025. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1026. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1027. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1028. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1029. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1030. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1031. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1032. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1033. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1034. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1035. ];
  1036. //成华教育局chjyj
  1037. U.MD.D.I.chjyjAdminDeskIcon = [
  1038. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1039. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1040. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1041. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1042. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1043. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1044. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1045. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1046. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1047. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1048. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1049. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1050. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1051. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1052. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1053. ];
  1054. //成华教育局chjyj
  1055. U.MD.D.I.chjyjStudentDeskIcon = [
  1056. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1057. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1058. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1059. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1060. ];
  1061. //tpc
  1062. U.MD.D.I.tpcStudentDeskIcon = [
  1063. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1067. ];
  1068. //tpc
  1069. U.MD.D.I.tpcTeacherDeskIcon = [
  1070. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1071. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1072. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1073. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1074. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1075. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1076. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1077. ];
  1078. //tpc
  1079. U.MD.D.I.tpcAdminDeskIcon = [
  1080. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1081. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1082. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1083. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1084. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1085. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1086. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1087. ];
  1088. //THU-IOE
  1089. U.MD.D.I.thuioeTeacherDeskIcon = [
  1090. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1091. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1092. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1093. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1094. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1095. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1096. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1097. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1098. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1099. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1100. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1101. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1102. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1103. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1104. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1105. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1106. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1107. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1108. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1109. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1110. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1111. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1112. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1113. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1114. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1115. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1116. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1117. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1118. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1119. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1120. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1121. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1122. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1123. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1125. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1128. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1129. ];
  1130. //THU-IOE
  1131. U.MD.D.I.thuioeStudentDeskIcon = [
  1132. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1136. ];
  1137. //jccssyl
  1138. U.MD.D.I.jccssylTeacherDeskIcon = [
  1139. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1140. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1141. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1142. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1143. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1144. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1145. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1146. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1147. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1148. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1149. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1150. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1151. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1152. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1154. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1155. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1156. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1157. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1158. ];
  1159. //jccssyl
  1160. U.MD.D.I.jccssylStudentDeskIcon = [
  1161. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1162. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1163. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1164. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1165. ];
  1166. //cale
  1167. U.MD.D.I.caleTeacherDeskIcon = [
  1168. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1169. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1170. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1171. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1175. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1180. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1181. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1182. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1183. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1184. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1185. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1186. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1187. ];
  1188. //cale
  1189. U.MD.D.I.caleStudentDeskIcon = [
  1190. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1191. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1192. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1197. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1198. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1204. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1205. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1206. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1207. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1208. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1209. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1210. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1211. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1212. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1213. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1214. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1215. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1216. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1217. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1218. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1219. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1220. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1221. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1222. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1223. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1224. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1225. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1226. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1227. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1228. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1229. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1230. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1231. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1232. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1233. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1234. ];
  1235. //lqwmsgzs
  1236. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1237. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1238. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1239. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1241. ];
  1242. //盐田区幼儿园
  1243. U.MD.D.I.ytyTeacherDeskIcon = [
  1244. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1245. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1246. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1247. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1248. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1250. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1251. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1252. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1253. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1254. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1255. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1256. ];
  1257. //盐田区幼儿园
  1258. U.MD.D.I.ytyStudentDeskIcon = [
  1259. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1260. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1261. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiAdminDeskIcon = [
  1291. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1292. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1293. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1294. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1295. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1296. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1297. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1298. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1299. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1300. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1302. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1303. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1304. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1306. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1308. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1309. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1310. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1311. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1312. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1313. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1314. ];
  1315. //scnuai
  1316. U.MD.D.I.scnuaiStudentDeskIcon = [
  1317. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1318. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1319. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1320. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1321. ];
  1322. //cocobiz
  1323. U.MD.D.I.cocobizteacherDeskIcon = [
  1324. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1325. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1326. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1327. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1328. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1329. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1330. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1331. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1332. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1333. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1334. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1335. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1336. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1337. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1338. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1340. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1341. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1342. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1343. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1344. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1345. ];
  1346. //cocobiz
  1347. U.MD.D.I.cocobizStudentDeskIcon = [
  1348. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1349. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1352. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1354. ];
  1355. //xxzjky
  1356. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1357. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1358. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1359. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1360. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1361. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1362. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1363. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1364. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1365. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1366. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1367. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1368. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1369. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1370. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1371. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1375. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1376. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1377. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1378. ];
  1379. //xxzjky
  1380. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1381. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1385. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. ];
  1388. //#region 桌面初始化a
  1389. /**
  1390. * 初始化桌面的起始函数
  1391. *
  1392. */
  1393. U.MD.D.I.init = function () {
  1394. if ($("#U_MD_D_K")[0]) {
  1395. //初始化桌面图标
  1396. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1397. // var clickUrl = ':12588/requestIp.php';
  1398. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1399. // U.MD.D.I.Ip = data;
  1400. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1401. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1402. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1403. // })
  1404. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1405. // })
  1406. }
  1407. }
  1408. /**
  1409. * 模式切换
  1410. *
  1411. */
  1412. U.MD.D.I.ModeCheck = function (type) {
  1413. if (US.Config.type == type) {
  1414. return
  1415. }
  1416. US.Config.type = type
  1417. $('.U_PBL_Check .active')[0].className = ''
  1418. if (type == 1) {
  1419. $('.U_PBL_Check div')[0].className = 'active'
  1420. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1421. } else {
  1422. $('.U_PBL_Check div')[1].className = 'active'
  1423. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1424. }
  1425. //初始化桌面图标
  1426. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1427. if (type == 2) {
  1428. U.MD.D.I.openApplication("project")
  1429. }
  1430. }
  1431. /**
  1432. * 隐藏任务栏
  1433. *
  1434. * @param {element} 桌面元素
  1435. */
  1436. U.MD.D.I.hiddenTaskbar = function (el) {
  1437. //任务栏位置变小
  1438. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1439. //桌面的位置变大
  1440. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1441. }
  1442. /**
  1443. * 隐藏任务栏
  1444. *
  1445. * @param {element} 桌面元素
  1446. */
  1447. U.MD.D.I.hiddenTaskbarout = function (el) {
  1448. //任务栏位置变小
  1449. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1450. //任务栏位置变化
  1451. U.selectEl(el).css({ "bottom": "-60px" });
  1452. //桌面的位置变大
  1453. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1454. }
  1455. }
  1456. /**
  1457. * 初始化打印桌面图标
  1458. *
  1459. * @param {element} 桌面元素
  1460. */
  1461. U.MD.D.I.initDesktopIcons = function (el, type) {
  1462. var i, //用于循环
  1463. _content, //桌面图标元素
  1464. _iconcontent, //桌面图标元素
  1465. _frag = $$("frag"), //定义一个碎片元素
  1466. _type = US.userInfo.type,
  1467. _org = US.userInfo.org,
  1468. _oid = US.userInfo.organizeid,
  1469. _role = US.userInfo.role,
  1470. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1471. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1472. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1473. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1474. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1475. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1476. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1477. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1478. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1479. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1480. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1481. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1482. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1483. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1484. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1485. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1486. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1487. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1488. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1489. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1490. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1491. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1492. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1493. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1494. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1495. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1496. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1497. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1498. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1499. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1500. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1501. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1502. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1503. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1504. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1505. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1506. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1507. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1508. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1509. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1510. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1511. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1512. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1513. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1514. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1515. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1516. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1517. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1518. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1519. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1520. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1521. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1522. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1523. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1524. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1525. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1526. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1527. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1528. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1529. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1530. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1531. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1532. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1533. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1534. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1535. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1536. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1537. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1538. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1539. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1540. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1541. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1542. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1543. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1544. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1545. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1546. 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'];
  1547. 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'];
  1548. //清楚桌面图标
  1549. el.innerHTML = "";
  1550. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1551. _teacherDesktopIconInfo.push(
  1552. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1553. { "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)" } },
  1554. )
  1555. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1556. }
  1557. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1558. _teacherDesktopIconInfo.push(
  1559. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1560. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1561. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1562. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1563. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1564. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1565. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1566. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1567. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1568. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1569. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1570. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1571. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1572. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1573. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1574. )
  1575. }
  1576. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1577. _teacherDesktopIconInfo.push(
  1578. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1579. )
  1580. }
  1581. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1582. // _teacherDesktopIconInfo.push(
  1583. // )
  1584. // }
  1585. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1586. _teacherDesktopIconInfo.push(
  1587. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1588. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1589. )
  1590. }
  1591. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1592. _teacherDesktopIconInfo.push(
  1593. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1594. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1596. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1597. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1598. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1599. )
  1600. _studentDesktopIconInfo.push(
  1601. )
  1602. }
  1603. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1604. _teacherDesktopIconInfo.push(
  1605. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1606. )
  1607. _studentDesktopIconInfo.push(
  1608. )
  1609. }
  1610. //010606 组织
  1611. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1612. _teacherDesktopIconInfo.push(
  1613. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1614. )
  1615. _studentDesktopIconInfo.push(
  1616. )
  1617. }
  1618. //麒麟二中 和 民新小学
  1619. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1620. _teacherDesktopIconInfo.push(
  1621. )
  1622. }
  1623. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1624. _teacherDesktopIconInfo.push(
  1625. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1626. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1627. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1628. )
  1629. }
  1630. if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1631. _teacherDesktopIconInfo.push(
  1632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1633. )
  1634. }
  1635. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1636. _teacherDesktopIconInfo.push(
  1637. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1638. )
  1639. }
  1640. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1641. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1642. _teacherDesktopIconInfo.push(
  1643. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1644. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1645. )
  1646. }
  1647. //麒麟二中
  1648. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1649. _studentDesktopIconInfo.push(
  1650. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1651. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1652. )
  1653. }
  1654. //万科双语
  1655. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1656. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1657. if (el.Name == '项目管理') {
  1658. el.Name = 'PBL项目'
  1659. }
  1660. return el
  1661. })
  1662. _studentDesktopIconInfo3.push(
  1663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1664. )
  1665. }
  1666. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1667. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1668. return el.Name != '魔盒识字' && el.Name != '24点'
  1669. })
  1670. }
  1671. 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) {
  1672. _studentDesktopIconInfo.push(
  1673. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1674. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1675. )
  1676. }
  1677. //循环创建桌面图标
  1678. if (type == 1) {
  1679. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1680. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1681. _content = $$("div", {
  1682. className: "U_MD_D_KO",
  1683. "onmousedown": U.UF.C.closure(function (obj) {
  1684. //防止拖动图标即打开了桌面应用
  1685. U.MD.D.click(this, obj);
  1686. }, [_studentDesktopIconInfo[i]]),
  1687. "onclick": U.UF.C.closure(function (obj) {
  1688. //防止拖动图标即打开了桌面应用
  1689. U.MD.D.click(this, obj);
  1690. }, [_studentDesktopIconInfo[i]])
  1691. }, _frag); //
  1692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1695. }
  1696. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1697. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1698. _content = $$("div", {
  1699. className: "U_MD_D_KO",
  1700. "onmousedown": U.UF.C.closure(function (obj) {
  1701. //防止拖动图标即打开了桌面应用
  1702. U.MD.D.click(this, obj);
  1703. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1704. "onclick": U.UF.C.closure(function (obj) {
  1705. //防止拖动图标即打开了桌面应用
  1706. U.MD.D.click(this, obj);
  1707. }, [_hkZJLSStudentDeskIconInfo[i]])
  1708. }, _frag); //
  1709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1712. } //
  1713. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1714. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1715. _content = $$("div", {
  1716. className: "U_MD_D_KO",
  1717. "onmousedown": U.UF.C.closure(function (obj) {
  1718. //防止拖动图标即打开了桌面应用
  1719. U.MD.D.click(this, obj);
  1720. }, [_ytyStudentDeskIconInfo[i]]),
  1721. "onclick": U.UF.C.closure(function (obj) {
  1722. //防止拖动图标即打开了桌面应用
  1723. U.MD.D.click(this, obj);
  1724. }, [_ytyStudentDeskIconInfo[i]])
  1725. }, _frag); //
  1726. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1727. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1728. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1729. } //
  1730. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1731. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1732. _content = $$("div", {
  1733. className: "U_MD_D_KO",
  1734. "onmousedown": U.UF.C.closure(function (obj) {
  1735. //防止拖动图标即打开了桌面应用
  1736. U.MD.D.click(this, obj);
  1737. }, [_jccssylStudentDeskIconInfo[i]]),
  1738. "onclick": U.UF.C.closure(function (obj) {
  1739. //防止拖动图标即打开了桌面应用
  1740. U.MD.D.click(this, obj);
  1741. }, [_jccssylStudentDeskIconInfo[i]])
  1742. }, _frag); //
  1743. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1744. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1745. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1746. }
  1747. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1748. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1749. _content = $$("div", {
  1750. className: "U_MD_D_KO",
  1751. "onmousedown": U.UF.C.closure(function (obj) {
  1752. //防止拖动图标即打开了桌面应用
  1753. U.MD.D.click(this, obj);
  1754. }, [_scnuaiStudentDeskIconInfo[i]]),
  1755. "onclick": U.UF.C.closure(function (obj) {
  1756. //防止拖动图标即打开了桌面应用
  1757. U.MD.D.click(this, obj);
  1758. }, [_scnuaiStudentDeskIconInfo[i]])
  1759. }, _frag); //
  1760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1763. }
  1764. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1765. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1766. _content = $$("div", {
  1767. className: "U_MD_D_KO",
  1768. "onmousedown": U.UF.C.closure(function (obj) {
  1769. //防止拖动图标即打开了桌面应用
  1770. U.MD.D.click(this, obj);
  1771. }, [_caleStudentDeskIconInfo[i]]),
  1772. "onclick": U.UF.C.closure(function (obj) {
  1773. //防止拖动图标即打开了桌面应用
  1774. U.MD.D.click(this, obj);
  1775. }, [_caleStudentDeskIconInfo[i]])
  1776. }, _frag); //
  1777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1780. }
  1781. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1782. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1783. _content = $$("div", {
  1784. className: "U_MD_D_KO",
  1785. "onmousedown": U.UF.C.closure(function (obj) {
  1786. //防止拖动图标即打开了桌面应用
  1787. U.MD.D.click(this, obj);
  1788. }, [_thuioeStudentDeskIconInfo[i]]),
  1789. "onclick": U.UF.C.closure(function (obj) {
  1790. //防止拖动图标即打开了桌面应用
  1791. U.MD.D.click(this, obj);
  1792. }, [_thuioeStudentDeskIconInfo[i]])
  1793. }, _frag); //
  1794. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1795. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1796. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1797. }
  1798. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1799. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1800. _content = $$("div", {
  1801. className: "U_MD_D_KO",
  1802. "onmousedown": U.UF.C.closure(function (obj) {
  1803. //防止拖动图标即打开了桌面应用
  1804. U.MD.D.click(this, obj);
  1805. }, [_tpcStudentDeskIconInfo[i]]),
  1806. "onclick": U.UF.C.closure(function (obj) {
  1807. //防止拖动图标即打开了桌面应用
  1808. U.MD.D.click(this, obj);
  1809. }, [_tpcStudentDeskIconInfo[i]])
  1810. }, _frag); //
  1811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1814. } //
  1815. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1816. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1817. _content = $$("div", {
  1818. className: "U_MD_D_KO",
  1819. "onmousedown": U.UF.C.closure(function (obj) {
  1820. //防止拖动图标即打开了桌面应用
  1821. U.MD.D.click(this, obj);
  1822. }, [_chjyjStudentDeskIconInfo[i]]),
  1823. "onclick": U.UF.C.closure(function (obj) {
  1824. //防止拖动图标即打开了桌面应用
  1825. U.MD.D.click(this, obj);
  1826. }, [_chjyjStudentDeskIconInfo[i]])
  1827. }, _frag); //
  1828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1831. }
  1832. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1833. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1834. _content = $$("div", {
  1835. className: "U_MD_D_KO",
  1836. "onmousedown": U.UF.C.closure(function (obj) {
  1837. //防止拖动图标即打开了桌面应用
  1838. U.MD.D.click(this, obj);
  1839. }, [_szjkyStudentDeskIconInfo[i]]),
  1840. "onclick": U.UF.C.closure(function (obj) {
  1841. //防止拖动图标即打开了桌面应用
  1842. U.MD.D.click(this, obj);
  1843. }, [_szjkyStudentDeskIconInfo[i]])
  1844. }, _frag); //
  1845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1848. }
  1849. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1850. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1851. _content = $$("div", {
  1852. className: "U_MD_D_KO",
  1853. "onmousedown": U.UF.C.closure(function (obj) {
  1854. //防止拖动图标即打开了桌面应用
  1855. U.MD.D.click(this, obj);
  1856. }, [_dseiStudentDeskIconInfo[i]]),
  1857. "onclick": U.UF.C.closure(function (obj) {
  1858. //防止拖动图标即打开了桌面应用
  1859. U.MD.D.click(this, obj);
  1860. }, [_dseiStudentDeskIconInfo[i]])
  1861. }, _frag); //
  1862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1865. }
  1866. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1867. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1868. _content = $$("div", {
  1869. className: "U_MD_D_KO",
  1870. "onmousedown": U.UF.C.closure(function (obj) {
  1871. //防止拖动图标即打开了桌面应用
  1872. U.MD.D.click(this, obj);
  1873. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1874. "onclick": U.UF.C.closure(function (obj) {
  1875. //防止拖动图标即打开了桌面应用
  1876. U.MD.D.click(this, obj);
  1877. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1878. }, _frag); //
  1879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1882. }
  1883. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1884. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1885. _content = $$("div", {
  1886. className: "U_MD_D_KO",
  1887. "onmousedown": U.UF.C.closure(function (obj) {
  1888. //防止拖动图标即打开了桌面应用
  1889. U.MD.D.click(this, obj);
  1890. }, [_siesStudentDeskIconInfo[i]]),
  1891. "onclick": U.UF.C.closure(function (obj) {
  1892. //防止拖动图标即打开了桌面应用
  1893. U.MD.D.click(this, obj);
  1894. }, [_siesStudentDeskIconInfo[i]])
  1895. }, _frag); //
  1896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1899. }
  1900. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  1901. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  1902. _content = $$("div", {
  1903. className: "U_MD_D_KO",
  1904. "onmousedown": U.UF.C.closure(function (obj) {
  1905. //防止拖动图标即打开了桌面应用
  1906. U.MD.D.click(this, obj);
  1907. }, [_guzmsStudentDeskIconInfo[i]]),
  1908. "onclick": U.UF.C.closure(function (obj) {
  1909. //防止拖动图标即打开了桌面应用
  1910. U.MD.D.click(this, obj);
  1911. }, [_guzmsStudentDeskIconInfo[i]])
  1912. }, _frag); //
  1913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  1915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  1916. }
  1917. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1918. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1919. _content = $$("div", {
  1920. className: "U_MD_D_KO",
  1921. "onmousedown": U.UF.C.closure(function (obj) {
  1922. //防止拖动图标即打开了桌面应用
  1923. U.MD.D.click(this, obj);
  1924. }, [_hkStudentDeskIconInfo[i]]),
  1925. "onclick": U.UF.C.closure(function (obj) {
  1926. //防止拖动图标即打开了桌面应用
  1927. U.MD.D.click(this, obj);
  1928. }, [_hkStudentDeskIconInfo[i]])
  1929. }, _frag); //
  1930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1933. }
  1934. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1935. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1936. _content = $$("div", {
  1937. className: "U_MD_D_KO",
  1938. "onmousedown": U.UF.C.closure(function (obj) {
  1939. //防止拖动图标即打开了桌面应用
  1940. U.MD.D.click(this, obj);
  1941. }, [_hkaceStudentDeskIconInfo[i]]),
  1942. "onclick": U.UF.C.closure(function (obj) {
  1943. //防止拖动图标即打开了桌面应用
  1944. U.MD.D.click(this, obj);
  1945. }, [_hkaceStudentDeskIconInfo[i]])
  1946. }, _frag); //
  1947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1950. }
  1951. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  1952. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  1953. _content = $$("div", {
  1954. className: "U_MD_D_KO",
  1955. "onmousedown": U.UF.C.closure(function (obj) {
  1956. //防止拖动图标即打开了桌面应用
  1957. U.MD.D.click(this, obj);
  1958. }, [_cocobizStudentDeskIconInfo[i]]),
  1959. "onclick": U.UF.C.closure(function (obj) {
  1960. //防止拖动图标即打开了桌面应用
  1961. U.MD.D.click(this, obj);
  1962. }, [_cocobizStudentDeskIconInfo[i]])
  1963. }, _frag); //
  1964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  1966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  1967. }
  1968. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  1969. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  1970. _content = $$("div", {
  1971. className: "U_MD_D_KO",
  1972. "onmousedown": U.UF.C.closure(function (obj) {
  1973. //防止拖动图标即打开了桌面应用
  1974. U.MD.D.click(this, obj);
  1975. }, [_xxzjkyStudentDeskIconInfo[i]]),
  1976. "onclick": U.UF.C.closure(function (obj) {
  1977. //防止拖动图标即打开了桌面应用
  1978. U.MD.D.click(this, obj);
  1979. }, [_xxzjkyStudentDeskIconInfo[i]])
  1980. }, _frag); //
  1981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1984. }
  1985. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1986. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1987. _content = $$("div", {
  1988. className: "U_MD_D_KO",
  1989. "onmousedown": U.UF.C.closure(function (obj) {
  1990. //防止拖动图标即打开了桌面应用
  1991. U.MD.D.click(this, obj);
  1992. }, [_studentDesktopIconInfo[i]]),
  1993. "onclick": U.UF.C.closure(function (obj) {
  1994. //防止拖动图标即打开了桌面应用
  1995. U.MD.D.click(this, obj);
  1996. }, [_studentDesktopIconInfo[i]])
  1997. }, _frag); //
  1998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2001. }
  2002. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2003. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2004. _content = $$("div", {
  2005. className: "U_MD_D_KO",
  2006. "onmousedown": U.UF.C.closure(function (obj) {
  2007. //防止拖动图标即打开了桌面应用
  2008. U.MD.D.click(this, obj);
  2009. }, [_tcStudentDeskIconInfo[i]]),
  2010. "onclick": U.UF.C.closure(function (obj) {
  2011. //防止拖动图标即打开了桌面应用
  2012. U.MD.D.click(this, obj);
  2013. }, [_tcStudentDeskIconInfo[i]])
  2014. }, _frag); //
  2015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2018. }
  2019. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2020. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2021. _content = $$("div", {
  2022. className: "U_MD_D_KO",
  2023. "onmousedown": U.UF.C.closure(function (obj) {
  2024. //防止拖动图标即打开了桌面应用
  2025. U.MD.D.click(this, obj);
  2026. }, [_szscStudentDeskIconInfo[i]]),
  2027. "onclick": U.UF.C.closure(function (obj) {
  2028. //防止拖动图标即打开了桌面应用
  2029. U.MD.D.click(this, obj);
  2030. }, [_szscStudentDeskIconInfo[i]])
  2031. }, _frag); //
  2032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2035. }
  2036. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2037. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2038. _content = $$("div", {
  2039. className: "U_MD_D_KO",
  2040. "onmousedown": U.UF.C.closure(function (obj) {
  2041. //防止拖动图标即打开了桌面应用
  2042. U.MD.D.click(this, obj);
  2043. }, [_studentDesktopIconInfo3[i]]),
  2044. "onclick": U.UF.C.closure(function (obj) {
  2045. //防止拖动图标即打开了桌面应用
  2046. U.MD.D.click(this, obj);
  2047. }, [_studentDesktopIconInfo3[i]])
  2048. }, _frag); //
  2049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2052. }
  2053. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2054. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2055. _content = $$("div", {
  2056. className: "U_MD_D_KO",
  2057. "onmousedown": U.UF.C.closure(function (obj) {
  2058. //防止拖动图标即打开了桌面应用
  2059. U.MD.D.click(this, obj);
  2060. }, [_studentDesktopIconInfo2[i]]),
  2061. "onclick": U.UF.C.closure(function (obj) {
  2062. //防止拖动图标即打开了桌面应用
  2063. U.MD.D.click(this, obj);
  2064. }, [_studentDesktopIconInfo2[i]])
  2065. }, _frag); //
  2066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2069. }
  2070. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2071. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2072. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2073. continue
  2074. }
  2075. _content = $$("div", {
  2076. className: "U_MD_D_KO",
  2077. "onmousedown": U.UF.C.closure(function (obj) {
  2078. //防止拖动图标即打开了桌面应用
  2079. U.MD.D.click(this, obj);
  2080. }, [_wanketeacherDesktopIconInfo[i]]),
  2081. "onclick": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_wanketeacherDesktopIconInfo[i]])
  2085. }, _frag); //
  2086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2089. }
  2090. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2091. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2092. _content = $$("div", {
  2093. className: "U_MD_D_KO",
  2094. "onmousedown": U.UF.C.closure(function (obj) {
  2095. //防止拖动图标即打开了桌面应用
  2096. U.MD.D.click(this, obj);
  2097. }, [_wankeAdminDesktopIconInfo[i]]),
  2098. "onclick": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_wankeAdminDesktopIconInfo[i]])
  2102. }, _frag); //
  2103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2106. }
  2107. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2108. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2109. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2110. continue
  2111. }
  2112. _content = $$("div", {
  2113. className: "U_MD_D_KO",
  2114. "onmousedown": U.UF.C.closure(function (obj) {
  2115. //防止拖动图标即打开了桌面应用
  2116. U.MD.D.click(this, obj);
  2117. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2118. "onclick": U.UF.C.closure(function (obj) {
  2119. //防止拖动图标即打开了桌面应用
  2120. U.MD.D.click(this, obj);
  2121. }, [_scnuaiTeacherDeskIconInfo[i]])
  2122. }, _frag); //
  2123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2126. }
  2127. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2128. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2129. _content = $$("div", {
  2130. className: "U_MD_D_KO",
  2131. "onmousedown": U.UF.C.closure(function (obj) {
  2132. //防止拖动图标即打开了桌面应用
  2133. U.MD.D.click(this, obj);
  2134. }, [_scnuaiAdminDeskIconInfo[i]]),
  2135. "onclick": U.UF.C.closure(function (obj) {
  2136. //防止拖动图标即打开了桌面应用
  2137. U.MD.D.click(this, obj);
  2138. }, [_scnuaiAdminDeskIconInfo[i]])
  2139. }, _frag); //
  2140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2143. }
  2144. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2145. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2146. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2147. continue
  2148. }
  2149. _content = $$("div", {
  2150. className: "U_MD_D_KO",
  2151. "onmousedown": U.UF.C.closure(function (obj) {
  2152. //防止拖动图标即打开了桌面应用
  2153. U.MD.D.click(this, obj);
  2154. }, [_jccssylTeacherDeskIconInfo[i]]),
  2155. "onclick": U.UF.C.closure(function (obj) {
  2156. //防止拖动图标即打开了桌面应用
  2157. U.MD.D.click(this, obj);
  2158. }, [_jccssylTeacherDeskIconInfo[i]])
  2159. }, _frag); //
  2160. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2161. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2162. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2163. }
  2164. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2165. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2166. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2167. continue
  2168. }
  2169. _content = $$("div", {
  2170. className: "U_MD_D_KO",
  2171. "onmousedown": U.UF.C.closure(function (obj) {
  2172. //防止拖动图标即打开了桌面应用
  2173. U.MD.D.click(this, obj);
  2174. }, [_caleTeacherDeskIconInfo[i]]),
  2175. "onclick": U.UF.C.closure(function (obj) {
  2176. //防止拖动图标即打开了桌面应用
  2177. U.MD.D.click(this, obj);
  2178. }, [_caleTeacherDeskIconInfo[i]])
  2179. }, _frag); //
  2180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2183. }
  2184. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2185. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2186. _content = $$("div", {
  2187. className: "U_MD_D_KO",
  2188. "onmousedown": U.UF.C.closure(function (obj) {
  2189. //防止拖动图标即打开了桌面应用
  2190. U.MD.D.click(this, obj);
  2191. }, [_tpcOrganizerDeskIconInfo[i]]),
  2192. "onclick": U.UF.C.closure(function (obj) {
  2193. //防止拖动图标即打开了桌面应用
  2194. U.MD.D.click(this, obj);
  2195. }, [_tpcOrganizerDeskIconInfo[i]])
  2196. }, _frag); //
  2197. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2198. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2199. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2200. }
  2201. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2202. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2203. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2204. continue
  2205. }
  2206. _content = $$("div", {
  2207. className: "U_MD_D_KO",
  2208. "onmousedown": U.UF.C.closure(function (obj) {
  2209. //防止拖动图标即打开了桌面应用
  2210. U.MD.D.click(this, obj);
  2211. }, [_tpcTeacherDeskIconInfo[i]]),
  2212. "onclick": U.UF.C.closure(function (obj) {
  2213. //防止拖动图标即打开了桌面应用
  2214. U.MD.D.click(this, obj);
  2215. }, [_tpcTeacherDeskIconInfo[i]])
  2216. }, _frag); //
  2217. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2218. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2219. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2220. }
  2221. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2222. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2223. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2224. continue
  2225. }
  2226. _content = $$("div", {
  2227. className: "U_MD_D_KO",
  2228. "onmousedown": U.UF.C.closure(function (obj) {
  2229. //防止拖动图标即打开了桌面应用
  2230. U.MD.D.click(this, obj);
  2231. }, [_teacherDesktopIconInfo2[i]]),
  2232. "onclick": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_teacherDesktopIconInfo2[i]])
  2236. }, _frag); //
  2237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2240. }
  2241. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2242. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2243. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2244. continue
  2245. }
  2246. _content = $$("div", {
  2247. className: "U_MD_D_KO",
  2248. "onmousedown": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_thuioeTeacherDeskIconInfo[i]]),
  2252. "onclick": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_thuioeTeacherDeskIconInfo[i]])
  2256. }, _frag); //
  2257. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2258. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2259. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2260. }
  2261. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2262. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2263. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2264. continue
  2265. }
  2266. _content = $$("div", {
  2267. className: "U_MD_D_KO",
  2268. "onmousedown": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_lotechTeacherDeskIconInfo[i]]),
  2272. "onclick": U.UF.C.closure(function (obj) {
  2273. //防止拖动图标即打开了桌面应用
  2274. U.MD.D.click(this, obj);
  2275. }, [_lotechTeacherDeskIconInfo[i]])
  2276. }, _frag); //
  2277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2280. }//
  2281. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2282. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2283. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2284. continue
  2285. }
  2286. _content = $$("div", {
  2287. className: "U_MD_D_KO",
  2288. "onmousedown": U.UF.C.closure(function (obj) {
  2289. //防止拖动图标即打开了桌面应用
  2290. U.MD.D.click(this, obj);
  2291. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2292. "onclick": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2296. }, _frag); //
  2297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2300. }
  2301. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2302. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2303. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2304. continue
  2305. }
  2306. _content = $$("div", {
  2307. className: "U_MD_D_KO",
  2308. "onmousedown": U.UF.C.closure(function (obj) {
  2309. //防止拖动图标即打开了桌面应用
  2310. U.MD.D.click(this, obj);
  2311. }, [_siesTeacherDeskIconInfo[i]]),
  2312. "onclick": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_siesTeacherDeskIconInfo[i]])
  2316. }, _frag); //
  2317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2320. }
  2321. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2322. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2323. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2324. continue
  2325. }
  2326. _content = $$("div", {
  2327. className: "U_MD_D_KO",
  2328. "onmousedown": U.UF.C.closure(function (obj) {
  2329. //防止拖动图标即打开了桌面应用
  2330. U.MD.D.click(this, obj);
  2331. }, [_guzmsTeacherDeskIconInfo[i]]),
  2332. "onclick": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_guzmsTeacherDeskIconInfo[i]])
  2336. }, _frag); //
  2337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2340. }
  2341. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2342. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2343. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2344. continue
  2345. }
  2346. _content = $$("div", {
  2347. className: "U_MD_D_KO",
  2348. "onmousedown": U.UF.C.closure(function (obj) {
  2349. //防止拖动图标即打开了桌面应用
  2350. U.MD.D.click(this, obj);
  2351. }, [_longhuaTeacherDeskIconInfo[i]]),
  2352. "onclick": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_longhuaTeacherDeskIconInfo[i]])
  2356. }, _frag); //
  2357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2360. }
  2361. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2362. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2363. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2364. continue
  2365. }
  2366. _content = $$("div", {
  2367. className: "U_MD_D_KO",
  2368. "onmousedown": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_ytyTeacherDeskIconInfo[i]]),
  2372. "onclick": U.UF.C.closure(function (obj) {
  2373. //防止拖动图标即打开了桌面应用
  2374. U.MD.D.click(this, obj);
  2375. }, [_ytyTeacherDeskIconInfo[i]])
  2376. }, _frag); //
  2377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2380. }
  2381. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2382. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2383. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2384. continue
  2385. }
  2386. _content = $$("div", {
  2387. className: "U_MD_D_KO",
  2388. "onmousedown": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2392. "onclick": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_yunhaiTeacherDeskIconInfo[i]])
  2396. }, _frag); //
  2397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2400. } //_hkStudentDeskIconInfo
  2401. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2402. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2403. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2404. continue
  2405. }
  2406. _content = $$("div", {
  2407. className: "U_MD_D_KO",
  2408. "onmousedown": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2412. "onclick": U.UF.C.closure(function (obj) {
  2413. //防止拖动图标即打开了桌面应用
  2414. U.MD.D.click(this, obj);
  2415. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2416. }, _frag); //
  2417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2420. }
  2421. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2422. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2423. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2424. continue
  2425. }
  2426. _content = $$("div", {
  2427. className: "U_MD_D_KO",
  2428. "onmousedown": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_hkTeacherDeskIconInfo[i]]),
  2432. "onclick": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_hkTeacherDeskIconInfo[i]])
  2436. }, _frag); //
  2437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2440. }
  2441. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2442. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2443. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2444. continue
  2445. }
  2446. _content = $$("div", {
  2447. className: "U_MD_D_KO",
  2448. "onmousedown": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_hkaceTeacherDeskIconInfo[i]]),
  2452. "onclick": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_hkaceTeacherDeskIconInfo[i]])
  2456. }, _frag); //
  2457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2460. }
  2461. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2462. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2463. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2464. continue
  2465. }
  2466. _content = $$("div", {
  2467. className: "U_MD_D_KO",
  2468. "onmousedown": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_cocobizTeacherDeskIconInfo[i]]),
  2472. "onclick": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_cocobizTeacherDeskIconInfo[i]])
  2476. }, _frag); //
  2477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2480. }
  2481. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2482. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2483. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2484. continue
  2485. }
  2486. _content = $$("div", {
  2487. className: "U_MD_D_KO",
  2488. "onmousedown": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2492. "onclick": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2496. }, _frag); //
  2497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2500. }
  2501. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2502. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2503. _content = $$("div", {
  2504. className: "U_MD_D_KO",
  2505. "onmousedown": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_gdjgAdminDeskIconInfo[i]]),
  2509. "onclick": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_gdjgAdminDeskIconInfo[i]])
  2513. }, _frag); //
  2514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2517. }
  2518. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2519. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2520. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2521. continue
  2522. }
  2523. _content = $$("div", {
  2524. className: "U_MD_D_KO",
  2525. "onmousedown": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_gdjgTeacherDeskIconInfo[i]]),
  2529. "onclick": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_gdjgTeacherDeskIconInfo[i]])
  2533. }, _frag); //
  2534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2537. }
  2538. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2539. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2540. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2541. continue
  2542. }
  2543. _content = $$("div", {
  2544. className: "U_MD_D_KO",
  2545. "onmousedown": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_szherTeacherDeskIconInfo[i]]),
  2549. "onclick": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_szherTeacherDeskIconInfo[i]])
  2553. }, _frag); //
  2554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2557. }
  2558. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2559. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2560. _content = $$("div", {
  2561. className: "U_MD_D_KO",
  2562. "onmousedown": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_heyuannAdminDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_heyuannAdminDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2576. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2577. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2578. continue
  2579. }
  2580. _content = $$("div", {
  2581. className: "U_MD_D_KO",
  2582. "onmousedown": U.UF.C.closure(function (obj) {
  2583. //防止拖动图标即打开了桌面应用
  2584. U.MD.D.click(this, obj);
  2585. }, [_heyuanTeacherDeskIconInfo[i]]),
  2586. "onclick": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_heyuanTeacherDeskIconInfo[i]])
  2590. }, _frag); //
  2591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2594. } //
  2595. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2596. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2597. _content = $$("div", {
  2598. className: "U_MD_D_KO",
  2599. "onmousedown": U.UF.C.closure(function (obj) {
  2600. //防止拖动图标即打开了桌面应用
  2601. U.MD.D.click(this, obj);
  2602. }, [_dseiAdminDeskIconInfo[i]]),
  2603. "onclick": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_dseiAdminDeskIconInfo[i]])
  2607. }, _frag); //
  2608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2611. }
  2612. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2613. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2614. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2615. continue
  2616. }
  2617. _content = $$("div", {
  2618. className: "U_MD_D_KO",
  2619. "onmousedown": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_dseiTeacherDeskIconInfo[i]]),
  2623. "onclick": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_dseiTeacherDeskIconInfo[i]])
  2627. }, _frag); //
  2628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2631. } //
  2632. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2633. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2634. _content = $$("div", {
  2635. className: "U_MD_D_KO",
  2636. "onmousedown": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_chjyjAdminDeskIconInfo[i]]),
  2640. "onclick": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_chjyjAdminDeskIconInfo[i]])
  2644. }, _frag); //
  2645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2648. }//
  2649. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2650. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2651. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2652. continue
  2653. }
  2654. _content = $$("div", {
  2655. className: "U_MD_D_KO",
  2656. "onmousedown": U.UF.C.closure(function (obj) {
  2657. //防止拖动图标即打开了桌面应用
  2658. U.MD.D.click(this, obj);
  2659. }, [_chjyjTeacherDeskIconInfo[i]]),
  2660. "onclick": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_chjyjTeacherDeskIconInfo[i]])
  2664. }, _frag); //
  2665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2668. }
  2669. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2670. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2671. _content = $$("div", {
  2672. className: "U_MD_D_KO",
  2673. "onmousedown": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_szjkyAdminDeskIconInfo[i]]),
  2677. "onclick": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_szjkyAdminDeskIconInfo[i]])
  2681. }, _frag); //
  2682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2685. }//
  2686. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2687. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2688. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2689. continue
  2690. }
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_szjkyTeacherDeskIconInfo[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_szjkyTeacherDeskIconInfo[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2705. }
  2706. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2707. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_futianAdminDeskIconInfo[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_futianAdminDeskIconInfo[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2722. }
  2723. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2724. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2725. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2726. continue
  2727. }
  2728. _content = $$("div", {
  2729. className: "U_MD_D_KO",
  2730. "onmousedown": U.UF.C.closure(function (obj) {
  2731. //防止拖动图标即打开了桌面应用
  2732. U.MD.D.click(this, obj);
  2733. }, [_futianTeacherDeskIconInfo[i]]),
  2734. "onclick": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_futianTeacherDeskIconInfo[i]])
  2738. }, _frag); //
  2739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2742. }
  2743. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2744. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2745. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2746. continue
  2747. }
  2748. _content = $$("div", {
  2749. className: "U_MD_D_KO",
  2750. "onmousedown": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_MingdeTeacherDeskIcon[i]]),
  2754. "onclick": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_MingdeTeacherDeskIcon[i]])
  2758. }, _frag); //
  2759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2762. }
  2763. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2764. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_lhsAdminDesktopIconInfo[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_lhsAdminDesktopIconInfo[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2779. }
  2780. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2781. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2782. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2783. continue
  2784. }
  2785. _content = $$("div", {
  2786. className: "U_MD_D_KO",
  2787. "onmousedown": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_lhsteacherDesktopIconInfo[i]]),
  2791. "onclick": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_lhsteacherDesktopIconInfo[i]])
  2795. }, _frag); //
  2796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2799. }
  2800. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2801. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2802. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2803. continue
  2804. }
  2805. _content = $$("div", {
  2806. className: "U_MD_D_KO",
  2807. "onmousedown": U.UF.C.closure(function (obj) {
  2808. //防止拖动图标即打开了桌面应用
  2809. U.MD.D.click(this, obj);
  2810. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2811. "onclick": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_zhoujiateacherDesktopIconInfo[i]])
  2815. }, _frag); //
  2816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2819. }
  2820. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2821. for (i = 0; i < _hanDeskIcon.length; i++) {
  2822. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2823. continue
  2824. }
  2825. _content = $$("div", {
  2826. className: "U_MD_D_KO",
  2827. "onmousedown": U.UF.C.closure(function (obj) {
  2828. //防止拖动图标即打开了桌面应用
  2829. U.MD.D.click(this, obj);
  2830. }, [_hanDeskIcon[i]]),
  2831. "onclick": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_hanDeskIcon[i]])
  2835. }, _frag); //
  2836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2839. }
  2840. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2841. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2842. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2843. continue
  2844. }
  2845. _content = $$("div", {
  2846. className: "U_MD_D_KO",
  2847. "onmousedown": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_orgStemDeskIcon[i]]),
  2851. "onclick": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_orgStemDeskIcon[i]])
  2855. }, _frag); //
  2856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2859. }
  2860. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2861. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2862. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2863. continue
  2864. }
  2865. _content = $$("div", {
  2866. className: "U_MD_D_KO",
  2867. "onmousedown": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_szulsDeskIcon[i]]),
  2871. "onclick": U.UF.C.closure(function (obj) {
  2872. //防止拖动图标即打开了桌面应用
  2873. U.MD.D.click(this, obj);
  2874. }, [_szulsDeskIcon[i]])
  2875. }, _frag); //
  2876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2879. }
  2880. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2881. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2882. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2883. continue
  2884. }
  2885. _content = $$("div", {
  2886. className: "U_MD_D_KO",
  2887. "onmousedown": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_orgDesktopIconInfo[i]]),
  2891. "onclick": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_orgDesktopIconInfo[i]])
  2895. }, _frag); //
  2896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2899. }
  2900. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2901. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2902. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2903. continue
  2904. }
  2905. _content = $$("div", {
  2906. className: "U_MD_D_KO",
  2907. "onmousedown": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_schoolDesktopIconInfo[i]]),
  2911. "onclick": U.UF.C.closure(function (obj) {
  2912. //防止拖动图标即打开了桌面应用
  2913. U.MD.D.click(this, obj);
  2914. }, [_schoolDesktopIconInfo[i]])
  2915. }, _frag); //
  2916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2919. }
  2920. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2921. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2922. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2923. continue
  2924. }
  2925. _content = $$("div", {
  2926. className: "U_MD_D_KO",
  2927. "onmousedown": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_GMteacherDesktopIconInfo[i]]),
  2931. "onclick": U.UF.C.closure(function (obj) {
  2932. //防止拖动图标即打开了桌面应用
  2933. U.MD.D.click(this, obj);
  2934. }, [_GMteacherDesktopIconInfo[i]])
  2935. }, _frag); //
  2936. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2937. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2938. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2939. }
  2940. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2941. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2942. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2943. continue
  2944. }
  2945. _content = $$("div", {
  2946. className: "U_MD_D_KO",
  2947. "onmousedown": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_SONGteacherDesktopIconInfo[i]]),
  2951. "onclick": U.UF.C.closure(function (obj) {
  2952. //防止拖动图标即打开了桌面应用
  2953. U.MD.D.click(this, obj);
  2954. }, [_SONGteacherDesktopIconInfo[i]])
  2955. }, _frag); //
  2956. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2957. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2958. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2959. }
  2960. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2961. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2962. _content = $$("div", {
  2963. className: "U_MD_D_KO",
  2964. "onmousedown": U.UF.C.closure(function (obj) {
  2965. //防止拖动图标即打开了桌面应用
  2966. U.MD.D.click(this, obj);
  2967. }, [_GMstudentDesktopIconInfo[i]]),
  2968. "onclick": U.UF.C.closure(function (obj) {
  2969. //防止拖动图标即打开了桌面应用
  2970. U.MD.D.click(this, obj);
  2971. }, [_GMstudentDesktopIconInfo[i]])
  2972. }, _frag); //
  2973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2976. }
  2977. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2978. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2979. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2980. continue
  2981. }
  2982. _content = $$("div", {
  2983. className: "U_MD_D_KO",
  2984. "onmousedown": U.UF.C.closure(function (obj) {
  2985. //防止拖动图标即打开了桌面应用
  2986. U.MD.D.click(this, obj);
  2987. }, [_tcTeacherDeskIconInfo[i]]),
  2988. "onclick": U.UF.C.closure(function (obj) {
  2989. //防止拖动图标即打开了桌面应用
  2990. U.MD.D.click(this, obj);
  2991. }, [_tcTeacherDeskIconInfo[i]])
  2992. }, _frag); //
  2993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2996. }
  2997. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2998. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2999. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3000. continue
  3001. }
  3002. _content = $$("div", {
  3003. className: "U_MD_D_KO",
  3004. "onmousedown": U.UF.C.closure(function (obj) {
  3005. //防止拖动图标即打开了桌面应用
  3006. U.MD.D.click(this, obj);
  3007. }, [_tcOrganizerDeskIconInfo[i]]),
  3008. "onclick": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_tcOrganizerDeskIconInfo[i]])
  3012. }, _frag); //
  3013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3016. }
  3017. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3018. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3019. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3020. continue
  3021. }
  3022. _content = $$("div", {
  3023. className: "U_MD_D_KO",
  3024. "onmousedown": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_szscTeacherDeskIconInfo[i]]),
  3028. "onclick": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_szscTeacherDeskIconInfo[i]])
  3032. }, _frag); //
  3033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3036. }
  3037. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3038. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3039. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3040. continue
  3041. }
  3042. _content = $$("div", {
  3043. className: "U_MD_D_KO",
  3044. "onmousedown": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_szscOrganizerDeskIconInfo[i]]),
  3048. "onclick": U.UF.C.closure(function (obj) {
  3049. //防止拖动图标即打开了桌面应用
  3050. U.MD.D.click(this, obj);
  3051. }, [_szscOrganizerDeskIconInfo[i]])
  3052. }, _frag); //
  3053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3056. }
  3057. } else {
  3058. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3059. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3060. continue
  3061. }
  3062. _content = $$("div", {
  3063. className: "U_MD_D_KO",
  3064. "onmousedown": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_teacherDesktopIconInfo[i]]),
  3068. "onclick": U.UF.C.closure(function (obj) {
  3069. //防止拖动图标即打开了桌面应用
  3070. U.MD.D.click(this, obj);
  3071. }, [_teacherDesktopIconInfo[i]])
  3072. }, _frag); //
  3073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3076. }
  3077. }
  3078. } else {
  3079. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3080. _content = $$("div", {
  3081. className: "U_MD_D_KO",
  3082. style: { 'width': '124px', 'height': '145px' },
  3083. "onmousedown": U.UF.C.closure(function (obj) {
  3084. //防止拖动图标即打开了桌面应用
  3085. U.MD.D.click(this, obj);
  3086. }, [_easyDesktopIconInfo[i]]),
  3087. "onclick": U.UF.C.closure(function (obj) {
  3088. //防止拖动图标即打开了桌面应用
  3089. U.MD.D.click(this, obj);
  3090. }, [_easyDesktopIconInfo[i]])
  3091. }, _frag); //
  3092. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3093. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3094. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3095. }
  3096. }
  3097. if (type == 1) {
  3098. //加载好后给图标定位
  3099. U.MD.D.iconPostion($(_frag).Child());
  3100. } else {
  3101. //加载好后给图标定位
  3102. U.MD.D.iconPostion2($(_frag).Child());
  3103. }
  3104. //把图标加载到页面
  3105. el.appendChild(_frag);
  3106. }
  3107. /**
  3108. * 显示任务栏
  3109. *
  3110. * @param {element} 桌面元素
  3111. */
  3112. U.MD.D.I.displayTaskbar = function (el) {
  3113. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3114. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3115. //任务栏位置变化
  3116. U.selectEl(el).css({ "bottom": "0px" });
  3117. //桌面位置变话
  3118. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3119. }
  3120. }
  3121. //#region 桌面图标拖动逻辑
  3122. /**
  3123. * 桌面排列图标
  3124. *
  3125. * @param {element} 桌面元素
  3126. * @param {object} 上下相距的距离
  3127. * @param {object} 左右相距的距离
  3128. * @return {object} 命名空间
  3129. */
  3130. U.MD.D.iconPostion = function (childs, top, left) {
  3131. var i; //用于循环处理
  3132. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3133. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3134. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3135. for (i = 0; i < childs.length; i++) {
  3136. //如果竖排top超过了范围处理
  3137. if (top + 95 > US.height - 10) {
  3138. //left超过了页面范围处理,则向上重叠打印处理
  3139. if ((left + 180) > US.width) {
  3140. top -= 110;
  3141. left -= 90;
  3142. }
  3143. //没有超过范围,那么left+90添加到下一个竖排打印
  3144. else {
  3145. left += 90;
  3146. top = 15;
  3147. };
  3148. }
  3149. //给图标的位置赋值
  3150. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3151. if (i < childs.length - 1) {
  3152. //页面图标每次向下加95
  3153. top += 95;
  3154. }
  3155. }
  3156. //返回最后调用的图标的位置
  3157. return [top, left];
  3158. }
  3159. /**
  3160. * 桌面排列图标
  3161. *
  3162. * @param {element} 桌面元素
  3163. * @param {object} 上下相距的距离
  3164. * @param {object} 左右相距的距离
  3165. * @return {object} 命名空间
  3166. */
  3167. U.MD.D.iconPostion2 = function (childs, top, left) {
  3168. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3169. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3170. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3171. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3172. for (i = 0; i < childs.length; i++) {
  3173. //如果竖排top超过了范围处理
  3174. if (left + 150 > US.width - 10) {
  3175. //left超过了页面范围处理,则向上重叠打印处理
  3176. if ((top + 180) > US.Height) {
  3177. top -= 150;
  3178. left -= 150;
  3179. }
  3180. //没有超过范围,那么left+90添加到下一个竖排打印
  3181. else {
  3182. top += 150;
  3183. left = ol;
  3184. };
  3185. }
  3186. //给图标的位置赋值
  3187. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3188. if (i < childs.length - 1) {
  3189. //页面图标每次向下加95
  3190. left += 150;
  3191. }
  3192. }
  3193. //返回最后调用的图标的位置
  3194. return [top, left];
  3195. }
  3196. /**
  3197. * 桌面点击事件逻辑
  3198. *
  3199. * @param {element} 桌面元素
  3200. * @param {object} 上下相距的距离
  3201. * @param {object} 左右相距的距离
  3202. * @return {object} 命名空间
  3203. */
  3204. U.MD.D.click = function (el, obj) {
  3205. var _buttonnumber = event.button; //点击的按钮的事件值
  3206. var _userinfo = US.userInfo;
  3207. U.UF.EV.stopBubble(); //阻止向上冒泡
  3208. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3209. if (_buttonnumber < 2) {
  3210. //如果是click事件的处理
  3211. if (event.type == "click") {
  3212. //如果元素在mousemove事件中没有移动则出发click事件
  3213. if (!U.MD.D.I.IsDrag) {
  3214. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3215. U.alert("请先登录您的账号!");
  3216. setTimeout(() => {
  3217. U.MD.U.L.login();
  3218. }, 2000);
  3219. } else {
  3220. //打开应用处理
  3221. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3222. }
  3223. }
  3224. }
  3225. //如果是mouse事件的处理
  3226. else {
  3227. if (US.Config.type == '1') {
  3228. //拖动处理,添加拖动和拖动结束事件
  3229. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3230. }
  3231. }
  3232. U.MD.D.I.IsDrag = false;
  3233. }
  3234. }
  3235. /**
  3236. * 拖动的处理
  3237. *
  3238. */
  3239. U.MD.D.iconMove = function () {
  3240. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3241. U.MD.D.I.IsDrag = true;
  3242. }
  3243. /**
  3244. * 拖动结束后,这里是定位处理,以网状的形式定位
  3245. *
  3246. * @param {element} 拖动的元素
  3247. * @return {object} 命名空间
  3248. */
  3249. U.MD.D.iconUp = function (el) {
  3250. var _top = 15,
  3251. _left = 20,
  3252. _margin,
  3253. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3254. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3255. if (_positioninfo["OT"] > 15) {
  3256. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3257. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3258. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3259. }
  3260. if (_positioninfo["OL"] > 20) {
  3261. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3262. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3263. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3264. }
  3265. //while循环判断么一个重叠的元素
  3266. do {
  3267. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3268. _top = _positioninfo[0] + 95; //得到定位后的top
  3269. _left = _positioninfo[1]; //得到定位后的left
  3270. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3271. }
  3272. /**
  3273. * 判断拖动后图标是否重叠
  3274. *
  3275. * @param {element} 拖动的元素
  3276. * @param {element} 桌面所有的元素
  3277. * @param {array} 拖动元素的位置
  3278. ----------[0] 上 top
  3279. ----------[1] 左 left
  3280. * @return {object} 命名空间
  3281. */
  3282. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3283. //循环所有的图标
  3284. for (var i = 0; i < childs.length; i++) {
  3285. //判断有没有和该图标诶子重叠的元素
  3286. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3287. return childs[i]; //如果有返回
  3288. }
  3289. }
  3290. }
  3291. //#endregion
  3292. //#endregion
  3293. //#region 桌面应用
  3294. /**
  3295. * 打开应用
  3296. *
  3297. * @param {string} 类型
  3298. -----------------Disk 网盘系统
  3299. -----------------PDisk 学习系统网盘
  3300. -----------------Poto 图片
  3301. -----------------Video 视频
  3302. -----------------Music 音乐
  3303. -----------------Word word
  3304. -----------------Excel excel
  3305. -----------------Txt 记事本
  3306. -----------------PB 学习系统
  3307. -----------------Blog 朋友圈系统
  3308. -----------------FTP ftp系统
  3309. -----------------Group 好友群
  3310. -----------------SY 首页系统
  3311. -----------------Set 个人设置
  3312. -----------------XSet 系统设置
  3313. -----------------App 我们所有的app
  3314. -----------------BC c.1473.cn 平台
  3315. -----------------CWeb d.1473.cn 变成平台
  3316. -----------------其他的外联系统 我们统一用iframe打开
  3317. * @param {array} 类型
  3318. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3319. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3320. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3321. 如果第一个参数为其他,则无第二个参数
  3322. * @returns {array}
  3323. */
  3324. window.addEventListener('message', function (e) { // 监听 message 事件
  3325. // alert(e.data.type);
  3326. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3327. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3328. //3是展示全部阶段 2学生 1老师 4专家
  3329. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3330. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3331. //3是展示全部阶段 2学生 1老师 4专家
  3332. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3333. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3334. //3是展示全部阶段 2学生 1老师 4专家
  3335. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3336. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3337. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3338. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3339. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3340. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3341. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3342. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3343. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3344. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3345. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3346. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3347. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3348. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3349. //3是展示全部阶段 2学生 1老师 4专家
  3350. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3351. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3352. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3353. U.MD.D.I.selectUser();
  3354. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3355. var _formel = document.getElementById("study");
  3356. U.UF.F.windowZooming(_formel);
  3357. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3358. var _formel = document.getElementById("studyDetail");
  3359. U.UF.F.windowZooming(_formel);
  3360. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3361. var _formel = document.getElementById("studyDetail");
  3362. U.UF.F.windowZooming(_formel);
  3363. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3364. var _formel = document.getElementById("studentStudy");
  3365. U.UF.F.windowZooming(_formel);
  3366. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3367. // var _formel = document.getElementById("study");
  3368. //如果最大化了,那么就把他缩小
  3369. // if (_formel.ismaximize) {
  3370. // return;
  3371. // }
  3372. // U.UF.F.windowZooming(_formel);
  3373. // U.UF.F.topWindow(_formel);
  3374. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3375. // var _formel = document.getElementById("studyDetail");
  3376. //如果最大化了,那么就把他缩小
  3377. // if (_formel.ismaximize) {
  3378. // return;
  3379. // }
  3380. // U.UF.F.windowZooming(_formel);
  3381. // U.UF.F.topWindow(_formel);
  3382. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3383. // var _formel = document.getElementById("studentStudy");
  3384. // if (_formel.ismaximize) {
  3385. // return;
  3386. // }
  3387. // U.UF.F.windowZooming(_formel);
  3388. // U.UF.F.topWindow(_formel);
  3389. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3390. var _formel = document.getElementById("study");
  3391. // if (_formel.ismaximize) {
  3392. // return;
  3393. // }
  3394. // U.UF.F.windowZooming(_formel);
  3395. U.UF.F.topWindow(_formel);
  3396. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3397. var _formel = document.getElementById("studentIndex");
  3398. U.UF.F.windowZooming(_formel);
  3399. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3400. var _formel = document.getElementById("studyDetailS");
  3401. U.UF.F.windowZooming(_formel);
  3402. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3403. var _formel = document.getElementById("studioIndex");
  3404. U.UF.F.windowZooming(_formel);
  3405. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3406. var _formel = document.getElementById("studyDetailStudio");
  3407. U.UF.F.windowZooming(_formel);
  3408. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3409. var _formel = document.getElementById("studyDetailStudio");
  3410. U.UF.F.windowZooming(_formel);
  3411. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3412. var _formel = document.getElementById("studyDetailNT");
  3413. U.UF.F.windowZooming(_formel);
  3414. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3415. var _formel = document.getElementById("studyDetailS");
  3416. U.UF.F.windowZooming(_formel);
  3417. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3418. var _formel = document.getElementById("studyDetailS");
  3419. U.UF.F.topWindow(_formel);
  3420. } else if (e.data.tools && e.data.tools == "1") {
  3421. // U.MD.D.I.openApplication("whiteboard")
  3422. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3423. } else if (e.data.tools && e.data.tools == "2") {
  3424. U.MD.D.I.openApplication("note")
  3425. } else if (e.data.tools && e.data.tools == "3") {
  3426. // U.MD.D.I.openApplication("mind")
  3427. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3428. } else if (e.data.tools && e.data.tools == "4") {
  3429. U.MD.D.I.openApplication("investigation")
  3430. } else if (e.data.tools && e.data.tools == "6") {
  3431. // U.MD.D.I.openApplication("doc")
  3432. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3433. } else if (e.data.tools && e.data.tools == "7") {
  3434. // U.MD.D.I.openApplication("mindNetwork")
  3435. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3436. } else if (e.data.tools && e.data.tools == "8") {
  3437. U.MD.D.I.openApplication("library")
  3438. } else if (e.data.tools && e.data.tools == "17") {
  3439. U.MD.D.I.openApplication("stuLibrary")
  3440. } else if (e.data.tools && e.data.tools == "18") {
  3441. U.MD.D.I.openApplication("train")
  3442. } else if (e.data.tools && e.data.tools == "21") {
  3443. U.MD.D.I.openApplication("program")
  3444. } else if (e.data.tools && e.data.tools == "22") {
  3445. U.MD.D.I.openApplication("AIprogram2")
  3446. } else if (e.data.tools && e.data.tools == "23") {
  3447. U.MD.D.I.openApplication("Pythonprogram")
  3448. } else if (e.data.tools && e.data.tools == "24") {
  3449. U.MD.D.I.openApplication("AIprogram")
  3450. } else if (e.data.tools && e.data.tools == "25") {
  3451. U.MD.D.I.openApplication("sys")
  3452. } else if (e.data.tools && e.data.tools == "26") {
  3453. // U.MD.D.I.openApplication("courseDesign")
  3454. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3455. } else if (e.data.tools && e.data.tools == "31") {
  3456. U.MD.D.I.openApplication("netWorkPanel")
  3457. } else if (e.data.tools && e.data.tools == "32") {
  3458. U.MD.D.I.openApplication("codeEdit")
  3459. } else if (e.data.tools && e.data.tools == "57") {
  3460. U.MD.D.I.openApplication("CocoPi")
  3461. } else if (e.data.tools && e.data.tools == "63") {
  3462. U.MD.D.I.openApplication("Wood")
  3463. } else if (e.data.tools && e.data.tools == "58") {
  3464. U.MD.D.I.openApplication("car")
  3465. } else if (e.data.tools && e.data.tools == "59") {
  3466. U.MD.D.I.openApplication("lineSearch")
  3467. } else if (e.data.tools && e.data.tools == "60") {
  3468. U.MD.D.I.openApplication("deepLearning")
  3469. } else if (e.data.tools && e.data.tools == "61") {
  3470. U.MD.D.I.openApplication("allHistory")
  3471. } else if (e.data.tools && e.data.tools == "28") {
  3472. U.MD.D.I.openApplication("translation")
  3473. } else if (e.data.tools && e.data.tools == "37") {
  3474. U.MD.D.I.openApplication("mohe")
  3475. } else if (e.data.tools && e.data.tools == "38") {
  3476. U.MD.D.I.openApplication("24game")
  3477. } else if (e.data.tools && e.data.tools == "39") {
  3478. U.MD.D.I.openApplication("GeoGebra")
  3479. } else if (e.data.tools && e.data.tools == "43") {
  3480. U.MD.D.I.openApplication("studentEvaluate")
  3481. } else if (e.data.tools && e.data.tools == "44") {
  3482. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3483. } else if (e.data.tools && e.data.tools == "46") {
  3484. U.MD.D.I.openApplication("project")
  3485. } else if (e.data.tools && e.data.tools == "71") {
  3486. U.MD.D.I.openApplication("aigptCourse")
  3487. } else if (e.data.tools && e.data.tools == "1s") {
  3488. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3489. } else if (e.data.tools && e.data.tools == "3s") {
  3490. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3491. } else if (e.data.tools && e.data.tools == "6s") {
  3492. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3493. } else if (e.data.tools && e.data.tools == "1studio") {
  3494. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3495. } else if (e.data.tools && e.data.tools == "3studio") {
  3496. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3497. } else if (e.data.tools && e.data.tools == "6studio") {
  3498. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3499. } else if (e.data.tools && e.data.tools == "3y") {
  3500. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3501. } else if (e.data.tools && e.data.tools == "1y") {
  3502. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3503. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3504. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3505. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3506. U.MD.D.I.openApplication("AIAnalyse")
  3507. } else if (e.data.tools && e.data.tools == "1teacher") {
  3508. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3509. } else if (e.data.tools && e.data.tools == "3teacher") {
  3510. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3511. } else if (e.data.tools && e.data.tools == "7teacher") {
  3512. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3513. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3514. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3515. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3516. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3517. } else if (e.data.tools && e.data.tools == "1E") {
  3518. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3519. } else if (e.data.tools && e.data.tools == "3E") {
  3520. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3521. } else if (e.data.tools && e.data.tools == "57y") {
  3522. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3523. } else if (e.data.tools && e.data.tools == "57u") {
  3524. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3525. } else if (e.data.tools && e.data.tools == "57teacher") {
  3526. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3527. } else if (e.data.tools && e.data.tools == "64") {
  3528. U.MD.D.I.openApplication("AIChat")
  3529. } else if (e.data.tools && e.data.tools == "66") {
  3530. U.MD.D.I.openApplication("formulaEdi")
  3531. } else if (e.data.tools && e.data.tools == "67") {
  3532. U.MD.D.I.openApplication("molStr")
  3533. } else if (e.data.tools && e.data.tools == "68") {
  3534. U.MD.D.I.openApplication("timeAxis")
  3535. } else if (e.data.tools && e.data.tools == "openCourse") {
  3536. let _data = {
  3537. typea: e.data.typea || '',
  3538. typeb: e.data.typeb || '',
  3539. typed: e.data.typed || '',
  3540. }
  3541. U.MD.D.I.openInApplication("index", _data)
  3542. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3543. let _data = {
  3544. classid: e.data.classid || '',
  3545. }
  3546. U.MD.D.I.openInApplication("dataClass", _data)
  3547. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3548. let _data = {
  3549. cid: e.data.cid || '',
  3550. gid: e.data.gid || '',
  3551. }
  3552. U.MD.D.I.openInApplication("opencCscl", _data)
  3553. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3554. U.MD.D.I.openApplication("dataBoardTest")
  3555. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3556. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3557. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3558. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3559. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3560. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3561. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3562. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3563. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3564. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3565. }else if (e.data.tools && e.data.tools == "loginSz") {
  3566. U.MD.D.I.openInApplication("loginSz")
  3567. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3568. if($('#classroom_observation_board')[0]){
  3569. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3570. }
  3571. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3572. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3573. if($('#classroom_observation_ob_comment')[0]){
  3574. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3575. }
  3576. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3577. }
  3578. });
  3579. U.MD.D.I.selectUser = function () {
  3580. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3581. if (res.value[0].length > 0) {
  3582. US.userInfo = res.value[0][0];
  3583. $(".userName")[0].innerHTML = US.userInfo.username;
  3584. }
  3585. }, [], { "type": "GET", "withCredentials": true });
  3586. }
  3587. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3588. var _userinfo = US.userInfo, //登录用户信息
  3589. _userid = US.userInfo.userid, //登录用户id
  3590. _oid = _userinfo.organizeid,
  3591. _type = US.userInfo.type,
  3592. _org = US.userInfo.org,
  3593. _role = US.userInfo.role,
  3594. _classId = US.userInfo.classid;
  3595. if (_type == 4) {
  3596. tType = 4
  3597. }
  3598. switch (str) {
  3599. case "studyDetailNT": //无终端模式
  3600. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3601. setTimeout(() => {
  3602. U.MD.U.L.login();
  3603. }, 2000);
  3604. } else {
  3605. _formdiv = new U.UF.UI.form(
  3606. "课程详情",
  3607. $$("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 }), {
  3608. "id": "studyDetailNT",
  3609. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3610. "onresize": function () { }
  3611. }, {
  3612. closecallback: function () { }
  3613. }, { "style": { "height": "36px" } }).form; //创建窗体
  3614. _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); } }
  3615. break;
  3616. }
  3617. case "studyDetail":
  3618. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3619. setTimeout(() => {
  3620. U.MD.U.L.login();
  3621. }, 2000);
  3622. } else {
  3623. _formdiv = new U.UF.UI.form(
  3624. "课程详情",
  3625. $$("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 }), {
  3626. "id": "studyDetail",
  3627. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3628. "onresize": function () { }
  3629. }, {
  3630. closecallback: function () { }
  3631. }, { "style": { "height": "36px" } }).form; //创建窗体
  3632. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3633. break;
  3634. }
  3635. case "studyDetailTrain":
  3636. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3637. setTimeout(() => {
  3638. U.MD.U.L.login();
  3639. }, 2000);
  3640. } else {
  3641. _formdiv = new U.UF.UI.form(
  3642. "培训详情",
  3643. $$("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 }), {
  3644. "id": "studyDetailTrain",
  3645. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3646. "onresize": function () { }
  3647. }, {
  3648. closecallback: function () { }
  3649. }, { "style": { "height": "36px" } }).form; //创建窗体
  3650. _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); } }
  3651. break;
  3652. }
  3653. case "studyDetailS":
  3654. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3655. setTimeout(() => {
  3656. U.MD.U.L.login();
  3657. }, 2000);
  3658. } else {
  3659. _formdiv = new U.UF.UI.form(
  3660. "项目详情",
  3661. $$("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 }), {
  3662. "id": "studyDetailS",
  3663. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3664. "onresize": function () { }
  3665. }, {
  3666. closecallback: function () { }
  3667. }, { "style": { "height": "36px" } }).form; //创建窗体
  3668. _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); } }
  3669. break;
  3670. }
  3671. case "studyDetailStudio":
  3672. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3673. setTimeout(() => {
  3674. U.MD.U.L.login();
  3675. }, 2000);
  3676. } else {
  3677. _formdiv = new U.UF.UI.form(
  3678. "工作详情",
  3679. $$("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 }), {
  3680. "id": "studyDetailStudio",
  3681. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3682. "onresize": function () { }
  3683. }, {
  3684. closecallback: function () { }
  3685. }, { "style": { "height": "36px" } }).form; //创建窗体
  3686. _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); } }
  3687. break;
  3688. }
  3689. case "studyDetailS5":
  3690. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3691. setTimeout(() => {
  3692. U.MD.U.L.login();
  3693. }, 2000);
  3694. } else {
  3695. _formdiv = new U.UF.UI.form(
  3696. "项目详情",
  3697. $$("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 }), {
  3698. "id": "studyDetailS",
  3699. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3700. "onresize": function () { }
  3701. }, {
  3702. closecallback: function () { }
  3703. }, { "style": { "height": "36px" } }).form; //创建窗体
  3704. _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); } }
  3705. break;
  3706. }
  3707. case "studyDetailGM":
  3708. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3709. setTimeout(() => {
  3710. U.MD.U.L.login();
  3711. }, 2000);
  3712. } else {
  3713. _formdiv = new U.UF.UI.form(
  3714. "课程详情",
  3715. $$("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 }), {
  3716. "id": "studyDetail",
  3717. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3718. "onresize": function () { }
  3719. }, {
  3720. closecallback: function () { }
  3721. }, { "style": { "height": "36px" } }).form; //创建窗体
  3722. _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); } }
  3723. break;
  3724. }
  3725. case "hanUrl":
  3726. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3727. setTimeout(() => {
  3728. U.MD.U.L.login();
  3729. }, 2000);
  3730. } else {
  3731. _formdiv = new U.UF.UI.form(
  3732. "汉字宫",
  3733. $$("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" }), {
  3734. "id": "hanUrl",
  3735. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3736. "onresize": function () { }
  3737. }, {
  3738. closecallback: function () { }
  3739. }, { "style": { "height": "36px" } }).form; //创建窗体
  3740. _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); } }
  3741. break;
  3742. }
  3743. case "index":
  3744. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3745. setTimeout(() => {
  3746. U.MD.U.L.login();
  3747. }, 2000);
  3748. } else {
  3749. _formdiv = new U.UF.UI.form(
  3750. "课程中心",
  3751. $$("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 }), {
  3752. "id": "study",
  3753. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3754. "onresize": function () { }
  3755. }, {
  3756. closecallback: function () { }
  3757. }, { "style": { "height": "36px" } }).form; //创建窗体
  3758. _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); } }
  3759. break;
  3760. }
  3761. case "dataClass":
  3762. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3763. setTimeout(() => {
  3764. U.MD.U.L.login();
  3765. }, 2000);
  3766. } else {
  3767. _formdiv = new U.UF.UI.form(
  3768. "数据报告",
  3769. $$("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 }), {
  3770. "id": "dataClass",
  3771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3772. "onresize": function () { }
  3773. }, {
  3774. closecallback: function () { }
  3775. }, { "style": { "height": "36px" } }).form; //创建窗体
  3776. _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); } }
  3777. break;
  3778. }
  3779. case "opencCscl":
  3780. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3781. setTimeout(() => {
  3782. U.MD.U.L.login();
  3783. }, 2000);
  3784. } else {
  3785. _formdiv = new U.UF.UI.form(
  3786. "协同建构",
  3787. $$("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 }), {
  3788. "id": "futureClass",
  3789. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3790. "onresize": function () { }
  3791. }, {
  3792. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3793. }, { "style": { "height": "36px" } }).form; //创建窗体
  3794. _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); } }
  3795. break;
  3796. }
  3797. case "openCourseUpdate":
  3798. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3799. setTimeout(() => {
  3800. U.MD.U.L.login();
  3801. }, 2000);
  3802. } else {
  3803. _formdiv = new U.UF.UI.form(
  3804. "课程管理",
  3805. $$("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 }), {
  3806. "id": "openCourseUpdate",
  3807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3808. "onresize": function () { }
  3809. }, {
  3810. closecallback: function () { }
  3811. }, { "style": { "height": "36px" } }).form; //创建窗体
  3812. break;
  3813. }
  3814. case "openNewCourseUpdate":
  3815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3816. setTimeout(() => {
  3817. U.MD.U.L.login();
  3818. }, 2000);
  3819. } else {
  3820. _formdiv = new U.UF.UI.form(
  3821. "课程管理",
  3822. $$("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 }), {
  3823. "id": "openCourseUpdate",
  3824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3825. "onresize": function () { }
  3826. }, {
  3827. closecallback: function () { }
  3828. }, { "style": { "height": "36px" } }).form; //创建窗体
  3829. break;
  3830. }
  3831. case "openCourseEUpdate":
  3832. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3833. setTimeout(() => {
  3834. U.MD.U.L.login();
  3835. }, 2000);
  3836. } else {
  3837. _formdiv = new U.UF.UI.form(
  3838. "课程管理",
  3839. $$("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 }), {
  3840. "id": "openCourseUpdate",
  3841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3842. "onresize": function () { }
  3843. }, {
  3844. closecallback: function () { }
  3845. }, { "style": { "height": "36px" } }).form; //创建窗体
  3846. break;
  3847. }
  3848. case "openCourseAiUpdate":
  3849. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3850. setTimeout(() => {
  3851. U.MD.U.L.login();
  3852. }, 2000);
  3853. } else {
  3854. _formdiv = new U.UF.UI.form(
  3855. "课程管理",
  3856. $$("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 }), {
  3857. "id": "openCourseUpdate",
  3858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3859. "onresize": function () { }
  3860. }, {
  3861. closecallback: function () { }
  3862. }, { "style": { "height": "36px" } }).form; //创建窗体
  3863. break;
  3864. }
  3865. case "openCourseNewUpdate":
  3866. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3867. setTimeout(() => {
  3868. U.MD.U.L.login();
  3869. }, 2000);
  3870. } else {
  3871. _formdiv = new U.UF.UI.form(
  3872. "课程管理",
  3873. $$("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 }), {
  3874. "id": "openCourseUpdate",
  3875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3876. "onresize": function () { }
  3877. }, {
  3878. closecallback: function () { }
  3879. }, { "style": { "height": "36px" } }).form; //创建窗体
  3880. break;
  3881. }
  3882. case "inviteLoginSz":
  3883. _formdiv = new U.UF.UI.form(
  3884. "随机码登录",
  3885. $$("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 }), {
  3886. "id": "loginSz",
  3887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3888. "onresize": function () { }
  3889. }, {
  3890. closecallback: function () { }
  3891. }, { "style": { "height": "36px" } }).form; //创建窗体
  3892. break;
  3893. case "loginSz":
  3894. _formdiv = new U.UF.UI.form(
  3895. "教师登录",
  3896. $$("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" }), {
  3897. "id": "loginSz",
  3898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3899. "onresize": function () { }
  3900. }, {
  3901. closecallback: function () { }
  3902. }, { "style": { "height": "36px" } }).form; //创建窗体
  3903. break;
  3904. case "teacher":
  3905. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3906. setTimeout(() => {
  3907. U.MD.U.L.login();
  3908. }, 2000);
  3909. } else {
  3910. _formdiv = new U.UF.UI.form(
  3911. "教师管理",
  3912. $$("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 }), {
  3913. "id": "teacher",
  3914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3915. "onresize": function () { }
  3916. }, {
  3917. closecallback: function () { }
  3918. }, { "style": { "height": "36px" } }).form; //创建窗体
  3919. break;
  3920. }
  3921. case "dataBoardSZArea":
  3922. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3923. setTimeout(() => {
  3924. U.MD.U.L.login();
  3925. }, 2000);
  3926. } else {
  3927. _formdiv = new U.UF.UI.form(
  3928. "综合数据看板",
  3929. $$("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 }), {
  3930. "id": "dataBoardSZArea",
  3931. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3932. "onresize": function () { }
  3933. }, {
  3934. closecallback: function () { }
  3935. }, { "style": { "height": "36px" } }).form; //创建窗体
  3936. break;
  3937. }
  3938. case "dataBoardSZCity":
  3939. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3940. setTimeout(() => {
  3941. U.MD.U.L.login();
  3942. }, 2000);
  3943. } else {
  3944. _formdiv = new U.UF.UI.form(
  3945. "综合数据看板",
  3946. $$("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 }), {
  3947. "id": "dataBoardSZCity",
  3948. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3949. "onresize": function () { }
  3950. }, {
  3951. closecallback: function () { }
  3952. }, { "style": { "height": "36px" } }).form; //创建窗体
  3953. break;
  3954. }
  3955. case "classroom_observation_board":
  3956. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3957. setTimeout(() => {
  3958. U.MD.U.L.login();
  3959. }, 2000);
  3960. } else {
  3961. _formdiv = new U.UF.UI.form(
  3962. "课堂观察",
  3963. $$("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 }), {
  3964. "id": "classroom_observation_board",
  3965. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3966. "onresize": function () { }
  3967. }, {
  3968. closecallback: function () { }
  3969. }, { "style": { "height": "36px" } }).form; //创建窗体
  3970. break;
  3971. }
  3972. case "classroom_observation_ob_comment":
  3973. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3974. setTimeout(() => {
  3975. U.MD.U.L.login();
  3976. }, 2000);
  3977. } else {
  3978. _formdiv = new U.UF.UI.form(
  3979. "课堂审核",
  3980. $$("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 }), {
  3981. "id": "classroom_observation_ob_comment",
  3982. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3983. "onresize": function () { }
  3984. }, {
  3985. closecallback: function () { }
  3986. }, { "style": { "height": "36px" } }).form; //创建窗体
  3987. break;
  3988. }
  3989. }
  3990. }
  3991. U.MD.D.I.openApplication = function (str, obj, info) {
  3992. obj = obj || {};
  3993. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3994. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3995. _userinfo = US.userInfo, //登录用户信息
  3996. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3997. _oid = obj.organizeid || _userinfo.organizeid,
  3998. _type = US.userInfo.type,
  3999. _org = US.userInfo.org,
  4000. _role = US.userInfo.role,
  4001. _classId = US.userInfo.classid,
  4002. _TscreenType = 1
  4003. _screenType = 2,
  4004. _SscreenType = 3;
  4005. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4006. return;
  4007. }
  4008. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4009. switch (str) {
  4010. case "studnetProject": //好友打开
  4011. _formdiv = new U.UF.UI.form(
  4012. "我的项目",
  4013. $$("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 }), {
  4014. "id": "studnetProject",
  4015. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4016. "onresize": function () { }
  4017. }, {
  4018. closecallback: function () { }
  4019. }, { "style": { "height": "36px" } }).form; //创建窗体
  4020. _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); } }
  4021. break;
  4022. case "studentEvaluate": //好友打开
  4023. _formdiv = new U.UF.UI.form(
  4024. "我的评价",
  4025. $$("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 }), {
  4026. "id": "studentEvaluate",
  4027. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4028. "onresize": function () { }
  4029. }, {
  4030. closecallback: function () { }
  4031. }, { "style": { "height": "36px" } }).form; //创建窗体
  4032. _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); } }
  4033. break;
  4034. case "my":
  4035. _formdiv = new U.UF.UI.form(
  4036. "我的资料",
  4037. $$("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 }), {
  4038. "id": "my",
  4039. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4040. "onresize": function () { }
  4041. }, {
  4042. closecallback: function () { }
  4043. }, { "style": { "height": "36px" } }).form; //创建窗体
  4044. _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); } }
  4045. break;
  4046. case "program":
  4047. _formdiv = new U.UF.UI.form(
  4048. "编程平台",
  4049. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4050. "id": "program",
  4051. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4052. "onresize": function () { }
  4053. }, {
  4054. closecallback: function () { }
  4055. }, { "style": { "height": "36px" } }).form; //创建窗体
  4056. _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); } }
  4057. break;
  4058. case "library":
  4059. _formdiv = new U.UF.UI.form(
  4060. "素材库",
  4061. $$("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 }), {
  4062. "id": "library",
  4063. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4064. "onresize": function () { }
  4065. }, {
  4066. closecallback: function () { }
  4067. }, { "style": { "height": "36px" } }).form; //创建窗体
  4068. _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); } }
  4069. break;
  4070. case "whiteboard":
  4071. _formdiv = new U.UF.UI.form(
  4072. "电子白板",
  4073. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4074. "id": "whiteboard",
  4075. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4076. "onresize": function () { }
  4077. }, {
  4078. closecallback: function () { }
  4079. }, { "style": { "height": "36px" } }).form; //创建窗体
  4080. _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); } }
  4081. break;
  4082. case "investigation":
  4083. _formdiv = new U.UF.UI.form(
  4084. "问卷调查",
  4085. $$("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 }), {
  4086. "id": "investigation",
  4087. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4088. "onresize": function () { }
  4089. }, {
  4090. closecallback: function () { }
  4091. }, { "style": { "height": "36px" } }).form; //创建窗体
  4092. _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); } }
  4093. break;
  4094. case "note":
  4095. _formdiv = new U.UF.UI.form(
  4096. "便签分类",
  4097. $$("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 }), {
  4098. "id": "note",
  4099. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4100. "onresize": function () { }
  4101. }, {
  4102. closecallback: function () { }
  4103. }, { "style": { "height": "36px" } }).form; //创建窗体
  4104. _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); } }
  4105. break;
  4106. // case "score":
  4107. // _formdiv = new U.UF.UI.form(
  4108. // "量规评分",
  4109. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4110. // "id": "score",
  4111. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4112. // "onresize": function() {}
  4113. // }, {
  4114. // closecallback: function() {}
  4115. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4116. // _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); } }
  4117. // break;
  4118. case "mind":
  4119. _formdiv = new U.UF.UI.form(
  4120. "思维导图",
  4121. $$("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"
  4122. "id": "mind",
  4123. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4124. "onresize": function () { }
  4125. }, {
  4126. closecallback: function () { }
  4127. }, { "style": { "height": "36px" } }).form; //创建窗体
  4128. _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); } }
  4129. break;
  4130. case "doc":
  4131. // U.MD.D.I.isRoom();
  4132. _formdiv = new U.UF.UI.form(
  4133. "协同文档",
  4134. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4135. "id": "doc",
  4136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4137. "onresize": function () { }
  4138. }, {
  4139. closecallback: function () { }
  4140. }, { "style": { "height": "36px" } }).form; //创建窗体
  4141. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4142. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4143. // })
  4144. _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); } }
  4145. break;
  4146. case "studentStudy":
  4147. _formdiv = new U.UF.UI.form(
  4148. "课程中心",
  4149. $$("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
  4150. "id": "studentStudy",
  4151. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4152. "onresize": function () { }
  4153. }, {
  4154. closecallback: function () { }
  4155. }, { "style": { "height": "36px" } }).form; //创建窗体
  4156. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4157. break;
  4158. case "train": //好友打开
  4159. _formdiv = new U.UF.UI.form(
  4160. "训练平台",
  4161. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4162. "id": "train",
  4163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4164. "onresize": function () { }
  4165. }, {
  4166. closecallback: function () { }
  4167. }, { "style": { "height": "36px" } }).form; //创建窗体
  4168. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4169. break;
  4170. case "mindNetwork": //好友打开
  4171. _formdiv = new U.UF.UI.form(
  4172. "思维网格",
  4173. $$("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 }), {
  4174. "id": "mindNetwork",
  4175. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4176. "onresize": function () { }
  4177. }, {
  4178. closecallback: function () { }
  4179. }, { "style": { "height": "36px" } }).form; //创建窗体
  4180. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4181. break;
  4182. case "studentClassRoom": //好友打开
  4183. _formdiv = new U.UF.UI.form(
  4184. "实时课堂",
  4185. $$("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 }), {
  4186. "id": "studentClassRoom",
  4187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4188. "onresize": function () { }
  4189. }, {
  4190. closecallback: function () { }
  4191. }, { "style": { "height": "36px" } }).form; //创建窗体
  4192. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4193. setTimeout(() => {
  4194. U.UF.F.windowZooming(_formdiv)
  4195. }, 0);
  4196. break;
  4197. }
  4198. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4199. switch (str) {
  4200. case "studnetProject": //好友打开
  4201. _formdiv = new U.UF.UI.form(
  4202. "我的项目",
  4203. $$("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 }), {
  4204. "id": "studnetProject",
  4205. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4206. "onresize": function () { }
  4207. }, {
  4208. closecallback: function () { }
  4209. }, { "style": { "height": "36px" } }).form; //创建窗体
  4210. _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); } }
  4211. break;
  4212. case "studentEvaluate": //好友打开
  4213. _formdiv = new U.UF.UI.form(
  4214. "我的评价",
  4215. $$("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 }), {
  4216. "id": "studentEvaluate",
  4217. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4218. "onresize": function () { }
  4219. }, {
  4220. closecallback: function () { }
  4221. }, { "style": { "height": "36px" } }).form; //创建窗体
  4222. _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); } }
  4223. break;
  4224. case "my":
  4225. _formdiv = new U.UF.UI.form(
  4226. "我的资料",
  4227. $$("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 }), {
  4228. "id": "my",
  4229. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4230. "onresize": function () { }
  4231. }, {
  4232. closecallback: function () { }
  4233. }, { "style": { "height": "36px" } }).form; //创建窗体
  4234. _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); } }
  4235. break;
  4236. case "program":
  4237. _formdiv = new U.UF.UI.form(
  4238. "编程平台",
  4239. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4240. "id": "program",
  4241. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4242. "onresize": function () { }
  4243. }, {
  4244. closecallback: function () { }
  4245. }, { "style": { "height": "36px" } }).form; //创建窗体
  4246. _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); } }
  4247. break;
  4248. case "library":
  4249. _formdiv = new U.UF.UI.form(
  4250. "素材库",
  4251. $$("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 }), {
  4252. "id": "library",
  4253. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4254. "onresize": function () { }
  4255. }, {
  4256. closecallback: function () { }
  4257. }, { "style": { "height": "36px" } }).form; //创建窗体
  4258. _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); } }
  4259. break;
  4260. case "whiteboard":
  4261. _formdiv = new U.UF.UI.form(
  4262. "电子白板",
  4263. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4264. "id": "whiteboard",
  4265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4266. "onresize": function () { }
  4267. }, {
  4268. closecallback: function () { }
  4269. }, { "style": { "height": "36px" } }).form; //创建窗体
  4270. _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); } }
  4271. break;
  4272. case "investigation":
  4273. _formdiv = new U.UF.UI.form(
  4274. "问卷调查",
  4275. $$("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 }), {
  4276. "id": "investigation",
  4277. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4278. "onresize": function () { }
  4279. }, {
  4280. closecallback: function () { }
  4281. }, { "style": { "height": "36px" } }).form; //创建窗体
  4282. _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); } }
  4283. break;
  4284. case "note":
  4285. _formdiv = new U.UF.UI.form(
  4286. "便签分类",
  4287. $$("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 }), {
  4288. "id": "note",
  4289. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4290. "onresize": function () { }
  4291. }, {
  4292. closecallback: function () { }
  4293. }, { "style": { "height": "36px" } }).form; //创建窗体
  4294. _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); } }
  4295. break;
  4296. // case "score":
  4297. // _formdiv = new U.UF.UI.form(
  4298. // "量规评分",
  4299. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4300. // "id": "score",
  4301. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4302. // "onresize": function() {}
  4303. // }, {
  4304. // closecallback: function() {}
  4305. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4306. // _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); } }
  4307. // break;
  4308. case "mind":
  4309. _formdiv = new U.UF.UI.form(
  4310. "思维导图",
  4311. $$("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"
  4312. "id": "mind",
  4313. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4314. "onresize": function () { }
  4315. }, {
  4316. closecallback: function () { }
  4317. }, { "style": { "height": "36px" } }).form; //创建窗体
  4318. _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); } }
  4319. break;
  4320. case "doc":
  4321. // U.MD.D.I.isRoom();
  4322. _formdiv = new U.UF.UI.form(
  4323. "协同文档",
  4324. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4325. "id": "doc",
  4326. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4327. "onresize": function () { }
  4328. }, {
  4329. closecallback: function () { }
  4330. }, { "style": { "height": "36px" } }).form; //创建窗体
  4331. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4332. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4333. })
  4334. _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); } }
  4335. break;
  4336. case "train": //好友打开
  4337. _formdiv = new U.UF.UI.form(
  4338. "训练平台",
  4339. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4340. "id": "train",
  4341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4342. "onresize": function () { }
  4343. }, {
  4344. closecallback: function () { }
  4345. }, { "style": { "height": "36px" } }).form; //创建窗体
  4346. _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); } }
  4347. break;
  4348. case "studentStudy":
  4349. _formdiv = new U.UF.UI.form(
  4350. "课程中心",
  4351. $$("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
  4352. "id": "studentStudy",
  4353. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4354. "onresize": function () { }
  4355. }, {
  4356. closecallback: function () { }
  4357. }, { "style": { "height": "36px" } }).form; //创建窗体
  4358. _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); } }
  4359. break;
  4360. case "mindNetwork": //好友打开
  4361. _formdiv = new U.UF.UI.form(
  4362. "思维网格",
  4363. $$("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 }), {
  4364. "id": "mindNetwork",
  4365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4366. "onresize": function () { }
  4367. }, {
  4368. closecallback: function () { }
  4369. }, { "style": { "height": "36px" } }).form; //创建窗体
  4370. _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); } }
  4371. break;
  4372. case "studentClassRoom": //好友打开
  4373. _formdiv = new U.UF.UI.form(
  4374. "实时课堂",
  4375. $$("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 }), {
  4376. "id": "studentClassRoom",
  4377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4378. "onresize": function () { }
  4379. }, {
  4380. closecallback: function () { }
  4381. }, { "style": { "height": "36px" } }).form; //创建窗体
  4382. _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); } }
  4383. setTimeout(() => {
  4384. U.UF.F.windowZooming(_formdiv)
  4385. }, 0);
  4386. break;
  4387. }
  4388. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4389. //选择应用处理
  4390. switch (str) {
  4391. case "project": //好友打开
  4392. _formdiv = new U.UF.UI.form(
  4393. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4394. $$("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 }), {
  4395. "id": "project",
  4396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4397. "onresize": function () { }
  4398. }, {
  4399. closecallback: function () { }
  4400. }, { "style": { "height": "36px" } }).form; //创建窗体
  4401. _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); } }
  4402. break;
  4403. case "student":
  4404. _formdiv = new U.UF.UI.form(
  4405. "学生管理",
  4406. $$("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 }), {
  4407. "id": "student",
  4408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4409. "onresize": function () { }
  4410. }, {
  4411. closecallback: function () { }
  4412. }, { "style": { "height": "36px" } }).form; //创建窗体
  4413. _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); } }
  4414. break;
  4415. case "evaluate":
  4416. _formdiv = new U.UF.UI.form(
  4417. "学生评价",
  4418. $$("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 }), {
  4419. "id": "evaluate",
  4420. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4421. "onresize": function () { }
  4422. }, {
  4423. closecallback: function () { }
  4424. }, { "style": { "height": "36px" } }).form; //创建窗体
  4425. _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); } }
  4426. break;
  4427. case "sys":
  4428. _formdiv = new U.UF.UI.form(
  4429. "目标管理",
  4430. $$("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 }), {
  4431. "id": "sys",
  4432. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4433. "onresize": function () { }
  4434. }, {
  4435. closecallback: function () { }
  4436. }, { "style": { "height": "36px" } }).form; //创建窗体
  4437. _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); } }
  4438. break;
  4439. case "courseDesign":
  4440. _formdiv = new U.UF.UI.form(
  4441. "项目设计",
  4442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4443. "id": "courseDesign",
  4444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4445. "onresize": function () { }
  4446. }, {
  4447. closecallback: function () { }
  4448. }, { "style": { "height": "36px" } }).form; //创建窗体
  4449. _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); } }
  4450. break;
  4451. case "program":
  4452. _formdiv = new U.UF.UI.form(
  4453. "编程平台",
  4454. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4455. "id": "program",
  4456. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4457. "onresize": function () { }
  4458. }, {
  4459. closecallback: function () { }
  4460. }, { "style": { "height": "36px" } }).form; //创建窗体
  4461. _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); } }
  4462. break;
  4463. case "class":
  4464. _formdiv = new U.UF.UI.form(
  4465. "班级管理",
  4466. $$("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 }), {
  4467. "id": "class",
  4468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4469. "onresize": function () { }
  4470. }, {
  4471. closecallback: function () { }
  4472. }, { "style": { "height": "36px" } }).form; //创建窗体
  4473. _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); } }
  4474. break;
  4475. case "Grade":
  4476. _formdiv = new U.UF.UI.form(
  4477. "年级管理",
  4478. $$("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 }), {
  4479. "id": "Grade",
  4480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4481. "onresize": function () { }
  4482. }, {
  4483. closecallback: function () { }
  4484. }, { "style": { "height": "36px" } }).form; //创建窗体
  4485. _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); } }
  4486. break;
  4487. case "teacherOffice":
  4488. _formdiv = new U.UF.UI.form(
  4489. "教研室",
  4490. $$("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 }), {
  4491. "id": "teacherOffice",
  4492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4493. "onresize": function () { }
  4494. }, {
  4495. closecallback: function () { }
  4496. }, { "style": { "height": "36px" } }).form; //创建窗体
  4497. _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); } }
  4498. break;
  4499. case "my":
  4500. _formdiv = new U.UF.UI.form(
  4501. "我的资料",
  4502. $$("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 }), {
  4503. "id": "my",
  4504. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4505. "onresize": function () { }
  4506. }, {
  4507. closecallback: function () { }
  4508. }, { "style": { "height": "36px" } }).form; //创建窗体
  4509. _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); } }
  4510. break;
  4511. case "notice":
  4512. _formdiv = new U.UF.UI.form(
  4513. "通知公告",
  4514. $$("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 }), {
  4515. "id": "notice",
  4516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4517. "onresize": function () { }
  4518. }, {
  4519. closecallback: function () { }
  4520. }, { "style": { "height": "36px" } }).form; //创建窗体
  4521. _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); } }
  4522. break;
  4523. case "library":
  4524. _formdiv = new U.UF.UI.form(
  4525. "素材库",
  4526. $$("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 }), {
  4527. "id": "library",
  4528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4529. "onresize": function () { }
  4530. }, {
  4531. closecallback: function () { }
  4532. }, { "style": { "height": "36px" } }).form; //创建窗体
  4533. _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); } }
  4534. break;
  4535. case "whiteboard":
  4536. _formdiv = new U.UF.UI.form(
  4537. "电子白板",
  4538. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4539. "id": "whiteboard",
  4540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4541. "onresize": function () { }
  4542. }, {
  4543. closecallback: function () { }
  4544. }, { "style": { "height": "36px" } }).form; //创建窗体
  4545. _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); } }
  4546. break;
  4547. case "investigation":
  4548. _formdiv = new U.UF.UI.form(
  4549. "问卷调查",
  4550. $$("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 }), {
  4551. "id": "investigation",
  4552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4553. "onresize": function () { }
  4554. }, {
  4555. closecallback: function () { }
  4556. }, { "style": { "height": "36px" } }).form; //创建窗体
  4557. _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); } }
  4558. break;
  4559. case "note":
  4560. _formdiv = new U.UF.UI.form(
  4561. "便签分类",
  4562. $$("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 }), {
  4563. "id": "note",
  4564. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4565. "onresize": function () { }
  4566. }, {
  4567. closecallback: function () { }
  4568. }, { "style": { "height": "36px" } }).form; //创建窗体
  4569. _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); } }
  4570. break;
  4571. // case "score":
  4572. // _formdiv = new U.UF.UI.form(
  4573. // "量规评分",
  4574. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4575. // "id": "score",
  4576. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4577. // "onresize": function() {}
  4578. // }, {
  4579. // closecallback: function() {}
  4580. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4581. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4582. // break;
  4583. case "mind":
  4584. _formdiv = new U.UF.UI.form(
  4585. "思维导图",
  4586. $$("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"
  4587. "id": "mind",
  4588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4589. "onresize": function () { }
  4590. }, {
  4591. closecallback: function () { }
  4592. }, { "style": { "height": "36px" } }).form; //创建窗体
  4593. _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); } }
  4594. break;
  4595. case "doc":
  4596. // U.MD.D.I.isRoom();
  4597. _formdiv = new U.UF.UI.form(
  4598. "协同文档",
  4599. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4600. "id": "doc",
  4601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4602. "onresize": function () { }
  4603. }, {
  4604. closecallback: function () { }
  4605. }, { "style": { "height": "36px" } }).form; //创建窗体
  4606. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4607. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4608. })
  4609. _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); } }
  4610. break;
  4611. case "study":
  4612. _formdiv = new U.UF.UI.form(
  4613. "课程中心",
  4614. $$("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
  4615. "id": "study",
  4616. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4617. "onresize": function () { }
  4618. }, {
  4619. closecallback: function () { }
  4620. }, { "style": { "height": "36px" } }).form; //创建窗体
  4621. _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); } }
  4622. break;
  4623. case "mindNetwork": //好友打开
  4624. _formdiv = new U.UF.UI.form(
  4625. "思维网格",
  4626. $$("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 }), {
  4627. "id": "mindNetwork",
  4628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4629. "onresize": function () { }
  4630. }, {
  4631. closecallback: function () { }
  4632. }, { "style": { "height": "36px" } }).form; //创建窗体
  4633. _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); } }
  4634. break;
  4635. case "train": //好友打开
  4636. _formdiv = new U.UF.UI.form(
  4637. "训练平台",
  4638. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4639. "id": "mindNetwork",
  4640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4641. "onresize": function () { }
  4642. }, {
  4643. closecallback: function () { }
  4644. }, { "style": { "height": "36px" } }).form; //创建窗体
  4645. _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); } }
  4646. break;
  4647. case "teacherClassRoom": //好友打开
  4648. _formdiv = new U.UF.UI.form(
  4649. "实时课堂",
  4650. $$("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 }), {
  4651. "id": "teacherClassRoom",
  4652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4653. "onresize": function () { }
  4654. }, {
  4655. closecallback: function () { }
  4656. }, { "style": { "height": "36px" } }).form; //创建窗体
  4657. _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); } }
  4658. setTimeout(() => {
  4659. U.UF.F.windowZooming(_formdiv)
  4660. }, 0);
  4661. break;
  4662. }
  4663. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4664. switch (str) {
  4665. case "project": //好友打开
  4666. _formdiv = new U.UF.UI.form(
  4667. "课程管理",
  4668. $$("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 }), {
  4669. "id": "project",
  4670. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4671. "onresize": function () { }
  4672. }, {
  4673. closecallback: function () { }
  4674. }, { "style": { "height": "36px" } }).form; //创建窗体
  4675. _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); } }
  4676. break;
  4677. case "evaluate":
  4678. _formdiv = new U.UF.UI.form(
  4679. "学生评价",
  4680. $$("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 }), {
  4681. "id": "evaluate",
  4682. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4683. "onresize": function () { }
  4684. }, {
  4685. closecallback: function () { }
  4686. }, { "style": { "height": "36px" } }).form; //创建窗体
  4687. _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); } }
  4688. break;
  4689. case "notice":
  4690. _formdiv = new U.UF.UI.form(
  4691. "通知公告",
  4692. $$("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 }), {
  4693. "id": "notice",
  4694. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4695. "onresize": function () { }
  4696. }, {
  4697. closecallback: function () { }
  4698. }, { "style": { "height": "36px" } }).form; //创建窗体
  4699. _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); } }
  4700. break;
  4701. case "stuLibrary":
  4702. _formdiv = new U.UF.UI.form(
  4703. "学习资料",
  4704. $$("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 }), {
  4705. "id": "stuLibrary",
  4706. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4707. "onresize": function () { }
  4708. }, {
  4709. closecallback: function () { }
  4710. }, { "style": { "height": "36px" } }).form; //创建窗体
  4711. _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); } }
  4712. break;
  4713. case "program":
  4714. _formdiv = new U.UF.UI.form(
  4715. "编程平台",
  4716. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4717. "id": "program",
  4718. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4719. "onresize": function () { }
  4720. }, {
  4721. closecallback: function () { }
  4722. }, { "style": { "height": "36px" } }).form; //创建窗体
  4723. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4724. break;
  4725. case "whiteboard":
  4726. _formdiv = new U.UF.UI.form(
  4727. "电子白板",
  4728. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4729. "id": "whiteboard",
  4730. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4731. "onresize": function () { }
  4732. }, {
  4733. closecallback: function () { }
  4734. }, { "style": { "height": "36px" } }).form; //创建窗体
  4735. _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); } }
  4736. break;
  4737. case "investigation":
  4738. _formdiv = new U.UF.UI.form(
  4739. "问卷调查",
  4740. $$("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 }), {
  4741. "id": "investigation",
  4742. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4743. "onresize": function () { }
  4744. }, {
  4745. closecallback: function () { }
  4746. }, { "style": { "height": "36px" } }).form; //创建窗体
  4747. _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); } }
  4748. break;
  4749. case "mind":
  4750. _formdiv = new U.UF.UI.form(
  4751. "思维导图",
  4752. $$("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"
  4753. "id": "mind",
  4754. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4755. "onresize": function () { }
  4756. }, {
  4757. closecallback: function () { }
  4758. }, { "style": { "height": "36px" } }).form; //创建窗体
  4759. _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); } }
  4760. break;
  4761. case "doc":
  4762. // U.MD.D.I.isRoom();
  4763. _formdiv = new U.UF.UI.form(
  4764. "协同文档",
  4765. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4766. "id": "doc",
  4767. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4768. "onresize": function () { }
  4769. }, {
  4770. closecallback: function () { }
  4771. }, { "style": { "height": "36px" } }).form; //创建窗体
  4772. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4773. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4774. })
  4775. _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); } }
  4776. break;
  4777. case "study":
  4778. _formdiv = new U.UF.UI.form(
  4779. "课程中心",
  4780. $$("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
  4781. "id": "study",
  4782. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4783. "onresize": function () { }
  4784. }, {
  4785. closecallback: function () { }
  4786. }, { "style": { "height": "36px" } }).form; //创建窗体
  4787. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4788. break;
  4789. case "mindNetwork": //好友打开
  4790. _formdiv = new U.UF.UI.form(
  4791. "思维网格",
  4792. $$("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 }), {
  4793. "id": "mindNetwork",
  4794. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4795. "onresize": function () { }
  4796. }, {
  4797. closecallback: function () { }
  4798. }, { "style": { "height": "36px" } }).form; //创建窗体
  4799. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4800. break;
  4801. case "train": //好友打开
  4802. _formdiv = new U.UF.UI.form(
  4803. "训练平台",
  4804. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4805. "id": "train",
  4806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4807. "onresize": function () { }
  4808. }, {
  4809. closecallback: function () { }
  4810. }, { "style": { "height": "36px" } }).form; //创建窗体
  4811. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4812. break;
  4813. case "sys":
  4814. _formdiv = new U.UF.UI.form(
  4815. "目标管理",
  4816. $$("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 }), {
  4817. "id": "sys",
  4818. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4819. "onresize": function () { }
  4820. }, {
  4821. closecallback: function () { }
  4822. }, { "style": { "height": "36px" } }).form; //创建窗体
  4823. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4824. break;
  4825. case "courseDesign":
  4826. _formdiv = new U.UF.UI.form(
  4827. "项目设计",
  4828. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4829. "id": "courseDesign",
  4830. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4831. "onresize": function () { }
  4832. }, {
  4833. closecallback: function () { }
  4834. }, { "style": { "height": "36px" } }).form; //创建窗体
  4835. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4836. break;
  4837. }
  4838. } else if (!_type) {
  4839. switch (str) {
  4840. case "my":
  4841. _formdiv = new U.UF.UI.form(
  4842. "我的资料",
  4843. $$("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 }), {
  4844. "id": "my",
  4845. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4846. "onresize": function () { }
  4847. }, {
  4848. closecallback: function () { }
  4849. }, { "style": { "height": "36px" } }).form; //创建窗体
  4850. _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); } }
  4851. break;
  4852. }
  4853. }
  4854. switch (str) {
  4855. // AIprogram2 AI体验 aihub.cocorobo.cn
  4856. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4857. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4858. case "formulaEdi": //公式编辑
  4859. _formdiv = new U.UF.UI.form(
  4860. "公式编辑",
  4861. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4862. "id": "formulaEdi",
  4863. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4864. "onresize": function () { }
  4865. }, {
  4866. closecallback: function () { }
  4867. }, { "style": { "height": "36px" } }).form; //创建窗体
  4868. _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); } }
  4869. break;
  4870. case "molStr": //分子结构
  4871. _formdiv = new U.UF.UI.form(
  4872. "分子结构",
  4873. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4874. "id": "molStr",
  4875. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4876. "onresize": function () { }
  4877. }, {
  4878. closecallback: function () { }
  4879. }, { "style": { "height": "36px" } }).form; //创建窗体
  4880. _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); } }
  4881. break;
  4882. case "timeAxis": //时间轴
  4883. _formdiv = new U.UF.UI.form(
  4884. "时间轴",
  4885. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4886. "id": "timeAxis",
  4887. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4888. "onresize": function () { }
  4889. }, {
  4890. closecallback: function () { }
  4891. }, { "style": { "height": "36px" } }).form; //创建窗体
  4892. _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); } }
  4893. break;
  4894. case "AIprogram2": //AI体验
  4895. _formdiv = new U.UF.UI.form(
  4896. "AI体验",
  4897. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4898. "id": "AIprogram2",
  4899. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4900. "onresize": function () { }
  4901. }, {
  4902. closecallback: function () { }
  4903. }, { "style": { "height": "36px" } }).form; //创建窗体
  4904. _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); } }
  4905. break;
  4906. case "Pythonprogram": //python编程
  4907. _formdiv = new U.UF.UI.form(
  4908. "Python编程",
  4909. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4910. "id": "Pythonprogram",
  4911. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4912. "onresize": function () { }
  4913. }, {
  4914. closecallback: function () { }
  4915. }, { "style": { "height": "36px" } }).form; //创建窗体
  4916. _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); } }
  4917. break;
  4918. case "AIprogram": //ai编程
  4919. _formdiv = new U.UF.UI.form(
  4920. "AI编程平台",
  4921. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4922. "id": "AIprogram",
  4923. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4924. "onresize": function () { }
  4925. }, {
  4926. closecallback: function () { }
  4927. }, { "style": { "height": "36px" } }).form; //创建窗体
  4928. _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); } }
  4929. break;
  4930. case "CocoPi": //CocoPi
  4931. _formdiv = new U.UF.UI.form(
  4932. "CocoPi",
  4933. $$("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" }), {
  4934. "id": "CocoPi",
  4935. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4936. "onresize": function () { }
  4937. }, {
  4938. closecallback: function () { }
  4939. }, { "style": { "height": "36px" } }).form; //创建窗体
  4940. _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); } }
  4941. break;
  4942. case "Wood": //Wood
  4943. _formdiv = new U.UF.UI.form(
  4944. "海龟编程",
  4945. $$("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/" }), {
  4946. "id": "Wood",
  4947. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4948. "onresize": function () { }
  4949. }, {
  4950. closecallback: function () { }
  4951. }, { "style": { "height": "36px" } }).form; //创建窗体
  4952. _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); } }
  4953. break;
  4954. case "car": //模拟驾驶
  4955. _formdiv = new U.UF.UI.form(
  4956. "模拟驾驶",
  4957. $$("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/" }), {
  4958. "id": "car",
  4959. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4960. "onresize": function () { }
  4961. }, {
  4962. closecallback: function () { }
  4963. }, { "style": { "height": "36px" } }).form; //创建窗体
  4964. _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); } }
  4965. break;
  4966. case "lineSearch": //路径搜索
  4967. _formdiv = new U.UF.UI.form(
  4968. "路径搜索",
  4969. $$("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/" }), {
  4970. "id": "lineSearch",
  4971. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4972. "onresize": function () { }
  4973. }, {
  4974. closecallback: function () { }
  4975. }, { "style": { "height": "36px" } }).form; //创建窗体
  4976. _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); } }
  4977. break;
  4978. case "deepLearning": //深度学习
  4979. _formdiv = new U.UF.UI.form(
  4980. "深度学习",
  4981. $$("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/#" }), {
  4982. "id": "deepLearning",
  4983. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4984. "onresize": function () { }
  4985. }, {
  4986. closecallback: function () { }
  4987. }, { "style": { "height": "36px" } }).form; //创建窗体
  4988. _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); } }
  4989. break;
  4990. case "allHistory": //深度学习
  4991. _formdiv = new U.UF.UI.form(
  4992. "全历史",
  4993. $$("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/" }), {
  4994. "id": "allHistory",
  4995. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4996. "onresize": function () { }
  4997. }, {
  4998. closecallback: function () { }
  4999. }, { "style": { "height": "36px" } }).form; //创建窗体
  5000. _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); } }
  5001. break;
  5002. case "chatPDF": //ai编程
  5003. _formdiv = new U.UF.UI.form(
  5004. "chatPDF",
  5005. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5006. "id": "chatPDF",
  5007. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5008. "onresize": function () { }
  5009. }, {
  5010. closecallback: function () { }
  5011. }, { "style": { "height": "36px" } }).form; //创建窗体
  5012. _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); } }
  5013. break;
  5014. case "resources": //国家教育
  5015. _formdiv = new U.UF.UI.form(
  5016. "国家教育",
  5017. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5018. "id": "resources",
  5019. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5020. "onresize": function () { }
  5021. }, {
  5022. closecallback: function () { }
  5023. }, { "style": { "height": "36px" } }).form; //创建窗体
  5024. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5025. break;
  5026. case "codeEdit": //源码编辑
  5027. _formdiv = new U.UF.UI.form(
  5028. "源码编辑",
  5029. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5030. "id": "codeEdit",
  5031. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5032. "onresize": function () { }
  5033. }, {
  5034. closecallback: function () { }
  5035. }, { "style": { "height": "36px" } }).form; //创建窗体
  5036. _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); } }
  5037. break; //
  5038. case "MindMap": //MindMap
  5039. _formdiv = new U.UF.UI.form(
  5040. "MindMap",
  5041. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5042. "id": "MindMap",
  5043. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5044. "onresize": function () { }
  5045. }, {
  5046. closecallback: function () { }
  5047. }, { "style": { "height": "36px" } }).form; //创建窗体
  5048. _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); } }
  5049. break;
  5050. case "netWorkPanel": //netWorkPanel
  5051. _formdiv = new U.UF.UI.form(
  5052. "netWorkPanel",
  5053. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5054. "id": "netWorkPanel",
  5055. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5056. "onresize": function () { }
  5057. }, {
  5058. closecallback: function () { }
  5059. }, { "style": { "height": "36px" } }).form; //创建窗体
  5060. _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); } }
  5061. break;
  5062. case "GeoGebra": //GeoGebra
  5063. _formdiv = new U.UF.UI.form(
  5064. "GeoGebra",
  5065. $$("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" }), {
  5066. "id": "GeoGebra",
  5067. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5068. "onresize": function () { }
  5069. }, {
  5070. closecallback: function () { }
  5071. }, { "style": { "height": "36px" } }).form; //创建窗体
  5072. _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); } }
  5073. break;
  5074. case "translation": //翻译
  5075. _formdiv = new U.UF.UI.form(
  5076. "翻译",
  5077. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5078. "id": "translation",
  5079. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5080. "onresize": function () { }
  5081. }, {
  5082. closecallback: function () { }
  5083. }, { "style": { "height": "36px" } }).form; //创建窗体
  5084. _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); } }
  5085. break;
  5086. case "mohe": //魔盒
  5087. _formdiv = new U.UF.UI.form(
  5088. "魔盒识字",
  5089. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5090. "id": "mohe",
  5091. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5092. "onresize": function () { }
  5093. }, {
  5094. closecallback: function () { }
  5095. }, { "style": { "height": "36px" } }).form; //创建窗体
  5096. _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); } }
  5097. break;
  5098. case "24game": //24点
  5099. _formdiv = new U.UF.UI.form(
  5100. "24点",
  5101. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5102. "id": "24game",
  5103. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. _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); } }
  5109. break;
  5110. case "case":
  5111. _formdiv = new U.UF.UI.form(
  5112. "课程进展",
  5113. $$("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 }), {
  5114. "id": "case",
  5115. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5116. "onresize": function () { }
  5117. }, {
  5118. closecallback: function () { }
  5119. }, { "style": { "height": "36px" } }).form; //创建窗体
  5120. _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); } }
  5121. break;
  5122. case "snf":
  5123. _formdiv = new U.UF.UI.form(
  5124. "赛诺梵",
  5125. $$("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" }), {
  5126. "id": "snf",
  5127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5128. "onresize": function () { }
  5129. }, {
  5130. closecallback: function () { }
  5131. }, { "style": { "height": "36px" } }).form; //创建窗体
  5132. _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); } }
  5133. break;
  5134. case "hanFamily":
  5135. _formdiv = new U.UF.UI.form(
  5136. "汉字家族",
  5137. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5138. "id": "hanFamily",
  5139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. case "hanClassics":
  5147. _formdiv = new U.UF.UI.form(
  5148. "国学经典",
  5149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5150. "id": "hanClassics",
  5151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5152. "onresize": function () { }
  5153. }, {
  5154. closecallback: function () { }
  5155. }, { "style": { "height": "36px" } }).form; //创建窗体
  5156. _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); } }
  5157. break;
  5158. case "hanTraining":
  5159. _formdiv = new U.UF.UI.form(
  5160. "笔画训练",
  5161. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5162. "id": "hanTraining",
  5163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. _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); } }
  5169. break;
  5170. case "hanClass":
  5171. _formdiv = new U.UF.UI.form(
  5172. "书法课堂",
  5173. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5174. "id": "hanClass",
  5175. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. case "han":
  5183. _formdiv = new U.UF.UI.form(
  5184. "汉字宫",
  5185. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5186. "id": "han",
  5187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5188. "onresize": function () { }
  5189. }, {
  5190. closecallback: function () { }
  5191. }, { "style": { "height": "36px" } }).form; //创建窗体
  5192. _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); } }
  5193. break;
  5194. case "projectGM": //课程管理
  5195. _formdiv = new U.UF.UI.form(
  5196. "课程管理",
  5197. $$("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 }), {
  5198. "id": "projectGM",
  5199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5200. "onresize": function () { }
  5201. }, {
  5202. closecallback: function () { }
  5203. }, { "style": { "height": "36px" } }).form; //创建窗体
  5204. _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); } }
  5205. break;
  5206. case "studyGM": //课程中心
  5207. _formdiv = new U.UF.UI.form(
  5208. "课程中心",
  5209. $$("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
  5210. "id": "study",
  5211. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5212. "onresize": function () { }
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _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); } }
  5217. break;
  5218. // studentGM
  5219. case "studentGM": //学生管理
  5220. _formdiv = new U.UF.UI.form(
  5221. "学生管理",
  5222. $$("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 }), {
  5223. "id": "studentGM",
  5224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5225. "onresize": function () { }
  5226. }, {
  5227. closecallback: function () { }
  5228. }, { "style": { "height": "36px" } }).form; //创建窗体
  5229. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5230. break;
  5231. case "evaluateGM": //学生评价
  5232. _formdiv = new U.UF.UI.form(
  5233. "学生评价",
  5234. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5235. "id": "evaluateGM",
  5236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5237. "onresize": function () { }
  5238. }, {
  5239. closecallback: function () { }
  5240. }, { "style": { "height": "36px" } }).form; //创建窗体
  5241. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5242. break;
  5243. // classGM
  5244. case "classGM": //班级管理
  5245. _formdiv = new U.UF.UI.form(
  5246. "班级管理",
  5247. $$("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 }), {
  5248. "id": "classGM",
  5249. "style": { "width": "90%", "height": "90%", "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/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5255. break;
  5256. // dataGM
  5257. case "dataGM":
  5258. _formdiv = new U.UF.UI.form(
  5259. "我的资料",
  5260. $$("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 }), {
  5261. "id": "dataGM",
  5262. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5263. "onresize": function () { }
  5264. }, {
  5265. closecallback: function () { }
  5266. }, { "style": { "height": "36px" } }).form; //创建窗体
  5267. _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); } }
  5268. break;
  5269. // caseGM
  5270. case "caseGM": //课程进展
  5271. _formdiv = new U.UF.UI.form(
  5272. "课程进展",
  5273. $$("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 }), {
  5274. "id": "caseGM",
  5275. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5276. "onresize": function () { }
  5277. }, {
  5278. closecallback: function () { }
  5279. }, { "style": { "height": "36px" } }).form; //创建窗体
  5280. _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); } }
  5281. break;
  5282. // meterialGM
  5283. case "meterialGM": //素材库
  5284. _formdiv = new U.UF.UI.form(
  5285. "素材库",
  5286. $$("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 }), {
  5287. "id": "meterialGM",
  5288. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5289. "onresize": function () { }
  5290. }, {
  5291. closecallback: function () { }
  5292. }, { "style": { "height": "36px" } }).form; //创建窗体
  5293. _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); } }
  5294. break;
  5295. // evaluateSGM
  5296. case "evaluateSGM": //我的评价
  5297. _formdiv = new U.UF.UI.form(
  5298. "我的评价",
  5299. $$("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 }), {
  5300. "id": "evaluateSGM",
  5301. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5302. "onresize": function () { }
  5303. }, {
  5304. closecallback: function () { }
  5305. }, { "style": { "height": "36px" } }).form; //创建窗体
  5306. _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); } }
  5307. break;
  5308. case "jupyter": //jupyter
  5309. _formdiv = new U.UF.UI.form(
  5310. "jupyter",
  5311. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5312. "id": "jupyter",
  5313. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5314. "onresize": function () { }
  5315. }, {
  5316. closecallback: function () { }
  5317. }, { "style": { "height": "36px" } }).form; //创建窗体
  5318. _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); } }
  5319. break;
  5320. case "number": //数字实验室
  5321. _formdiv = new U.UF.UI.form(
  5322. "数字实验室",
  5323. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5324. "id": "number",
  5325. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5326. "onresize": function () { }
  5327. }, {
  5328. closecallback: function () { }
  5329. }, { "style": { "height": "36px" } }).form; //创建窗体
  5330. _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); } }
  5331. break;
  5332. case "studentCourse": //项目管理 学生
  5333. _formdiv = new U.UF.UI.form(
  5334. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5335. $$("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 }), {
  5336. "id": "studentCourse",
  5337. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5338. "onresize": function () { }
  5339. }, {
  5340. closecallback: function () { }
  5341. }, { "style": { "height": "36px" } }).form; //创建窗体
  5342. _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); } }
  5343. break;
  5344. case "studentCourseS": //项目管理 老师
  5345. _formdiv = new U.UF.UI.form(
  5346. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5347. $$("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 }), {
  5348. "id": "studentCourseS",
  5349. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5350. "onresize": function () { }
  5351. }, {
  5352. closecallback: function () { }
  5353. }, { "style": { "height": "36px" } }).form; //创建窗体
  5354. _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); } }
  5355. break;
  5356. case "studentIndex": //项目中心
  5357. _formdiv = new U.UF.UI.form(
  5358. "项目中心",
  5359. $$("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 }), {
  5360. "id": "studentIndex",
  5361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5362. "onresize": function () { }
  5363. }, {
  5364. closecallback: function () { }
  5365. }, { "style": { "height": "36px" } }).form; //创建窗体
  5366. _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); } }
  5367. break;
  5368. case "CaseDesignS":
  5369. _formdiv = new U.UF.UI.form(
  5370. "项目进展",
  5371. $$("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 }), {
  5372. "id": "case",
  5373. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5374. "onresize": function () { }
  5375. }, {
  5376. closecallback: function () { }
  5377. }, { "style": { "height": "36px" } }).form; //创建窗体
  5378. _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); } }
  5379. break;
  5380. case "tcStudent": //腾讯学生管理
  5381. _formdiv = new U.UF.UI.form(
  5382. "学生管理",
  5383. $$("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 }), {
  5384. "id": "tcStudent",
  5385. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5386. "onresize": function () { }
  5387. }, {
  5388. closecallback: function () { }
  5389. }, { "style": { "height": "36px" } }).form; //创建窗体
  5390. _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); } }
  5391. break;
  5392. case "tcSchool": //腾讯学校管理
  5393. _formdiv = new U.UF.UI.form(
  5394. "学校管理",
  5395. $$("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 }), {
  5396. "id": "tcSchool",
  5397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5398. "onresize": function () { }
  5399. }, {
  5400. closecallback: function () { }
  5401. }, { "style": { "height": "36px" } }).form; //创建窗体
  5402. _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); } }
  5403. break;
  5404. case "tcTeacher": //腾讯学校管理
  5405. _formdiv = new U.UF.UI.form(
  5406. "教师管理",
  5407. $$("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 }), {
  5408. "id": "tcTeacher",
  5409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. _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); } }
  5415. break;
  5416. case "tcData": //腾讯我的资料
  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/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5420. "id": "tcData",
  5421. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5427. break;
  5428. case "tcNotice": //腾讯消息通知
  5429. _formdiv = new U.UF.UI.form(
  5430. "消息通知",
  5431. $$("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 }), {
  5432. "id": "tcNotice",
  5433. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5434. "onresize": function () { }
  5435. }, {
  5436. closecallback: function () { }
  5437. }, { "style": { "height": "36px" } }).form; //创建窗体
  5438. _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); } }
  5439. break;
  5440. case "myReport": //好友打开
  5441. _formdiv = new U.UF.UI.form(
  5442. "我的评价",
  5443. $$("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 }), {
  5444. "id": "myReport",
  5445. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5446. "onresize": function () { }
  5447. }, {
  5448. closecallback: function () { }
  5449. }, { "style": { "height": "36px" } }).form; //创建窗体
  5450. _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); } }
  5451. break;
  5452. case "learnAna": //好友打开
  5453. _formdiv = new U.UF.UI.form(
  5454. "学习分析",
  5455. $$("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 }), {
  5456. "id": "learnAna",
  5457. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5458. "onresize": function () { }
  5459. }, {
  5460. closecallback: function () { }
  5461. }, { "style": { "height": "36px" } }).form; //创建窗体
  5462. _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); } }
  5463. break;
  5464. case "AIChat": //AI共创
  5465. _formdiv = new U.UF.UI.form(
  5466. "AI共创",
  5467. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5468. "id": "AIChat",
  5469. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5470. "onresize": function () { }
  5471. }, {
  5472. istop: true,
  5473. closecallback: function () { $("#aichat_icon").remove(); },
  5474. narrowcallback: function () {
  5475. if (!$("#aichat_icon")[0]) {
  5476. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5477. }
  5478. },
  5479. }, { "style": { "height": "36px" } }).form; //创建窗体
  5480. _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); } }
  5481. break;
  5482. case "ainew": //AI共创
  5483. _formdiv = new U.UF.UI.form(
  5484. "AI协同",
  5485. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5486. "id": "ainew",
  5487. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5488. "onresize": function () { }
  5489. }, {
  5490. closecallback: function () { }
  5491. }, { "style": { "height": "36px" } }).form; //创建窗体
  5492. _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); } }
  5493. break;
  5494. case "gpt4": //gpt4
  5495. _formdiv = new U.UF.UI.form(
  5496. "AI助手",
  5497. $$("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 }), {
  5498. "id": "gpt4",
  5499. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5500. "onresize": function () { }
  5501. }, {
  5502. closecallback: function () { }
  5503. }, { "style": { "height": "36px" } }).form; //创建窗体
  5504. _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); } }
  5505. break;
  5506. case "aigpt": //gpt4
  5507. _formdiv = new U.UF.UI.form(
  5508. "AI助手+",
  5509. $$("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 }), {
  5510. "id": "aigpt",
  5511. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5512. "onresize": function () { }
  5513. }, {
  5514. closecallback: function () { }
  5515. }, { "style": { "height": "36px" } }).form; //创建窗体
  5516. _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); } }
  5517. break;
  5518. case "futureClass": //AI共创
  5519. _formdiv = new U.UF.UI.form(
  5520. "协同建构",
  5521. $$("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
  5522. "id": "synergyCourse",
  5523. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5524. "onresize": function () { }
  5525. }, {
  5526. closecallback: function () {
  5527. $("iframe", _formdiv)[0].contentWindow.loginout();
  5528. }
  5529. }, { "style": { "height": "36px" } }).form; //创建窗体
  5530. _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); } }
  5531. break;
  5532. case "aiagent": //ai agent
  5533. _formdiv = new U.UF.UI.form(
  5534. "AI Agent",
  5535. $$("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" }), {
  5536. "id": "AIAgent",
  5537. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5538. "onresize": function () { }
  5539. }, {
  5540. closecallback: function () { }
  5541. }, { "style": { "height": "36px" } }).form; //创建窗体
  5542. _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); } }
  5543. break;
  5544. case "dataBoard": //数据看板
  5545. _formdiv = new U.UF.UI.form(
  5546. "数据看板",
  5547. $$("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 }), {
  5548. "id": "dataBoard",
  5549. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5550. "onresize": function () { }
  5551. }, {
  5552. closecallback: function () { }
  5553. }, { "style": { "height": "36px" } }).form; //创建窗体
  5554. _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); } }
  5555. break;
  5556. case "dataBoardSies": //数据融合
  5557. _formdiv = new U.UF.UI.form(
  5558. "数据融合",
  5559. $$("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 }), {
  5560. "id": "dataBoardSies",
  5561. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5562. "onresize": function () { }
  5563. }, {
  5564. closecallback: function () { }
  5565. }, { "style": { "height": "36px" } }).form; //创建窗体
  5566. _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); } }
  5567. break;
  5568. case "dataBoardNew": //数据看板
  5569. _formdiv = new U.UF.UI.form(
  5570. "综合看板",
  5571. $$("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 }), {
  5572. "id": "dataBoardNew",
  5573. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5574. "onresize": function () { }
  5575. }, {
  5576. closecallback: function () { }
  5577. }, { "style": { "height": "36px" } }).form; //创建窗体
  5578. _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); } }
  5579. break;
  5580. case "dataBoardTest": //数据看板
  5581. _formdiv = new U.UF.UI.form(
  5582. "评测看板",
  5583. $$("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 }), {
  5584. "id": "dataBoardTest",
  5585. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5586. "onresize": function () { }
  5587. }, {
  5588. closecallback: function () { }
  5589. }, { "style": { "height": "36px" } }).form; //创建窗体
  5590. _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); } }
  5591. break;
  5592. case "AIAnalyse": //AI共创
  5593. _formdiv = new U.UF.UI.form(
  5594. "AI分析",
  5595. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5596. "id": "AIAnalyse",
  5597. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5598. "onresize": function () { }
  5599. }, {
  5600. closecallback: function () { }
  5601. }, { "style": { "height": "36px" } }).form; //创建窗体
  5602. _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); } }
  5603. break;
  5604. case "studioCourse": //AI共创
  5605. _formdiv = new U.UF.UI.form(
  5606. "工作管理",
  5607. $$("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 }), {
  5608. "id": "studioCourse",
  5609. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5610. "onresize": function () { }
  5611. }, {
  5612. closecallback: function () { }
  5613. }, { "style": { "height": "36px" } }).form; //创建窗体
  5614. _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); } }
  5615. break;
  5616. case "studioIndex": //AI共创
  5617. _formdiv = new U.UF.UI.form(
  5618. "工作中心",
  5619. $$("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 }), {
  5620. "id": "studioIndex",
  5621. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5622. "onresize": function () { }
  5623. }, {
  5624. closecallback: function () { }
  5625. }, { "style": { "height": "36px" } }).form; //创建窗体
  5626. _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); } }
  5627. break;
  5628. case "source":
  5629. _formdiv = new U.UF.UI.form(
  5630. "教学资源",
  5631. $$("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 }), {
  5632. "id": "source",
  5633. "style": { "width": "80%", "height": "80%", "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/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5639. break;
  5640. case "testTeacher":
  5641. _formdiv = new U.UF.UI.form(
  5642. "教师管理",
  5643. $$("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 }), {
  5644. "id": "testTeacher",
  5645. "style": { "width": "80%", "height": "80%", "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/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5651. break;
  5652. case "testStudent":
  5653. _formdiv = new U.UF.UI.form(
  5654. "教师中心",
  5655. $$("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 }), {
  5656. "id": "testStudent",
  5657. "style": { "width": "80%", "height": "80%", "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/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5663. break;
  5664. case "testTeacherSies":
  5665. _formdiv = new U.UF.UI.form(
  5666. "教师管理",
  5667. $$("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 }), {
  5668. "id": "testTeacherSies",
  5669. "style": { "width": "80%", "height": "80%", "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/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5675. break;
  5676. case "testStudentSies":
  5677. _formdiv = new U.UF.UI.form(
  5678. "教师中心",
  5679. $$("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 }), {
  5680. "id": "testStudentSies",
  5681. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5682. "onresize": function () { }
  5683. }, {
  5684. closecallback: function () { }
  5685. }, { "style": { "height": "36px" } }).form; //创建窗体
  5686. _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); } }
  5687. break;
  5688. case "ytpbl": //消息通知
  5689. _formdiv = new U.UF.UI.form(
  5690. "案例征集",
  5691. $$("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 }), {
  5692. "id": "ytpbl",
  5693. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5694. "onresize": function () { }
  5695. }, {
  5696. closecallback: function () { }
  5697. }, { "style": { "height": "36px" } }).form; //创建窗体
  5698. _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); } }
  5699. // 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");
  5700. break;
  5701. case "aiCourseResource": //人工智能窗体
  5702. _formdiv = new U.UF.UI.form(
  5703. false,
  5704. $$("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 }), {
  5705. "id": "aiCourseResource",
  5706. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5707. "onresize": function () { },
  5708. "isdrag": false,
  5709. }, {
  5710. closecallback: function () { }
  5711. }, { "style": { "height": "36px" } }).form; //创建窗体
  5712. _taskbar = ''
  5713. break;
  5714. case "szdjgCocooroboX": //图形化编程
  5715. _formdiv = new U.UF.UI.form(
  5716. "图形化编程",
  5717. $$("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" }), {
  5718. "id": "szdjgCocooroboX",
  5719. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5720. "onresize": function () { }
  5721. }, {
  5722. closecallback: function () { }
  5723. }, { "style": { "height": "36px" } }).form; //创建窗体
  5724. _taskbar = ''
  5725. break;
  5726. case "szdjgPython": //python编程
  5727. _formdiv = new U.UF.UI.form(
  5728. "Python编程",
  5729. $$("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" }), {
  5730. "id": "szdjgPython",
  5731. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. _taskbar = ''
  5737. break;
  5738. case "Record":
  5739. _formdiv = new U.UF.UI.form(
  5740. "观察记录",
  5741. $$("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 }), {
  5742. "id": "Record",
  5743. "style": { "width": "90%", "height": "90%", "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/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5749. break;
  5750. case "aigptCourse":
  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/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role + '#/AgentVue' }), {
  5754. "id": "aigptCourse",
  5755. "style": { "width": "90%", "height": "90%", "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/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5761. break;
  5762. case "classroomObservation":
  5763. _formdiv = new U.UF.UI.form(
  5764. "课堂观察",
  5765. $$("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 }), {
  5766. "id": "classroomObservation",
  5767. "style": { "width": "90%", "height": "90%", "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/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5773. break;
  5774. case "pblCourse":
  5775. _formdiv = new U.UF.UI.form(
  5776. "学生PBL",
  5777. $$("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 }), {
  5778. "id": "pblCourse",
  5779. "style": { "width": "90%", "height": "90%", "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/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5785. break;
  5786. }
  5787. //U.MD.D.I.openClick(str);
  5788. //如果有任务栏信息
  5789. if (_taskbar) {
  5790. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5791. }
  5792. }
  5793. // U.MD.D.I.openClick = function(str){
  5794. // var click = '';
  5795. // switch(str){
  5796. // case 'friend':
  5797. // click = '我的好友';
  5798. // break;
  5799. // case 'domain':
  5800. // click = '域名管理';
  5801. // break;
  5802. // case 'disk':
  5803. // click = '我的云盘';
  5804. // break;
  5805. // case 'word':
  5806. // click = 'Word';
  5807. // break;
  5808. // case 'excel':
  5809. // click = 'Execl';
  5810. // break;
  5811. // case 'txt':
  5812. // click = '文本文件';
  5813. // break;
  5814. // case 'lookupFriend':
  5815. // click = '查找好友';
  5816. // break;
  5817. // case 'ftp':
  5818. // click = 'FTP';
  5819. // break;
  5820. // case 'group':
  5821. // click = '群组';
  5822. // break;
  5823. // case 'set':
  5824. // click = '我的设置';
  5825. // break;
  5826. // case 'systemSet':
  5827. // click = '系统设置';
  5828. // break;
  5829. // case 'boomYun':
  5830. // click = '互联办公';
  5831. // break;
  5832. // case 'xz':
  5833. // click = '云端下载';
  5834. // break;
  5835. // case 'client':
  5836. // click = '有思浏览器';
  5837. // break;
  5838. // case 'backEndProgramming':
  5839. // click = '在线后台编程';
  5840. // break;
  5841. // case 'frontEndProgramming':
  5842. // click = '在线前端编程';
  5843. // break;
  5844. // default: break;
  5845. // }
  5846. // if(U.MD.D.I.Ip && click){
  5847. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5848. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5849. // })
  5850. // }
  5851. // }
  5852. /**
  5853. *函数作用:ajax简易函数,使用post格式
  5854. *@param url {data} 后台地址
  5855. *@param data {data} 参数json
  5856. *@param fn {data} 回调函数
  5857. *
  5858. */
  5859. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5860. // var xhr = new XMLHttpRequest();
  5861. // xhr.open("GET",url,true);
  5862. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5863. // xhr.onreadystatechange = function(){
  5864. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5865. // fn.call(this,xhr.responseText);
  5866. // }
  5867. // };
  5868. // xhr.send();
  5869. // }
  5870. /*判断是否是内网IP*/
  5871. // U.MD.D.I.isInnerIPFn = function(str){
  5872. // var curPageUrl = str;
  5873. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5874. // curPageUrl =curPageUrl.replace(reg1,'');
  5875. // // console.log('curPageUrl-1 '+curPageUrl);
  5876. // var reg2 = /\:+/g;//替换冒号为一点
  5877. // curPageUrl =curPageUrl.replace(reg2,'.');
  5878. // // console.log('curPageUrl-2 '+curPageUrl);
  5879. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5880. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5881. // if(curPageUrl[2] != '16'){
  5882. // return ipAddress;
  5883. // }else{
  5884. // return false;
  5885. // }
  5886. // }
  5887. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5888. // //compatibility for firefox and chrome
  5889. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5890. // var pc = new myPeerConnection({
  5891. // iceServers: []
  5892. // }),
  5893. // noop = function() {},
  5894. // localIPs = {},
  5895. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5896. // key;
  5897. // function iterateIP(ip) {
  5898. // if (!localIPs[ip]) onNewIP(ip);
  5899. // localIPs[ip] = true;
  5900. // }
  5901. // //create a bogus data channel
  5902. // pc.createDataChannel("");
  5903. // // create offer and set local description
  5904. // pc.createOffer().then(function(sdp) {
  5905. // sdp.sdp.split('\n').forEach(function(line) {
  5906. // if (line.indexOf('candidate') < 0) return;
  5907. // line.match(ipRegex).forEach(iterateIP);
  5908. // });
  5909. // pc.setLocalDescription(sdp, noop, noop);
  5910. // }).catch(function(reason) {
  5911. // // An error occurred, so handle the failure to connect
  5912. // });
  5913. // //sten for candidate events
  5914. // pc.onicecandidate = function(ice) {
  5915. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5916. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5917. // };
  5918. // }
  5919. // U.MD.D.I.getUserIpBool = function(callback){
  5920. // U.MD.D.I.getUserIP(function(ip){
  5921. // alert("Got IP! :" + ip);
  5922. // });
  5923. //}
  5924. //#endregion
  5925. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5926. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5927. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5928. _userinfo = US.userInfo, //登录用户信息
  5929. _userid = US.userInfo.userid //登录用户id
  5930. let _iframe;
  5931. let _cid = cid,
  5932. _stage = stage,
  5933. _task = task,
  5934. _tool = tool;
  5935. var _jie = $$("div", {
  5936. "style": {
  5937. "position": "absolute",
  5938. "bottom": "50px",
  5939. "right": "50px",
  5940. "zIndex": "9999",
  5941. "backgroundColor": "#2268bc",
  5942. "color": "#fff",
  5943. "padding": "12px 20px",
  5944. "cursor": "pointer",
  5945. "borderRadius": "4px",
  5946. },
  5947. "innerHTML": "提交作业"
  5948. })
  5949. let aTool = ''
  5950. let _loading = document.createElement('div')
  5951. _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;"
  5952. // _loading.id = "";
  5953. let _lchild = document.createElement('div')
  5954. let _limg = document.createElement('img')
  5955. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5956. _limg.style = "width: 26px;margin-right: 10px;"
  5957. _lchild.appendChild(_limg)
  5958. let _lspan = document.createElement('span')
  5959. _lspan.innerHTML = "上传中..."
  5960. _lchild.appendChild(_lspan)
  5961. _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%);"
  5962. _loading.appendChild(_lchild)
  5963. var _box = $$('div', {
  5964. "style": {
  5965. "position": "relative",
  5966. "width": "100%",
  5967. "height": "100%",
  5968. },
  5969. })
  5970. _box.appendChild(_loading)
  5971. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5972. switch (str) {
  5973. case "whiteboard":
  5974. aTool = 1;
  5975. _iframe = $$("iframe", {
  5976. "frameborder": "no",
  5977. "border": "0",
  5978. "scrolling ": "no",
  5979. "style": {
  5980. "cssText": "border:0;width:100%;height:100%"
  5981. },
  5982. "src": "https://beta.iwb.cocorobo.cn/"
  5983. })
  5984. _box.appendChild(_iframe);
  5985. _box.appendChild(_jie);
  5986. _formdiv = new U.UF.UI.form(
  5987. "电子白板",
  5988. _box, {
  5989. "id": "whiteboard" + cid + stage + task + tool,
  5990. "style": {
  5991. "width": "90%",
  5992. "height": "90%",
  5993. "overflow": 'hidden'
  5994. },
  5995. "onresize": function () { }
  5996. }, {
  5997. closecallback: function () { }
  5998. }, {
  5999. "style": {
  6000. "height": "36px"
  6001. }
  6002. }).form; //创建窗体
  6003. _taskbar = {
  6004. "id": str + _formdiv.id,
  6005. "style": {
  6006. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6007. },
  6008. "name": "电子白板",
  6009. "forms": _formdiv,
  6010. "click": function () {
  6011. U.MD.D.I.openApplication(str, obj, info);
  6012. }
  6013. }
  6014. break;
  6015. case "mind":
  6016. aTool = 3;
  6017. _iframe = $$("iframe", {
  6018. "frameborder": "no",
  6019. "border": "0",
  6020. "scrolling ": "no",
  6021. "style": {
  6022. "cssText": "border:0;width:100%;height:100%"
  6023. },
  6024. "src": "/kityminder-editor/dist/index.html"
  6025. })
  6026. _box.appendChild(_iframe);
  6027. _box.appendChild(_jie);
  6028. _formdiv = new U.UF.UI.form(
  6029. "思维导图",
  6030. _box, { //"/jsmind/example/demo.html"
  6031. "id": "mind" + cid + stage + task + tool,
  6032. "style": {
  6033. "width": "90%",
  6034. "height": "90%",
  6035. "overflow": 'hidden'
  6036. },
  6037. "onresize": function () { }
  6038. }, {
  6039. closecallback: function () { }
  6040. }, {
  6041. "style": {
  6042. "height": "36px"
  6043. }
  6044. }).form; //创建窗体
  6045. _taskbar = {
  6046. "id": str + _formdiv.id,
  6047. "style": {
  6048. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6049. },
  6050. "name": "思维导图",
  6051. "forms": _formdiv,
  6052. "click": function () {
  6053. U.MD.D.I.openApplication(str, obj, info);
  6054. }
  6055. }
  6056. break;
  6057. case "MindMap":
  6058. aTool = 3;
  6059. _iframe = $$("iframe", {
  6060. "frameborder": "no",
  6061. "border": "0",
  6062. "scrolling ": "no",
  6063. "style": {
  6064. "cssText": "border:0;width:100%;height:100%"
  6065. },
  6066. "src": "//cloud.cocorobo.cn/mind/"
  6067. })
  6068. _box.appendChild(_iframe);
  6069. _box.appendChild(_jie);
  6070. _formdiv = new U.UF.UI.form(
  6071. "思维导图",
  6072. _box, { //"/jsmind/example/demo.html"
  6073. "id": "mind" + cid + stage + task + tool,
  6074. "style": {
  6075. "width": "90%",
  6076. "height": "90%",
  6077. "overflow": 'hidden'
  6078. },
  6079. "onresize": function () { }
  6080. }, {
  6081. closecallback: function () { }
  6082. }, {
  6083. "style": {
  6084. "height": "36px"
  6085. }
  6086. }).form; //创建窗体
  6087. _taskbar = {
  6088. "id": str + _formdiv.id,
  6089. "style": {
  6090. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6091. },
  6092. "name": "思维导图",
  6093. "forms": _formdiv,
  6094. "click": function () {
  6095. U.MD.D.I.openApplication(str, obj, info);
  6096. }
  6097. }
  6098. break;
  6099. case "doc":
  6100. aTool = 6;
  6101. _iframe = $$("iframe", {
  6102. "frameborder": "no",
  6103. "border": "0",
  6104. "scrolling ": "no",
  6105. "style": {
  6106. "cssText": "border:0;width:100%;height:100%"
  6107. },
  6108. "src": "/Office/Word/WordEditArea.htm"
  6109. })
  6110. _box.appendChild(_iframe);
  6111. _box.appendChild(_jie);
  6112. _formdiv = new U.UF.UI.form(
  6113. "协同文档",
  6114. _box, {
  6115. "id": "doc" + cid + stage + task + tool,
  6116. "style": {
  6117. "width": "90%",
  6118. "height": "90%",
  6119. "overflow": 'hidden'
  6120. },
  6121. "onresize": function () { }
  6122. }, {
  6123. closecallback: function () { }
  6124. }, {
  6125. "style": {
  6126. "height": "36px"
  6127. }
  6128. }).form; //创建窗体
  6129. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6130. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6131. })
  6132. _taskbar = {
  6133. "id": str + _formdiv.id,
  6134. "style": {
  6135. "backgroundImage": "url(/img/icon/doc.png)"
  6136. },
  6137. "name": "协同文档",
  6138. "forms": _formdiv,
  6139. "click": function () {
  6140. U.MD.D.I.openApplication(str, obj, info);
  6141. }
  6142. }
  6143. break;
  6144. case "mindNetwork": //好友打开
  6145. aTool = 7;
  6146. _iframe = $$("iframe", {
  6147. "webkitallowfullscreen": "",
  6148. "mozallowfullscreen": "",
  6149. "allowfullscreen": "",
  6150. "frameborder": "no",
  6151. "border": "0",
  6152. "scrolling ": "no",
  6153. "style": {
  6154. "cssText": "border:0; width:100%; height:100%;"
  6155. },
  6156. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6157. })
  6158. _box.appendChild(_iframe);
  6159. _box.appendChild(_jie);
  6160. _formdiv = new U.UF.UI.form(
  6161. "思维网格",
  6162. _box, {
  6163. "id": "mindNetwork" + cid + stage + task + tool,
  6164. "style": {
  6165. "width": "90%",
  6166. "height": "90%",
  6167. "overflow": 'hidden'
  6168. },
  6169. "onresize": function () { }
  6170. }, {
  6171. closecallback: function () { }
  6172. }, {
  6173. "style": {
  6174. "height": "36px"
  6175. }
  6176. }).form; //创建窗体
  6177. _taskbar = {
  6178. "id": str + _formdiv.id,
  6179. "style": {
  6180. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6181. },
  6182. "name": "思维网格",
  6183. "forms": _formdiv,
  6184. "click": function () {
  6185. U.MD.D.I.openApplication(str, obj, info);
  6186. }
  6187. }
  6188. break;
  6189. case "courseDesign":
  6190. _iframe = $$("iframe", {
  6191. "webkitallowfullscreen": "",
  6192. "mozallowfullscreen": "",
  6193. "allowfullscreen": "",
  6194. "frameborder": "no",
  6195. "border": "0",
  6196. "scrolling ": "no",
  6197. "style": {
  6198. "cssText": "border:0; width:100%; height:100%;"
  6199. },
  6200. "src": "/course-design-vue"
  6201. })
  6202. _box.appendChild(_iframe);
  6203. _box.appendChild(_jie);
  6204. _formdiv = new U.UF.UI.form(
  6205. "项目设计",
  6206. _box, {
  6207. "id": "courseDesign" + cid + stage + task + tool,
  6208. "style": {
  6209. "width": "90%",
  6210. "height": "90%",
  6211. "overflow": 'hidden'
  6212. },
  6213. "onresize": function () { }
  6214. }, {
  6215. closecallback: function () { }
  6216. }, {
  6217. "style": {
  6218. "height": "36px"
  6219. }
  6220. }).form; //创建窗体
  6221. _taskbar = {
  6222. "id": str + _formdiv.id,
  6223. "style": {
  6224. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6225. },
  6226. "name": "项目设计",
  6227. "forms": _formdiv,
  6228. "click": function () {
  6229. U.MD.D.I.openApplication(str, obj, info);
  6230. }
  6231. }
  6232. break;
  6233. }
  6234. const script1 = document.createElement("script");
  6235. script1.type = "text/javascript";
  6236. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6237. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6238. const script2 = document.createElement("script");
  6239. script2.type = "text/javascript";
  6240. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6241. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6242. const script3 = document.createElement("script");
  6243. script3.type = "text/javascript";
  6244. script3.charset = "UTF-8";
  6245. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6246. const script4 = document.createElement("script");
  6247. script4.type = "text/javascript";
  6248. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6249. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6250. if (_iframe) {
  6251. if (str == 'doc') {
  6252. _iframe = _formdiv.querySelector('iframe')
  6253. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6254. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6255. _iframe.contentWindow.document.body.appendChild(script1);
  6256. _iframe.contentWindow.document.body.appendChild(script2);
  6257. // _iframe.contentWindow.document.body.appendChild(script3);
  6258. _iframe.contentWindow.document.body.appendChild(script4);
  6259. })
  6260. if (onloadListener) {
  6261. _iframe.contentDocument.location.reload()
  6262. } else {
  6263. _iframe.contentDocument.location.reload()
  6264. }
  6265. } else if (str == 'courseDesign') {
  6266. U.UF.DL.iframeLoad(_iframe, function () {
  6267. // _iframe.contentWindow.U.MD.O.W.load();
  6268. // _iframe.contentWindow.document.body.appendChild(script1);
  6269. _iframe.contentWindow.document.body.appendChild(script2);
  6270. _iframe.contentWindow.document.body.appendChild(script4);
  6271. })
  6272. } else if (str == 'mind') {
  6273. _iframe = _formdiv.querySelector('iframe')
  6274. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6275. //
  6276. _iframe.contentWindow.document.body.appendChild(script1);
  6277. _iframe.contentWindow.document.body.appendChild(script2);
  6278. _iframe.contentWindow.document.body.appendChild(script4);
  6279. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6280. })
  6281. if (onloadListener) {
  6282. _iframe.contentDocument.location.reload()
  6283. } else {
  6284. _iframe.contentDocument.location.reload()
  6285. }
  6286. } else if (str == 'whiteboard') {
  6287. _iframe = _formdiv.querySelector('iframe')
  6288. let onloadListener = _iframe.onload = () => {
  6289. _iframe.contentWindow.document.body.appendChild(script1);
  6290. _iframe.contentWindow.document.body.appendChild(script2);
  6291. _iframe.contentWindow.document.body.appendChild(script4);
  6292. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6293. };
  6294. // if (onloadListener) {
  6295. // try {
  6296. // _iframe.src += "?cocorobo="+new Date().getTime()
  6297. // _iframe.contentWindow.document.location.reload()
  6298. // } catch (error) {
  6299. // }
  6300. // } else {
  6301. // _iframe.contentDocument.location.reload()
  6302. // }
  6303. } else {
  6304. _iframe.onload = () => {
  6305. _iframe.contentWindow.document.body.appendChild(script1);
  6306. _iframe.contentWindow.document.body.appendChild(script2);
  6307. // _iframe.contentWindow.document.body.appendChild(script3);
  6308. _iframe.contentWindow.document.body.appendChild(script4);
  6309. };
  6310. }
  6311. _jie.onclick = async () => {
  6312. let text = ''
  6313. if (aTool == 1) {
  6314. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6315. } else if (aTool == 6) {
  6316. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6317. } else if (aTool == 3) {
  6318. text = await U.MD.D.I.getEditorContent(_iframe);
  6319. }
  6320. _loading.style.display = 'flex'
  6321. console.log(_loading);
  6322. var _ajs = _iframe.contentWindow.document.createElement("script");
  6323. _ajs.type = "text/javascript";
  6324. _ajs.innerHTML =
  6325. // 'console.log(' + _loading + ');\n' +
  6326. 'var _js = document.createElement("script");\n' +
  6327. '_js.type="text/javascript";\n' +
  6328. '_js.charset="UTF-8";\n' +
  6329. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6330. "_js.onload = function(){\n" +
  6331. ' var a = document.getElementsByTagName("img")\n' +
  6332. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6333. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6334. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6335. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6336. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6337. "beforeUpload_shishi(file," +
  6338. "'" +
  6339. _userid +
  6340. "'" +
  6341. ", " +
  6342. "'" +
  6343. _cid +
  6344. "'" +
  6345. ", " +
  6346. "'" +
  6347. _stage +
  6348. "'" +
  6349. ", " +
  6350. "'" +
  6351. _task +
  6352. "'" +
  6353. ", " +
  6354. "'" +
  6355. _tool +
  6356. "'" +
  6357. ", " +
  6358. "'" +
  6359. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6360. "'" +
  6361. ", " +
  6362. "'" +
  6363. aTool +
  6364. "'" +
  6365. ", " +
  6366. "`" +
  6367. text +
  6368. "`" +
  6369. ")\n" +
  6370. " });\n" +
  6371. "}\n" +
  6372. "document.head.appendChild(_js);\n";
  6373. _iframe.contentWindow.document.head.appendChild(_ajs);
  6374. }
  6375. }
  6376. //U.MD.D.I.openClick(str);
  6377. //如果有任务栏信息
  6378. // if (_taskbar) {
  6379. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6380. // }
  6381. }
  6382. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6383. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6384. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6385. _userinfo = US.userInfo, //登录用户信息
  6386. _userid = US.userInfo.userid //登录用户id
  6387. let _iframe;
  6388. let _cid = cid,
  6389. _stage = stage,
  6390. _task = task,
  6391. _tool = tool;
  6392. var _jie = $$("div", {
  6393. "style": {
  6394. "position": "absolute",
  6395. "bottom": "50px",
  6396. "right": "50px",
  6397. "zIndex": "9999",
  6398. "backgroundColor": "#2268bc",
  6399. "color": "#fff",
  6400. "padding": "12px 20px",
  6401. "cursor": "pointer",
  6402. "borderRadius": "4px",
  6403. },
  6404. "innerHTML": "提交作业"
  6405. })
  6406. let aTool = ''
  6407. let _loading = document.createElement('div')
  6408. _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;"
  6409. // _loading.id = "";
  6410. let _lchild = document.createElement('div')
  6411. let _limg = document.createElement('img')
  6412. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6413. _limg.style = "width: 26px;margin-right: 10px;"
  6414. _lchild.appendChild(_limg)
  6415. let _lspan = document.createElement('span')
  6416. _lspan.innerHTML = "上传中..."
  6417. _lchild.appendChild(_lspan)
  6418. _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%);"
  6419. _loading.appendChild(_lchild)
  6420. let _box = $$('div', {
  6421. "style": {
  6422. "position": "relative",
  6423. "width": "100%",
  6424. "height": "100%",
  6425. },
  6426. })
  6427. _box.appendChild(_loading)
  6428. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6429. switch (str) {
  6430. case "whiteboard":
  6431. aTool = 1;
  6432. _iframe = $$("iframe", {
  6433. "frameborder": "no",
  6434. "border": "0",
  6435. "scrolling ": "no",
  6436. "style": {
  6437. "cssText": "border:0;width:100%;height:100%"
  6438. },
  6439. "src": "https://beta.iwb.cocorobo.cn/"
  6440. })
  6441. _box.appendChild(_iframe);
  6442. _box.appendChild(_jie);
  6443. _formdiv = new U.UF.UI.form(
  6444. "电子白板",
  6445. _box, {
  6446. "id": "whiteboard" + cid + stage + task + tool,
  6447. "style": {
  6448. "width": "90%",
  6449. "height": "90%",
  6450. "overflow": 'hidden'
  6451. },
  6452. "onresize": function () { }
  6453. }, {
  6454. closecallback: function () { }
  6455. }, {
  6456. "style": {
  6457. "height": "36px"
  6458. }
  6459. }).form; //创建窗体
  6460. _taskbar = {
  6461. "id": str + _formdiv.id,
  6462. "style": {
  6463. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6464. },
  6465. "name": "电子白板",
  6466. "forms": _formdiv,
  6467. "click": function () {
  6468. U.MD.D.I.openApplication(str, obj, info);
  6469. }
  6470. }
  6471. break;
  6472. case "mind":
  6473. aTool = 3;
  6474. _iframe = $$("iframe", {
  6475. "frameborder": "no",
  6476. "border": "0",
  6477. "scrolling ": "no",
  6478. "style": {
  6479. "cssText": "border:0;width:100%;height:100%"
  6480. },
  6481. "src": "/kityminder-editor/dist/index.html"
  6482. })
  6483. _box.appendChild(_iframe);
  6484. _box.appendChild(_jie);
  6485. _formdiv = new U.UF.UI.form(
  6486. "思维导图",
  6487. _box, { //"/jsmind/example/demo.html"
  6488. "id": "mind" + cid + stage + task + tool,
  6489. "style": {
  6490. "width": "90%",
  6491. "height": "90%",
  6492. "overflow": 'hidden'
  6493. },
  6494. "onresize": function () { }
  6495. }, {
  6496. closecallback: function () { }
  6497. }, {
  6498. "style": {
  6499. "height": "36px"
  6500. }
  6501. }).form; //创建窗体
  6502. _taskbar = {
  6503. "id": str + _formdiv.id,
  6504. "style": {
  6505. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6506. },
  6507. "name": "思维导图",
  6508. "forms": _formdiv,
  6509. "click": function () {
  6510. U.MD.D.I.openApplication(str, obj, info);
  6511. }
  6512. }
  6513. break;
  6514. case "MindMap":
  6515. aTool = 3;
  6516. _iframe = $$("iframe", {
  6517. "frameborder": "no",
  6518. "border": "0",
  6519. "scrolling ": "no",
  6520. "style": {
  6521. "cssText": "border:0;width:100%;height:100%"
  6522. },
  6523. "src": "//cloud.cocorobo.cn/mind/"
  6524. })
  6525. _box.appendChild(_iframe);
  6526. _box.appendChild(_jie);
  6527. _formdiv = new U.UF.UI.form(
  6528. "思维导图",
  6529. _box, { //"/jsmind/example/demo.html"
  6530. "id": "mind" + cid + stage + task + tool,
  6531. "style": {
  6532. "width": "90%",
  6533. "height": "90%",
  6534. "overflow": 'hidden'
  6535. },
  6536. "onresize": function () { }
  6537. }, {
  6538. closecallback: function () { }
  6539. }, {
  6540. "style": {
  6541. "height": "36px"
  6542. }
  6543. }).form; //创建窗体
  6544. _taskbar = {
  6545. "id": str + _formdiv.id,
  6546. "style": {
  6547. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6548. },
  6549. "name": "思维导图",
  6550. "forms": _formdiv,
  6551. "click": function () {
  6552. U.MD.D.I.openApplication(str, obj, info);
  6553. }
  6554. }
  6555. break;
  6556. case "doc":
  6557. aTool = 6;
  6558. _iframe = $$("iframe", {
  6559. "frameborder": "no",
  6560. "border": "0",
  6561. "scrolling ": "no",
  6562. "style": {
  6563. "cssText": "border:0;width:100%;height:100%"
  6564. },
  6565. "src": "/Office/Word/WordEditArea.htm"
  6566. })
  6567. _box.appendChild(_iframe);
  6568. _box.appendChild(_jie);
  6569. _formdiv = new U.UF.UI.form(
  6570. "协同文档",
  6571. _box, {
  6572. "id": "doc" + cid + stage + task + tool,
  6573. "style": {
  6574. "width": "90%",
  6575. "height": "90%",
  6576. "overflow": 'hidden'
  6577. },
  6578. "onresize": function () { }
  6579. }, {
  6580. closecallback: function () { }
  6581. }, {
  6582. "style": {
  6583. "height": "36px"
  6584. }
  6585. }).form; //创建窗体
  6586. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6587. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6588. })
  6589. _taskbar = {
  6590. "id": str + _formdiv.id,
  6591. "style": {
  6592. "backgroundImage": "url(/img/icon/doc.png)"
  6593. },
  6594. "name": "协同文档",
  6595. "forms": _formdiv,
  6596. "click": function () {
  6597. U.MD.D.I.openApplication(str, obj, info);
  6598. }
  6599. }
  6600. break;
  6601. case "mindNetwork": //好友打开
  6602. aTool = 7;
  6603. _iframe = $$("iframe", {
  6604. "webkitallowfullscreen": "",
  6605. "mozallowfullscreen": "",
  6606. "allowfullscreen": "",
  6607. "frameborder": "no",
  6608. "border": "0",
  6609. "scrolling ": "no",
  6610. "style": {
  6611. "cssText": "border:0; width:100%; height:100%;"
  6612. },
  6613. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6614. })
  6615. _box.appendChild(_iframe);
  6616. _box.appendChild(_jie);
  6617. _formdiv = new U.UF.UI.form(
  6618. "思维网格",
  6619. _box, {
  6620. "id": "mindNetwork" + cid + stage + task + tool,
  6621. "style": {
  6622. "width": "90%",
  6623. "height": "90%",
  6624. "overflow": 'hidden'
  6625. },
  6626. "onresize": function () { }
  6627. }, {
  6628. closecallback: function () { }
  6629. }, {
  6630. "style": {
  6631. "height": "36px"
  6632. }
  6633. }).form; //创建窗体
  6634. _taskbar = {
  6635. "id": str + _formdiv.id,
  6636. "style": {
  6637. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6638. },
  6639. "name": "思维网格",
  6640. "forms": _formdiv,
  6641. "click": function () {
  6642. U.MD.D.I.openApplication(str, obj, info);
  6643. }
  6644. }
  6645. break;
  6646. case "courseDesign":
  6647. _iframe = $$("iframe", {
  6648. "webkitallowfullscreen": "",
  6649. "mozallowfullscreen": "",
  6650. "allowfullscreen": "",
  6651. "frameborder": "no",
  6652. "border": "0",
  6653. "scrolling ": "no",
  6654. "style": {
  6655. "cssText": "border:0; width:100%; height:100%;"
  6656. },
  6657. "src": "/course-design-vue"
  6658. })
  6659. _box.appendChild(_iframe);
  6660. _box.appendChild(_jie);
  6661. _formdiv = new U.UF.UI.form(
  6662. "项目设计",
  6663. _box, {
  6664. "id": "courseDesign" + cid + stage + task + tool,
  6665. "style": {
  6666. "width": "90%",
  6667. "height": "90%",
  6668. "overflow": 'hidden'
  6669. },
  6670. "onresize": function () { }
  6671. }, {
  6672. closecallback: function () { }
  6673. }, {
  6674. "style": {
  6675. "height": "36px"
  6676. }
  6677. }).form; //创建窗体
  6678. _taskbar = {
  6679. "id": str + _formdiv.id,
  6680. "style": {
  6681. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6682. },
  6683. "name": "项目设计",
  6684. "forms": _formdiv,
  6685. "click": function () {
  6686. U.MD.D.I.openApplication(str, obj, info);
  6687. }
  6688. }
  6689. break;
  6690. }
  6691. const script1 = document.createElement("script");
  6692. script1.type = "text/javascript";
  6693. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6694. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6695. const script2 = document.createElement("script");
  6696. script2.type = "text/javascript";
  6697. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6698. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6699. const script3 = document.createElement("script");
  6700. script3.type = "text/javascript";
  6701. script3.charset = "UTF-8";
  6702. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6703. const script4 = document.createElement("script");
  6704. script4.type = "text/javascript";
  6705. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6706. script4.src = window.origin + "/js/Common/jietu2E.js";
  6707. if (_iframe) {
  6708. if (str == 'doc') {
  6709. _iframe = _formdiv.querySelector('iframe')
  6710. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6711. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6712. _iframe.contentWindow.document.body.appendChild(script1);
  6713. _iframe.contentWindow.document.body.appendChild(script2);
  6714. // _iframe.contentWindow.document.body.appendChild(script3);
  6715. _iframe.contentWindow.document.body.appendChild(script4);
  6716. })
  6717. if (onloadListener) {
  6718. _iframe.contentDocument.location.reload()
  6719. } else {
  6720. _iframe.contentDocument.location.reload()
  6721. }
  6722. } else if (str == 'courseDesign') {
  6723. U.UF.DL.iframeLoad(_iframe, function () {
  6724. // _iframe.contentWindow.U.MD.O.W.load();
  6725. // _iframe.contentWindow.document.body.appendChild(script1);
  6726. _iframe.contentWindow.document.body.appendChild(script2);
  6727. _iframe.contentWindow.document.body.appendChild(script4);
  6728. })
  6729. } else if (str == 'mind') {
  6730. _iframe = _formdiv.querySelector('iframe')
  6731. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6732. //
  6733. _iframe.contentWindow.document.body.appendChild(script1);
  6734. _iframe.contentWindow.document.body.appendChild(script2);
  6735. _iframe.contentWindow.document.body.appendChild(script4);
  6736. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6737. })
  6738. if (onloadListener) {
  6739. _iframe.contentDocument.location.reload()
  6740. } else {
  6741. _iframe.contentDocument.location.reload()
  6742. }
  6743. } else if (str == 'whiteboard') {
  6744. _iframe = _formdiv.querySelector('iframe')
  6745. let onloadListener = _iframe.onload = () => {
  6746. _iframe.contentWindow.document.body.appendChild(script1);
  6747. _iframe.contentWindow.document.body.appendChild(script2);
  6748. _iframe.contentWindow.document.body.appendChild(script4);
  6749. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6750. };
  6751. // if (onloadListener) {
  6752. // try {
  6753. // _iframe.src += "?cocorobo="+new Date().getTime()
  6754. // _iframe.contentWindow.document.location.reload()
  6755. // } catch (error) {
  6756. // }
  6757. // } else {
  6758. // _iframe.contentDocument.location.reload()
  6759. // }
  6760. } else {
  6761. _iframe.onload = () => {
  6762. _iframe.contentWindow.document.body.appendChild(script1);
  6763. _iframe.contentWindow.document.body.appendChild(script2);
  6764. // _iframe.contentWindow.document.body.appendChild(script3);
  6765. _iframe.contentWindow.document.body.appendChild(script4);
  6766. };
  6767. }
  6768. _jie.onclick = async () => {
  6769. let text = ''
  6770. if (aTool == 1) {
  6771. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6772. } else if (aTool == 6) {
  6773. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6774. } else if (aTool == 3) {
  6775. text = await U.MD.D.I.getEditorContent(_iframe);
  6776. }
  6777. _loading.style.display = 'flex'
  6778. console.log(_loading);
  6779. var _ajs = _iframe.contentWindow.document.createElement("script");
  6780. _ajs.type = "text/javascript";
  6781. _ajs.innerHTML =
  6782. // 'console.log(' + _loading + ');\n' +
  6783. 'var _js = document.createElement("script");\n' +
  6784. '_js.type="text/javascript";\n' +
  6785. '_js.charset="UTF-8";\n' +
  6786. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6787. "_js.onload = function(){\n" +
  6788. ' var a = document.getElementsByTagName("img")\n' +
  6789. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6790. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6791. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6792. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6793. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6794. "beforeUpload_shishi(file," +
  6795. "'" +
  6796. _userid +
  6797. "'" +
  6798. ", " +
  6799. "'" +
  6800. _cid +
  6801. "'" +
  6802. ", " +
  6803. "'" +
  6804. _stage +
  6805. "'" +
  6806. ", " +
  6807. "'" +
  6808. _task +
  6809. "'" +
  6810. ", " +
  6811. "'" +
  6812. _tool +
  6813. "'" +
  6814. ", " +
  6815. "'" +
  6816. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6817. "'" +
  6818. ", " +
  6819. "'" +
  6820. aTool +
  6821. "'" +
  6822. ", " +
  6823. "`" +
  6824. text +
  6825. "`" +
  6826. ")\n" +
  6827. " });\n" +
  6828. "}\n" +
  6829. "document.head.appendChild(_js);\n";
  6830. _iframe.contentWindow.document.head.appendChild(_ajs);
  6831. }
  6832. }
  6833. //U.MD.D.I.openClick(str);
  6834. //如果有任务栏信息
  6835. // if (_taskbar) {
  6836. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6837. // }
  6838. }
  6839. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6840. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6841. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6842. _userid = student.userid, //登录用户id
  6843. _username = student.student //用户名字
  6844. let _iframe;
  6845. let _cid = cid,
  6846. _stage = stage,
  6847. _task = task,
  6848. _tool = tool;
  6849. var _jie = $$("div", {
  6850. "style": {
  6851. "position": "absolute",
  6852. "bottom": "50px",
  6853. "right": "50px",
  6854. "zIndex": "9999",
  6855. "backgroundColor": "#2268bc",
  6856. "color": "#fff",
  6857. "padding": "12px 20px",
  6858. "cursor": "pointer",
  6859. "borderRadius": "4px",
  6860. },
  6861. "innerHTML": "提交作业"
  6862. })
  6863. let aTool = ''
  6864. let _loading = document.createElement('div')
  6865. _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;"
  6866. // _loading.id = "";
  6867. let _lchild = document.createElement('div')
  6868. let _limg = document.createElement('img')
  6869. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6870. _limg.style = "width: 26px;margin-right: 10px;"
  6871. _lchild.appendChild(_limg)
  6872. let _lspan = document.createElement('span')
  6873. _lspan.innerHTML = "上传中..."
  6874. _lchild.appendChild(_lspan)
  6875. _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%);"
  6876. _loading.appendChild(_lchild)
  6877. var _box = $$('div', {
  6878. "style": {
  6879. "position": "relative",
  6880. "width": "100%",
  6881. "height": "100%",
  6882. },
  6883. })
  6884. _box.appendChild(_loading)
  6885. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6886. switch (str) {
  6887. case "whiteboard":
  6888. aTool = 1;
  6889. _iframe = $$("iframe", {
  6890. "frameborder": "no",
  6891. "border": "0",
  6892. "scrolling ": "no",
  6893. "style": {
  6894. "cssText": "border:0;width:100%;height:100%"
  6895. },
  6896. "src": "https://beta.iwb.cocorobo.cn/"
  6897. })
  6898. _box.appendChild(_iframe);
  6899. _box.appendChild(_jie);
  6900. _formdiv = new U.UF.UI.form(
  6901. "电子白板-" + _username,
  6902. _box, {
  6903. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6904. "style": {
  6905. "width": "90%",
  6906. "height": "90%",
  6907. "overflow": 'hidden'
  6908. },
  6909. "onresize": function () { }
  6910. }, {
  6911. closecallback: function () { }
  6912. }, {
  6913. "style": {
  6914. "height": "36px"
  6915. }
  6916. }).form; //创建窗体
  6917. _taskbar = {
  6918. "id": str + _formdiv.id,
  6919. "style": {
  6920. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6921. },
  6922. "name": "电子白板",
  6923. "forms": _formdiv,
  6924. "click": function () {
  6925. U.MD.D.I.openApplication(str, obj, info);
  6926. }
  6927. }
  6928. break;
  6929. case "mind":
  6930. aTool = 3;
  6931. _iframe = $$("iframe", {
  6932. "frameborder": "no",
  6933. "border": "0",
  6934. "scrolling ": "no",
  6935. "style": {
  6936. "cssText": "border:0;width:100%;height:100%"
  6937. },
  6938. "src": "/kityminder-editor/dist/index.html"
  6939. })
  6940. _box.appendChild(_iframe);
  6941. _box.appendChild(_jie);
  6942. _formdiv = new U.UF.UI.form(
  6943. "思维导图-" + _username,
  6944. _box, { //"/jsmind/example/demo.html"
  6945. "id": "mind" + cid + stage + task + tool + _userid,
  6946. "style": {
  6947. "width": "90%",
  6948. "height": "90%",
  6949. "overflow": 'hidden'
  6950. },
  6951. "onresize": function () { }
  6952. }, {
  6953. closecallback: function () { }
  6954. }, {
  6955. "style": {
  6956. "height": "36px"
  6957. }
  6958. }).form; //创建窗体
  6959. _taskbar = {
  6960. "id": str + _formdiv.id,
  6961. "style": {
  6962. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6963. },
  6964. "name": "思维导图",
  6965. "forms": _formdiv,
  6966. "click": function () {
  6967. U.MD.D.I.openApplication(str, obj, info);
  6968. }
  6969. }
  6970. break;
  6971. case "MindMap":
  6972. aTool = 3;
  6973. _iframe = $$("iframe", {
  6974. "frameborder": "no",
  6975. "border": "0",
  6976. "scrolling ": "no",
  6977. "style": {
  6978. "cssText": "border:0;width:100%;height:100%"
  6979. },
  6980. "src": "//cloud.cocorobo.cn/mind/"
  6981. })
  6982. _box.appendChild(_iframe);
  6983. _box.appendChild(_jie);
  6984. _formdiv = new U.UF.UI.form(
  6985. "思维导图-" + _username,
  6986. _box, { //"/jsmind/example/demo.html"
  6987. "id": "mind" + cid + stage + task + tool + _userid,
  6988. "style": {
  6989. "width": "90%",
  6990. "height": "90%",
  6991. "overflow": 'hidden'
  6992. },
  6993. "onresize": function () { }
  6994. }, {
  6995. closecallback: function () { }
  6996. }, {
  6997. "style": {
  6998. "height": "36px"
  6999. }
  7000. }).form; //创建窗体
  7001. _taskbar = {
  7002. "id": str + _formdiv.id,
  7003. "style": {
  7004. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7005. },
  7006. "name": "思维导图",
  7007. "forms": _formdiv,
  7008. "click": function () {
  7009. U.MD.D.I.openApplication(str, obj, info);
  7010. }
  7011. }
  7012. break;
  7013. case "doc":
  7014. aTool = 6;
  7015. _iframe = $$("iframe", {
  7016. "frameborder": "no",
  7017. "border": "0",
  7018. "scrolling ": "no",
  7019. "style": {
  7020. "cssText": "border:0;width:100%;height:100%"
  7021. },
  7022. "src": "/Office/Word/WordEditArea.htm"
  7023. })
  7024. _box.appendChild(_iframe);
  7025. _box.appendChild(_jie);
  7026. _formdiv = new U.UF.UI.form(
  7027. "协同文档-" + _username,
  7028. _box, {
  7029. "id": "doc" + cid + stage + task + tool + _userid,
  7030. "style": {
  7031. "width": "90%",
  7032. "height": "90%",
  7033. "overflow": 'hidden'
  7034. },
  7035. "onresize": function () { }
  7036. }, {
  7037. closecallback: function () { }
  7038. }, {
  7039. "style": {
  7040. "height": "36px"
  7041. }
  7042. }).form; //创建窗体
  7043. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7044. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7045. })
  7046. _taskbar = {
  7047. "id": str + _formdiv.id,
  7048. "style": {
  7049. "backgroundImage": "url(/img/icon/doc.png)"
  7050. },
  7051. "name": "协同文档",
  7052. "forms": _formdiv,
  7053. "click": function () {
  7054. U.MD.D.I.openApplication(str, obj, info);
  7055. }
  7056. }
  7057. break;
  7058. case "mindNetwork": //好友打开
  7059. aTool = 7;
  7060. _iframe = $$("iframe", {
  7061. "webkitallowfullscreen": "",
  7062. "mozallowfullscreen": "",
  7063. "allowfullscreen": "",
  7064. "frameborder": "no",
  7065. "border": "0",
  7066. "scrolling ": "no",
  7067. "style": {
  7068. "cssText": "border:0; width:100%; height:100%;"
  7069. },
  7070. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7071. })
  7072. _box.appendChild(_iframe);
  7073. _box.appendChild(_jie);
  7074. _formdiv = new U.UF.UI.form(
  7075. "思维网格-" + _username,
  7076. _box, {
  7077. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7078. "style": {
  7079. "width": "90%",
  7080. "height": "90%",
  7081. "overflow": 'hidden'
  7082. },
  7083. "onresize": function () { }
  7084. }, {
  7085. closecallback: function () { }
  7086. }, {
  7087. "style": {
  7088. "height": "36px"
  7089. }
  7090. }).form; //创建窗体
  7091. _taskbar = {
  7092. "id": str + _formdiv.id,
  7093. "style": {
  7094. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7095. },
  7096. "name": "思维网格",
  7097. "forms": _formdiv,
  7098. "click": function () {
  7099. U.MD.D.I.openApplication(str, obj, info);
  7100. }
  7101. }
  7102. break;
  7103. case "courseDesign":
  7104. _iframe = $$("iframe", {
  7105. "webkitallowfullscreen": "",
  7106. "mozallowfullscreen": "",
  7107. "allowfullscreen": "",
  7108. "frameborder": "no",
  7109. "border": "0",
  7110. "scrolling ": "no",
  7111. "style": {
  7112. "cssText": "border:0; width:100%; height:100%;"
  7113. },
  7114. "src": "/course-design-vue"
  7115. })
  7116. _box.appendChild(_iframe);
  7117. _box.appendChild(_jie);
  7118. _formdiv = new U.UF.UI.form(
  7119. "项目设计-" + _username,
  7120. _box, {
  7121. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7122. "style": {
  7123. "width": "90%",
  7124. "height": "90%",
  7125. "overflow": 'hidden'
  7126. },
  7127. "onresize": function () { }
  7128. }, {
  7129. closecallback: function () { }
  7130. }, {
  7131. "style": {
  7132. "height": "36px"
  7133. }
  7134. }).form; //创建窗体
  7135. _taskbar = {
  7136. "id": str + _formdiv.id,
  7137. "style": {
  7138. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7139. },
  7140. "name": "项目设计",
  7141. "forms": _formdiv,
  7142. "click": function () {
  7143. U.MD.D.I.openApplication(str, obj, info);
  7144. }
  7145. }
  7146. break;
  7147. }
  7148. const script1 = document.createElement("script");
  7149. script1.type = "text/javascript";
  7150. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7151. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7152. const script2 = document.createElement("script");
  7153. script2.type = "text/javascript";
  7154. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7155. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7156. const script3 = document.createElement("script");
  7157. script3.type = "text/javascript";
  7158. script3.charset = "UTF-8";
  7159. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7160. const script4 = document.createElement("script");
  7161. script4.type = "text/javascript";
  7162. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7163. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7164. if (_iframe) {
  7165. if (str == 'doc') {
  7166. _iframe = _formdiv.querySelector('iframe')
  7167. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7168. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7169. _iframe.contentWindow.document.body.appendChild(script1);
  7170. _iframe.contentWindow.document.body.appendChild(script2);
  7171. // _iframe.contentWindow.document.body.appendChild(script3);
  7172. _iframe.contentWindow.document.body.appendChild(script4);
  7173. })
  7174. if (onloadListener) {
  7175. _iframe.contentDocument.location.reload()
  7176. } else {
  7177. _iframe.contentDocument.location.reload()
  7178. }
  7179. } else if (str == 'courseDesign') {
  7180. U.UF.DL.iframeLoad(_iframe, function () {
  7181. // _iframe.contentWindow.U.MD.O.W.load();
  7182. // _iframe.contentWindow.document.body.appendChild(script1);
  7183. _iframe.contentWindow.document.body.appendChild(script2);
  7184. _iframe.contentWindow.document.body.appendChild(script4);
  7185. })
  7186. } else if (str == 'mind') {
  7187. _iframe = _formdiv.querySelector('iframe')
  7188. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7189. //
  7190. _iframe.contentWindow.document.body.appendChild(script1);
  7191. _iframe.contentWindow.document.body.appendChild(script2);
  7192. _iframe.contentWindow.document.body.appendChild(script4);
  7193. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7194. })
  7195. if (onloadListener) {
  7196. _iframe.contentDocument.location.reload()
  7197. } else {
  7198. _iframe.contentDocument.location.reload()
  7199. }
  7200. } else if (str == 'whiteboard') {
  7201. _iframe = _formdiv.querySelector('iframe')
  7202. let onloadListener = _iframe.onload = () => {
  7203. _iframe.contentWindow.document.body.appendChild(script1);
  7204. _iframe.contentWindow.document.body.appendChild(script2);
  7205. _iframe.contentWindow.document.body.appendChild(script4);
  7206. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7207. };
  7208. // if (onloadListener) {
  7209. // try {
  7210. // _iframe.src += "?cocorobo="+new Date().getTime()
  7211. // _iframe.contentWindow.document.location.reload()
  7212. // } catch (error) {
  7213. // }
  7214. // } else {
  7215. // _iframe.contentDocument.location.reload()
  7216. // }
  7217. } else {
  7218. _iframe.onload = () => {
  7219. _iframe.contentWindow.document.body.appendChild(script1);
  7220. _iframe.contentWindow.document.body.appendChild(script2);
  7221. // _iframe.contentWindow.document.body.appendChild(script3);
  7222. _iframe.contentWindow.document.body.appendChild(script4);
  7223. };
  7224. }
  7225. _jie.onclick = async () => {
  7226. let text = ''
  7227. if (aTool == 1) {
  7228. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7229. } else if (aTool == 6) {
  7230. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7231. } else if (aTool == 3) {
  7232. text = await U.MD.D.I.getEditorContent(_iframe);
  7233. }
  7234. _loading.style.display = 'flex'
  7235. console.log(_loading);
  7236. var _ajs = _iframe.contentWindow.document.createElement("script");
  7237. _ajs.type = "text/javascript";
  7238. _ajs.innerHTML =
  7239. // 'console.log(' + _loading + ');\n' +
  7240. 'var _js = document.createElement("script");\n' +
  7241. '_js.type="text/javascript";\n' +
  7242. '_js.charset="UTF-8";\n' +
  7243. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7244. "_js.onload = function(){\n" +
  7245. ' var a = document.getElementsByTagName("img")\n' +
  7246. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7247. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7248. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7249. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7250. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7251. "beforeUpload_shishi(file," +
  7252. "'" +
  7253. _userid +
  7254. "'" +
  7255. ", " +
  7256. "'" +
  7257. _cid +
  7258. "'" +
  7259. ", " +
  7260. "'" +
  7261. _stage +
  7262. "'" +
  7263. ", " +
  7264. "'" +
  7265. _task +
  7266. "'" +
  7267. ", " +
  7268. "'" +
  7269. _tool +
  7270. "'" +
  7271. ", " +
  7272. "'" +
  7273. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7274. "'" +
  7275. ", " +
  7276. "'" +
  7277. aTool +
  7278. "'" +
  7279. ", " +
  7280. "`" +
  7281. text +
  7282. "`" +
  7283. ")\n" +
  7284. " });\n" +
  7285. "}\n" +
  7286. "document.head.appendChild(_js);\n";
  7287. _iframe.contentWindow.document.head.appendChild(_ajs);
  7288. }
  7289. }
  7290. }
  7291. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7292. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7293. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7294. _userid = student.userid, //登录用户id
  7295. _username = student.student //用户名字
  7296. let _iframe;
  7297. let _cid = cid,
  7298. _stage = stage,
  7299. _task = task,
  7300. _tool = tool;
  7301. var _jie = $$("div", {
  7302. "style": {
  7303. "position": "absolute",
  7304. "bottom": "50px",
  7305. "right": "50px",
  7306. "zIndex": "9999",
  7307. "backgroundColor": "#2268bc",
  7308. "color": "#fff",
  7309. "padding": "12px 20px",
  7310. "cursor": "pointer",
  7311. "borderRadius": "4px",
  7312. },
  7313. "innerHTML": "提交作业"
  7314. })
  7315. let aTool = ''
  7316. let _loading = document.createElement('div')
  7317. _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;"
  7318. // _loading.id = "";
  7319. let _lchild = document.createElement('div')
  7320. let _limg = document.createElement('img')
  7321. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7322. _limg.style = "width: 26px;margin-right: 10px;"
  7323. _lchild.appendChild(_limg)
  7324. let _lspan = document.createElement('span')
  7325. _lspan.innerHTML = "上传中..."
  7326. _lchild.appendChild(_lspan)
  7327. _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%);"
  7328. _loading.appendChild(_lchild)
  7329. var _box = $$('div', {
  7330. "style": {
  7331. "position": "relative",
  7332. "width": "100%",
  7333. "height": "100%",
  7334. },
  7335. })
  7336. _box.appendChild(_loading)
  7337. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7338. switch (str) {
  7339. case "whiteboard":
  7340. aTool = 1;
  7341. _iframe = $$("iframe", {
  7342. "frameborder": "no",
  7343. "border": "0",
  7344. "scrolling ": "no",
  7345. "style": {
  7346. "cssText": "border:0;width:100%;height:100%"
  7347. },
  7348. "src": "https://beta.iwb.cocorobo.cn/"
  7349. })
  7350. _box.appendChild(_iframe);
  7351. _box.appendChild(_jie);
  7352. _formdiv = new U.UF.UI.form(
  7353. "电子白板-" + _username,
  7354. _box, {
  7355. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7356. "style": {
  7357. "width": "90%",
  7358. "height": "90%",
  7359. "overflow": 'hidden'
  7360. },
  7361. "onresize": function () { }
  7362. }, {
  7363. closecallback: function () { }
  7364. }, {
  7365. "style": {
  7366. "height": "36px"
  7367. }
  7368. }).form; //创建窗体
  7369. _taskbar = {
  7370. "id": str + _formdiv.id,
  7371. "style": {
  7372. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7373. },
  7374. "name": "电子白板",
  7375. "forms": _formdiv,
  7376. "click": function () {
  7377. U.MD.D.I.openApplication(str, obj, info);
  7378. }
  7379. }
  7380. break;
  7381. case "mind":
  7382. aTool = 3;
  7383. _iframe = $$("iframe", {
  7384. "frameborder": "no",
  7385. "border": "0",
  7386. "scrolling ": "no",
  7387. "style": {
  7388. "cssText": "border:0;width:100%;height:100%"
  7389. },
  7390. "src": "/kityminder-editor/dist/index.html"
  7391. })
  7392. _box.appendChild(_iframe);
  7393. _box.appendChild(_jie);
  7394. _formdiv = new U.UF.UI.form(
  7395. "思维导图-" + _username,
  7396. _box, { //"/jsmind/example/demo.html"
  7397. "id": "mind" + cid + stage + task + tool + _userid,
  7398. "style": {
  7399. "width": "90%",
  7400. "height": "90%",
  7401. "overflow": 'hidden'
  7402. },
  7403. "onresize": function () { }
  7404. }, {
  7405. closecallback: function () { }
  7406. }, {
  7407. "style": {
  7408. "height": "36px"
  7409. }
  7410. }).form; //创建窗体
  7411. _taskbar = {
  7412. "id": str + _formdiv.id,
  7413. "style": {
  7414. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7415. },
  7416. "name": "思维导图",
  7417. "forms": _formdiv,
  7418. "click": function () {
  7419. U.MD.D.I.openApplication(str, obj, info);
  7420. }
  7421. }
  7422. break;
  7423. case "MindMap":
  7424. aTool = 3;
  7425. _iframe = $$("iframe", {
  7426. "frameborder": "no",
  7427. "border": "0",
  7428. "scrolling ": "no",
  7429. "style": {
  7430. "cssText": "border:0;width:100%;height:100%"
  7431. },
  7432. "src": "//cloud.cocorobo.cn/mind/"
  7433. })
  7434. _box.appendChild(_iframe);
  7435. _box.appendChild(_jie);
  7436. _formdiv = new U.UF.UI.form(
  7437. "思维导图-" + _username,
  7438. _box, { //"/jsmind/example/demo.html"
  7439. "id": "mind" + cid + stage + task + tool + _userid,
  7440. "style": {
  7441. "width": "90%",
  7442. "height": "90%",
  7443. "overflow": 'hidden'
  7444. },
  7445. "onresize": function () { }
  7446. }, {
  7447. closecallback: function () { }
  7448. }, {
  7449. "style": {
  7450. "height": "36px"
  7451. }
  7452. }).form; //创建窗体
  7453. _taskbar = {
  7454. "id": str + _formdiv.id,
  7455. "style": {
  7456. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7457. },
  7458. "name": "思维导图",
  7459. "forms": _formdiv,
  7460. "click": function () {
  7461. U.MD.D.I.openApplication(str, obj, info);
  7462. }
  7463. }
  7464. break;
  7465. case "doc":
  7466. aTool = 6;
  7467. _iframe = $$("iframe", {
  7468. "frameborder": "no",
  7469. "border": "0",
  7470. "scrolling ": "no",
  7471. "style": {
  7472. "cssText": "border:0;width:100%;height:100%"
  7473. },
  7474. "src": "/Office/Word/WordEditArea.htm"
  7475. })
  7476. _box.appendChild(_iframe);
  7477. _box.appendChild(_jie);
  7478. _formdiv = new U.UF.UI.form(
  7479. "协同文档-" + _username,
  7480. _box, {
  7481. "id": "doc" + cid + stage + task + tool + _userid,
  7482. "style": {
  7483. "width": "90%",
  7484. "height": "90%",
  7485. "overflow": 'hidden'
  7486. },
  7487. "onresize": function () { }
  7488. }, {
  7489. closecallback: function () { }
  7490. }, {
  7491. "style": {
  7492. "height": "36px"
  7493. }
  7494. }).form; //创建窗体
  7495. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7496. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7497. })
  7498. _taskbar = {
  7499. "id": str + _formdiv.id,
  7500. "style": {
  7501. "backgroundImage": "url(/img/icon/doc.png)"
  7502. },
  7503. "name": "协同文档",
  7504. "forms": _formdiv,
  7505. "click": function () {
  7506. U.MD.D.I.openApplication(str, obj, info);
  7507. }
  7508. }
  7509. break;
  7510. case "mindNetwork": //好友打开
  7511. aTool = 7;
  7512. _iframe = $$("iframe", {
  7513. "webkitallowfullscreen": "",
  7514. "mozallowfullscreen": "",
  7515. "allowfullscreen": "",
  7516. "frameborder": "no",
  7517. "border": "0",
  7518. "scrolling ": "no",
  7519. "style": {
  7520. "cssText": "border:0; width:100%; height:100%;"
  7521. },
  7522. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7523. })
  7524. _box.appendChild(_iframe);
  7525. _box.appendChild(_jie);
  7526. _formdiv = new U.UF.UI.form(
  7527. "思维网格-" + _username,
  7528. _box, {
  7529. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7530. "style": {
  7531. "width": "90%",
  7532. "height": "90%",
  7533. "overflow": 'hidden'
  7534. },
  7535. "onresize": function () { }
  7536. }, {
  7537. closecallback: function () { }
  7538. }, {
  7539. "style": {
  7540. "height": "36px"
  7541. }
  7542. }).form; //创建窗体
  7543. _taskbar = {
  7544. "id": str + _formdiv.id,
  7545. "style": {
  7546. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7547. },
  7548. "name": "思维网格",
  7549. "forms": _formdiv,
  7550. "click": function () {
  7551. U.MD.D.I.openApplication(str, obj, info);
  7552. }
  7553. }
  7554. break;
  7555. case "courseDesign":
  7556. _iframe = $$("iframe", {
  7557. "webkitallowfullscreen": "",
  7558. "mozallowfullscreen": "",
  7559. "allowfullscreen": "",
  7560. "frameborder": "no",
  7561. "border": "0",
  7562. "scrolling ": "no",
  7563. "style": {
  7564. "cssText": "border:0; width:100%; height:100%;"
  7565. },
  7566. "src": "/course-design-vue"
  7567. })
  7568. _box.appendChild(_iframe);
  7569. _box.appendChild(_jie);
  7570. _formdiv = new U.UF.UI.form(
  7571. "项目设计-" + _username,
  7572. _box, {
  7573. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7574. "style": {
  7575. "width": "90%",
  7576. "height": "90%",
  7577. "overflow": 'hidden'
  7578. },
  7579. "onresize": function () { }
  7580. }, {
  7581. closecallback: function () { }
  7582. }, {
  7583. "style": {
  7584. "height": "36px"
  7585. }
  7586. }).form; //创建窗体
  7587. _taskbar = {
  7588. "id": str + _formdiv.id,
  7589. "style": {
  7590. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7591. },
  7592. "name": "项目设计",
  7593. "forms": _formdiv,
  7594. "click": function () {
  7595. U.MD.D.I.openApplication(str, obj, info);
  7596. }
  7597. }
  7598. break;
  7599. }
  7600. const script1 = document.createElement("script");
  7601. script1.type = "text/javascript";
  7602. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7603. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7604. const script2 = document.createElement("script");
  7605. script2.type = "text/javascript";
  7606. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7607. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7608. const script3 = document.createElement("script");
  7609. script3.type = "text/javascript";
  7610. script3.charset = "UTF-8";
  7611. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7612. const script4 = document.createElement("script");
  7613. script4.type = "text/javascript";
  7614. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7615. script4.src = window.origin + "/js/Common/jietu2E.js";
  7616. if (_iframe) {
  7617. if (str == 'doc') {
  7618. _iframe = _formdiv.querySelector('iframe')
  7619. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7620. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7621. _iframe.contentWindow.document.body.appendChild(script1);
  7622. _iframe.contentWindow.document.body.appendChild(script2);
  7623. // _iframe.contentWindow.document.body.appendChild(script3);
  7624. _iframe.contentWindow.document.body.appendChild(script4);
  7625. })
  7626. if (onloadListener) {
  7627. _iframe.contentDocument.location.reload()
  7628. } else {
  7629. _iframe.contentDocument.location.reload()
  7630. }
  7631. } else if (str == 'courseDesign') {
  7632. U.UF.DL.iframeLoad(_iframe, function () {
  7633. // _iframe.contentWindow.U.MD.O.W.load();
  7634. // _iframe.contentWindow.document.body.appendChild(script1);
  7635. _iframe.contentWindow.document.body.appendChild(script2);
  7636. _iframe.contentWindow.document.body.appendChild(script4);
  7637. })
  7638. } else if (str == 'mind') {
  7639. _iframe = _formdiv.querySelector('iframe')
  7640. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7641. //
  7642. _iframe.contentWindow.document.body.appendChild(script1);
  7643. _iframe.contentWindow.document.body.appendChild(script2);
  7644. _iframe.contentWindow.document.body.appendChild(script4);
  7645. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7646. })
  7647. if (onloadListener) {
  7648. _iframe.contentDocument.location.reload()
  7649. } else {
  7650. _iframe.contentDocument.location.reload()
  7651. }
  7652. } else if (str == 'whiteboard') {
  7653. _iframe = _formdiv.querySelector('iframe')
  7654. let onloadListener = _iframe.onload = () => {
  7655. _iframe.contentWindow.document.body.appendChild(script1);
  7656. _iframe.contentWindow.document.body.appendChild(script2);
  7657. _iframe.contentWindow.document.body.appendChild(script4);
  7658. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7659. };
  7660. // if (onloadListener) {
  7661. // try {
  7662. // _iframe.src += "?cocorobo="+new Date().getTime()
  7663. // _iframe.contentWindow.document.location.reload()
  7664. // } catch (error) {
  7665. // }
  7666. // } else {
  7667. // _iframe.contentDocument.location.reload()
  7668. // }
  7669. } else {
  7670. _iframe.onload = () => {
  7671. _iframe.contentWindow.document.body.appendChild(script1);
  7672. _iframe.contentWindow.document.body.appendChild(script2);
  7673. // _iframe.contentWindow.document.body.appendChild(script3);
  7674. _iframe.contentWindow.document.body.appendChild(script4);
  7675. };
  7676. }
  7677. _jie.onclick = async () => {
  7678. let text = ''
  7679. if (aTool == 1) {
  7680. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7681. } else if (aTool == 6) {
  7682. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7683. } else if (aTool == 3) {
  7684. text = await U.MD.D.I.getEditorContent(_iframe);
  7685. }
  7686. _loading.style.display = 'flex'
  7687. console.log(_loading);
  7688. var _ajs = _iframe.contentWindow.document.createElement("script");
  7689. _ajs.type = "text/javascript";
  7690. _ajs.innerHTML =
  7691. // 'console.log(' + _loading + ');\n' +
  7692. 'var _js = document.createElement("script");\n' +
  7693. '_js.type="text/javascript";\n' +
  7694. '_js.charset="UTF-8";\n' +
  7695. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7696. "_js.onload = function(){\n" +
  7697. ' var a = document.getElementsByTagName("img")\n' +
  7698. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7699. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7700. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7701. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7702. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7703. "beforeUpload_shishi(file," +
  7704. "'" +
  7705. _userid +
  7706. "'" +
  7707. ", " +
  7708. "'" +
  7709. _cid +
  7710. "'" +
  7711. ", " +
  7712. "'" +
  7713. _stage +
  7714. "'" +
  7715. ", " +
  7716. "'" +
  7717. _task +
  7718. "'" +
  7719. ", " +
  7720. "'" +
  7721. _tool +
  7722. "'" +
  7723. ", " +
  7724. "'" +
  7725. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7726. "'" +
  7727. ", " +
  7728. "'" +
  7729. aTool +
  7730. "'" +
  7731. ", " +
  7732. "`" +
  7733. text +
  7734. "`" +
  7735. ")\n" +
  7736. " });\n" +
  7737. "}\n" +
  7738. "document.head.appendChild(_js);\n";
  7739. _iframe.contentWindow.document.head.appendChild(_ajs);
  7740. }
  7741. }
  7742. }
  7743. U.MD.D.I.getEditorContent = function (iframe) {
  7744. return new Promise((resolve, reject) => {
  7745. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7746. console.log(content);
  7747. resolve(content)
  7748. });
  7749. });
  7750. }
  7751. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7752. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7753. // if (res.value[0].length > 0) {
  7754. // // resolve(res.value[0][0].text);
  7755. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7756. // $(fileInput).val('');
  7757. // });
  7758. // }
  7759. // }, [], { "type": "GET", "withCredentials": true });
  7760. var xmlhttp;
  7761. var Mac, Sn, DeviceId
  7762. if (window.XMLHttpRequest) {
  7763. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7764. xmlhttp = new XMLHttpRequest();
  7765. } else {
  7766. // IE6, IE5 浏览器执行代码
  7767. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7768. }
  7769. xmlhttp.onreadystatechange = function () {
  7770. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7771. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7772. // resolve(res.value[0][0].text);
  7773. if (type == '2') {
  7774. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7775. } else if (type == '3') {
  7776. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7777. }
  7778. } else {
  7779. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7780. }
  7781. }
  7782. }
  7783. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7784. xmlhttp.send();
  7785. }
  7786. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7787. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7788. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7789. _userinfo = US.userInfo, //登录用户信息
  7790. _userid = US.userInfo.userid //登录用户id
  7791. let _iframe;
  7792. let _cid = cid,
  7793. _stage = stage,
  7794. _task = task,
  7795. _tool = tool;
  7796. var _jie = $$("div", {
  7797. "style": {
  7798. "position": "absolute",
  7799. "bottom": "50px",
  7800. "right": "50px",
  7801. "zIndex": "9999",
  7802. "backgroundColor": "#2268bc",
  7803. "color": "#fff",
  7804. "padding": "12px 20px",
  7805. "cursor": "pointer",
  7806. "borderRadius": "4px",
  7807. },
  7808. "innerHTML": "确认并提交"
  7809. })
  7810. let aTool = ''
  7811. let _loading = document.createElement('div')
  7812. _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;"
  7813. // _loading.id = "";
  7814. let _lchild = document.createElement('div')
  7815. let _limg = document.createElement('img')
  7816. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7817. _limg.style = "width: 26px;margin-right: 10px;"
  7818. _lchild.appendChild(_limg)
  7819. let _lspan = document.createElement('span')
  7820. _lspan.innerHTML = "上传中..."
  7821. _lchild.appendChild(_lspan)
  7822. _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%);"
  7823. _loading.appendChild(_lchild)
  7824. var _box = $$('div', {
  7825. "style": {
  7826. "position": "relative",
  7827. "width": "100%",
  7828. "height": "100%",
  7829. },
  7830. })
  7831. _box.appendChild(_loading)
  7832. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7833. switch (str) {
  7834. case "whiteboard":
  7835. aTool = 1;
  7836. _iframe = $$("iframe", {
  7837. "frameborder": "no",
  7838. "border": "0",
  7839. "scrolling ": "no",
  7840. "style": {
  7841. "cssText": "border:0;width:100%;height:100%"
  7842. },
  7843. "src": "https://beta.iwb.cocorobo.cn/"
  7844. })
  7845. _box.appendChild(_iframe);
  7846. _box.appendChild(_jie);
  7847. _formdiv = new U.UF.UI.form(
  7848. "电子白板",
  7849. _box, {
  7850. "id": "whiteboards" + cid + stage + task + tool,
  7851. "style": {
  7852. "width": "90%",
  7853. "height": "90%",
  7854. "overflow": 'hidden'
  7855. },
  7856. "onresize": function () { }
  7857. }, {
  7858. closecallback: function () { }
  7859. }, {
  7860. "style": {
  7861. "height": "36px"
  7862. }
  7863. }).form; //创建窗体
  7864. _taskbar = {
  7865. "id": str + _formdiv.id,
  7866. "style": {
  7867. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7868. },
  7869. "name": "电子白板",
  7870. "forms": _formdiv,
  7871. "click": function () {
  7872. U.MD.D.I.openApplication(str, obj, info);
  7873. }
  7874. }
  7875. break;
  7876. case "mind":
  7877. aTool = 3;
  7878. _iframe = $$("iframe", {
  7879. "frameborder": "no",
  7880. "border": "0",
  7881. "scrolling ": "no",
  7882. "style": {
  7883. "cssText": "border:0;width:100%;height:100%"
  7884. },
  7885. "src": "/kityminder-editor/dist/index.html"
  7886. });
  7887. _box.appendChild(_iframe);
  7888. _box.appendChild(_jie);
  7889. _formdiv = new U.UF.UI.form(
  7890. "思维导图",
  7891. _box, { //"/jsmind/example/demo.html"
  7892. "id": "minds" + cid + stage + task + tool,
  7893. "style": {
  7894. "width": "90%",
  7895. "height": "90%",
  7896. "overflow": 'hidden'
  7897. },
  7898. "onresize": function () { }
  7899. }, {
  7900. closecallback: function () { }
  7901. }, {
  7902. "style": {
  7903. "height": "36px"
  7904. }
  7905. }).form; //创建窗体
  7906. _taskbar = {
  7907. "id": str + _formdiv.id,
  7908. "style": {
  7909. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7910. },
  7911. "name": "思维导图",
  7912. "forms": _formdiv,
  7913. "click": function () {
  7914. U.MD.D.I.openApplication(str, obj, info);
  7915. }
  7916. }
  7917. break;
  7918. case "doc":
  7919. aTool = 6;
  7920. _iframe = $$("iframe", {
  7921. "frameborder": "no",
  7922. "border": "0",
  7923. "scrolling ": "no",
  7924. "style": {
  7925. "cssText": "border:0;width:100%;height:100%"
  7926. },
  7927. "src": "/Office/Word/WordEditArea.htm"
  7928. })
  7929. _box.appendChild(_iframe);
  7930. _box.appendChild(_jie);
  7931. _formdiv = new U.UF.UI.form(
  7932. "协同文档",
  7933. _box, {
  7934. "id": "docs" + cid + stage + task + tool,
  7935. "style": {
  7936. "width": "90%",
  7937. "height": "90%",
  7938. "overflow": 'hidden'
  7939. },
  7940. "onresize": function () { }
  7941. }, {
  7942. closecallback: function () { }
  7943. }, {
  7944. "style": {
  7945. "height": "36px"
  7946. }
  7947. }).form; //创建窗体
  7948. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7949. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7950. })
  7951. _taskbar = {
  7952. "id": str + _formdiv.id,
  7953. "style": {
  7954. "backgroundImage": "url(/img/icon/doc.png)"
  7955. },
  7956. "name": "协同文档",
  7957. "forms": _formdiv,
  7958. "click": function () {
  7959. U.MD.D.I.openApplication(str, obj, info);
  7960. }
  7961. }
  7962. break;
  7963. }
  7964. const script1 = document.createElement("script");
  7965. script1.type = "text/javascript";
  7966. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7967. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7968. const script2 = document.createElement("script");
  7969. script2.type = "text/javascript";
  7970. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7971. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7972. const script3 = document.createElement("script");
  7973. script3.type = "text/javascript";
  7974. script3.charset = "UTF-8";
  7975. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7976. const script4 = document.createElement("script");
  7977. script4.type = "text/javascript";
  7978. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7979. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7980. if (_iframe) {
  7981. if (str == 'doc') {
  7982. _iframe = _formdiv.querySelector('iframe')
  7983. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7984. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7985. _iframe.contentWindow.document.body.appendChild(script1);
  7986. _iframe.contentWindow.document.body.appendChild(script2);
  7987. // _iframe.contentWindow.document.body.appendChild(script3);
  7988. _iframe.contentWindow.document.body.appendChild(script4);
  7989. })
  7990. if (onloadListener) {
  7991. _iframe.contentDocument.location.reload()
  7992. } else {
  7993. _iframe.contentDocument.location.reload()
  7994. }
  7995. } else if (str == 'mind') {
  7996. _iframe = _formdiv.querySelector('iframe')
  7997. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7998. _iframe.contentWindow.document.body.appendChild(script1);
  7999. _iframe.contentWindow.document.body.appendChild(script2);
  8000. _iframe.contentWindow.document.body.appendChild(script4);
  8001. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8002. })
  8003. if (onloadListener) {
  8004. _iframe.contentDocument.location.reload()
  8005. } else {
  8006. _iframe.contentDocument.location.reload()
  8007. }
  8008. } else {
  8009. _iframe.onload = () => {
  8010. _iframe.contentWindow.document.body.appendChild(script1);
  8011. _iframe.contentWindow.document.body.appendChild(script2);
  8012. // _iframe.contentWindow.document.body.appendChild(script3);
  8013. _iframe.contentWindow.document.body.appendChild(script4);
  8014. };
  8015. }
  8016. _jie.onclick = async () => {
  8017. let text = ''
  8018. if (aTool == 6) {
  8019. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8020. } else if (aTool == 3) {
  8021. text = await U.MD.D.I.getEditorContent(_iframe);
  8022. }
  8023. _loading.style.display = 'flex'
  8024. console.log(_loading);
  8025. var _ajs = _iframe.contentWindow.document.createElement("script");
  8026. _ajs.type = "text/javascript";
  8027. _ajs.innerHTML =
  8028. // 'console.log(' + _loading + ');\n' +
  8029. 'var _js = document.createElement("script");\n' +
  8030. '_js.type="text/javascript";\n' +
  8031. '_js.charset="UTF-8";\n' +
  8032. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8033. "_js.onload = function(){\n" +
  8034. ' var a = document.getElementsByTagName("img")\n' +
  8035. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8036. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8037. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8038. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8039. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8040. "beforeUpload_shishi(file," +
  8041. "'" +
  8042. _userid +
  8043. "'" +
  8044. ", " +
  8045. "'" +
  8046. _cid +
  8047. "'" +
  8048. ", " +
  8049. "'" +
  8050. _stage +
  8051. "'" +
  8052. ", " +
  8053. "'" +
  8054. _task +
  8055. "'" +
  8056. ", " +
  8057. "'" +
  8058. _tool +
  8059. "'" +
  8060. ", " +
  8061. "'" +
  8062. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8063. "'" +
  8064. ", " +
  8065. "'" +
  8066. aTool +
  8067. "'" +
  8068. ", " +
  8069. "`" +
  8070. text +
  8071. "`" +
  8072. ")\n" +
  8073. " });\n" +
  8074. "}\n" +
  8075. "document.head.appendChild(_js);\n";
  8076. _iframe.contentWindow.document.head.appendChild(_ajs);
  8077. }
  8078. }
  8079. //U.MD.D.I.openClick(str);
  8080. //如果有任务栏信息
  8081. // if (_taskbar) {
  8082. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8083. // }
  8084. }
  8085. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8086. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8087. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8088. _userinfo = US.userInfo, //登录用户信息
  8089. _userid = US.userInfo.userid //登录用户id
  8090. let _iframe;
  8091. let _cid = cid,
  8092. _stage = stage,
  8093. _task = task,
  8094. _tool = tool;
  8095. var _jie = $$("div", {
  8096. "style": {
  8097. "position": "absolute",
  8098. "bottom": "50px",
  8099. "right": "50px",
  8100. "zIndex": "9999",
  8101. "backgroundColor": "#2268bc",
  8102. "color": "#fff",
  8103. "padding": "12px 20px",
  8104. "cursor": "pointer",
  8105. "borderRadius": "4px",
  8106. },
  8107. "innerHTML": "确认并提交"
  8108. })
  8109. let aTool = ''
  8110. let _loading = document.createElement('div')
  8111. _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;"
  8112. // _loading.id = "";
  8113. let _lchild = document.createElement('div')
  8114. let _limg = document.createElement('img')
  8115. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8116. _limg.style = "width: 26px;margin-right: 10px;"
  8117. _lchild.appendChild(_limg)
  8118. let _lspan = document.createElement('span')
  8119. _lspan.innerHTML = "上传中..."
  8120. _lchild.appendChild(_lspan)
  8121. _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%);"
  8122. _loading.appendChild(_lchild)
  8123. var _box = $$('div', {
  8124. "style": {
  8125. "position": "relative",
  8126. "width": "100%",
  8127. "height": "100%",
  8128. },
  8129. })
  8130. _box.appendChild(_loading)
  8131. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8132. switch (str) {
  8133. case "whiteboard":
  8134. aTool = 1;
  8135. _iframe = $$("iframe", {
  8136. "frameborder": "no",
  8137. "border": "0",
  8138. "scrolling ": "no",
  8139. "style": {
  8140. "cssText": "border:0;width:100%;height:100%"
  8141. },
  8142. "src": "https://beta.iwb.cocorobo.cn/"
  8143. })
  8144. _box.appendChild(_iframe);
  8145. _box.appendChild(_jie);
  8146. _formdiv = new U.UF.UI.form(
  8147. "电子白板",
  8148. _box, {
  8149. "id": "whiteboards" + cid + stage + task + tool,
  8150. "style": {
  8151. "width": "90%",
  8152. "height": "90%",
  8153. "overflow": 'hidden'
  8154. },
  8155. "onresize": function () { }
  8156. }, {
  8157. closecallback: function () { }
  8158. }, {
  8159. "style": {
  8160. "height": "36px"
  8161. }
  8162. }).form; //创建窗体
  8163. _taskbar = {
  8164. "id": str + _formdiv.id,
  8165. "style": {
  8166. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8167. },
  8168. "name": "电子白板",
  8169. "forms": _formdiv,
  8170. "click": function () {
  8171. U.MD.D.I.openApplication(str, obj, info);
  8172. }
  8173. }
  8174. break;
  8175. case "mind":
  8176. aTool = 3;
  8177. _iframe = $$("iframe", {
  8178. "frameborder": "no",
  8179. "border": "0",
  8180. "scrolling ": "no",
  8181. "style": {
  8182. "cssText": "border:0;width:100%;height:100%"
  8183. },
  8184. "src": "/kityminder-editor/dist/index.html"
  8185. });
  8186. _box.appendChild(_iframe);
  8187. _box.appendChild(_jie);
  8188. _formdiv = new U.UF.UI.form(
  8189. "思维导图",
  8190. _box, { //"/jsmind/example/demo.html"
  8191. "id": "minds" + cid + stage + task + tool,
  8192. "style": {
  8193. "width": "90%",
  8194. "height": "90%",
  8195. "overflow": 'hidden'
  8196. },
  8197. "onresize": function () { }
  8198. }, {
  8199. closecallback: function () { }
  8200. }, {
  8201. "style": {
  8202. "height": "36px"
  8203. }
  8204. }).form; //创建窗体
  8205. _taskbar = {
  8206. "id": str + _formdiv.id,
  8207. "style": {
  8208. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8209. },
  8210. "name": "思维导图",
  8211. "forms": _formdiv,
  8212. "click": function () {
  8213. U.MD.D.I.openApplication(str, obj, info);
  8214. }
  8215. }
  8216. break;
  8217. case "doc":
  8218. aTool = 6;
  8219. _iframe = $$("iframe", {
  8220. "frameborder": "no",
  8221. "border": "0",
  8222. "scrolling ": "no",
  8223. "style": {
  8224. "cssText": "border:0;width:100%;height:100%"
  8225. },
  8226. "src": "/Office/Word/WordEditArea.htm"
  8227. })
  8228. _box.appendChild(_iframe);
  8229. _box.appendChild(_jie);
  8230. _formdiv = new U.UF.UI.form(
  8231. "协同文档",
  8232. _box, {
  8233. "id": "docs" + cid + stage + task + tool,
  8234. "style": {
  8235. "width": "90%",
  8236. "height": "90%",
  8237. "overflow": 'hidden'
  8238. },
  8239. "onresize": function () { }
  8240. }, {
  8241. closecallback: function () { }
  8242. }, {
  8243. "style": {
  8244. "height": "36px"
  8245. }
  8246. }).form; //创建窗体
  8247. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8248. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8249. })
  8250. _taskbar = {
  8251. "id": str + _formdiv.id,
  8252. "style": {
  8253. "backgroundImage": "url(/img/icon/doc.png)"
  8254. },
  8255. "name": "协同文档",
  8256. "forms": _formdiv,
  8257. "click": function () {
  8258. U.MD.D.I.openApplication(str, obj, info);
  8259. }
  8260. }
  8261. break;
  8262. }
  8263. const script1 = document.createElement("script");
  8264. script1.type = "text/javascript";
  8265. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8266. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8267. const script2 = document.createElement("script");
  8268. script2.type = "text/javascript";
  8269. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8270. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8271. const script3 = document.createElement("script");
  8272. script3.type = "text/javascript";
  8273. script3.charset = "UTF-8";
  8274. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8275. const script4 = document.createElement("script");
  8276. script4.type = "text/javascript";
  8277. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8278. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8279. if (_iframe) {
  8280. if (str == 'doc') {
  8281. _iframe = _formdiv.querySelector('iframe')
  8282. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8283. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8284. _iframe.contentWindow.document.body.appendChild(script1);
  8285. _iframe.contentWindow.document.body.appendChild(script2);
  8286. // _iframe.contentWindow.document.body.appendChild(script3);
  8287. _iframe.contentWindow.document.body.appendChild(script4);
  8288. })
  8289. if (onloadListener) {
  8290. _iframe.contentDocument.location.reload()
  8291. } else {
  8292. _iframe.contentDocument.location.reload()
  8293. }
  8294. } else if (str == 'mind') {
  8295. _iframe = _formdiv.querySelector('iframe')
  8296. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8297. _iframe.contentWindow.document.body.appendChild(script1);
  8298. _iframe.contentWindow.document.body.appendChild(script2);
  8299. _iframe.contentWindow.document.body.appendChild(script4);
  8300. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8301. })
  8302. if (onloadListener) {
  8303. _iframe.contentDocument.location.reload()
  8304. } else {
  8305. _iframe.contentDocument.location.reload()
  8306. }
  8307. } else {
  8308. _iframe.onload = () => {
  8309. _iframe.contentWindow.document.body.appendChild(script1);
  8310. _iframe.contentWindow.document.body.appendChild(script2);
  8311. // _iframe.contentWindow.document.body.appendChild(script3);
  8312. _iframe.contentWindow.document.body.appendChild(script4);
  8313. };
  8314. }
  8315. _jie.onclick = async () => {
  8316. let text = ''
  8317. if (aTool == 6) {
  8318. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8319. } else if (aTool == 3) {
  8320. text = await U.MD.D.I.getEditorContent(_iframe);
  8321. }
  8322. _loading.style.display = 'flex'
  8323. console.log(_loading);
  8324. var _ajs = _iframe.contentWindow.document.createElement("script");
  8325. _ajs.type = "text/javascript";
  8326. _ajs.innerHTML =
  8327. // 'console.log(' + _loading + ');\n' +
  8328. 'var _js = document.createElement("script");\n' +
  8329. '_js.type="text/javascript";\n' +
  8330. '_js.charset="UTF-8";\n' +
  8331. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8332. "_js.onload = function(){\n" +
  8333. ' var a = document.getElementsByTagName("img")\n' +
  8334. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8335. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8336. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8337. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8338. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8339. "beforeUpload_shishi(file," +
  8340. "'" +
  8341. _userid +
  8342. "'" +
  8343. ", " +
  8344. "'" +
  8345. _cid +
  8346. "'" +
  8347. ", " +
  8348. "'" +
  8349. _stage +
  8350. "'" +
  8351. ", " +
  8352. "'" +
  8353. _task +
  8354. "'" +
  8355. ", " +
  8356. "'" +
  8357. _tool +
  8358. "'" +
  8359. ", " +
  8360. "'" +
  8361. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8362. "'" +
  8363. ", " +
  8364. "'" +
  8365. aTool +
  8366. "'" +
  8367. ", " +
  8368. "`" +
  8369. text +
  8370. "`" +
  8371. ")\n" +
  8372. " });\n" +
  8373. "}\n" +
  8374. "document.head.appendChild(_js);\n";
  8375. _iframe.contentWindow.document.head.appendChild(_ajs);
  8376. }
  8377. }
  8378. //U.MD.D.I.openClick(str);
  8379. //如果有任务栏信息
  8380. // if (_taskbar) {
  8381. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8382. // }
  8383. }
  8384. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8385. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8386. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8387. _userinfo = US.userInfo, //登录用户信息
  8388. _userid = US.userInfo.userid //登录用户id
  8389. let _iframe;
  8390. let _cid = cid,
  8391. _stage = stage,
  8392. _task = task,
  8393. _tool = tool;
  8394. var _jie = $$("div", {
  8395. "style": {
  8396. "position": "absolute",
  8397. "bottom": "50px",
  8398. "right": "50px",
  8399. "zIndex": "9999",
  8400. "backgroundColor": "#2268bc",
  8401. "color": "#fff",
  8402. "padding": "12px 20px",
  8403. "cursor": "pointer",
  8404. "borderRadius": "4px",
  8405. },
  8406. "innerHTML": "上传模板"
  8407. })
  8408. let aTool = ''
  8409. let _loading = document.createElement('div')
  8410. _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;"
  8411. // _loading.id = "";
  8412. let _lchild = document.createElement('div')
  8413. let _limg = document.createElement('img')
  8414. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8415. _limg.style = "width: 26px;margin-right: 10px;"
  8416. _lchild.appendChild(_limg)
  8417. let _lspan = document.createElement('span')
  8418. _lspan.innerHTML = "上传中..."
  8419. _lchild.appendChild(_lspan)
  8420. _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%);"
  8421. _loading.appendChild(_lchild)
  8422. var _box = $$('div', {
  8423. "style": {
  8424. "position": "relative",
  8425. "width": "100%",
  8426. "height": "100%",
  8427. },
  8428. })
  8429. _box.appendChild(_loading)
  8430. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8431. switch (str) {
  8432. case "whiteboard":
  8433. aTool = 1;
  8434. _iframe = $$("iframe", {
  8435. "frameborder": "no",
  8436. "border": "0",
  8437. "scrolling ": "no",
  8438. "style": {
  8439. "cssText": "border:0;width:100%;height:100%"
  8440. },
  8441. "src": "https://beta.iwb.cocorobo.cn/"
  8442. })
  8443. _box.appendChild(_iframe);
  8444. _box.appendChild(_jie);
  8445. _formdiv = new U.UF.UI.form(
  8446. "电子白板",
  8447. _box, {
  8448. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8449. "style": {
  8450. "width": "90%",
  8451. "height": "90%",
  8452. "overflow": 'hidden'
  8453. },
  8454. "onresize": function () { }
  8455. }, {
  8456. closecallback: function () { }
  8457. }, {
  8458. "style": {
  8459. "height": "36px"
  8460. }
  8461. }).form; //创建窗体
  8462. _taskbar = {
  8463. "id": str + _formdiv.id,
  8464. "style": {
  8465. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8466. },
  8467. "name": "电子白板",
  8468. "forms": _formdiv,
  8469. "click": function () {
  8470. U.MD.D.I.openApplication(str, obj, info);
  8471. }
  8472. }
  8473. break;
  8474. case "mind":
  8475. aTool = 3;
  8476. _iframe = $$("iframe", {
  8477. "frameborder": "no",
  8478. "border": "0",
  8479. "scrolling ": "no",
  8480. "style": {
  8481. "cssText": "border:0;width:100%;height:100%"
  8482. },
  8483. "src": "/kityminder-editor/dist/index.html"
  8484. });
  8485. _box.appendChild(_iframe);
  8486. _box.appendChild(_jie);
  8487. _formdiv = new U.UF.UI.form(
  8488. "思维导图",
  8489. _box, { //"/jsmind/example/demo.html"
  8490. "id": "minds_Yu" + cid + stage + task + tool,
  8491. "style": {
  8492. "width": "90%",
  8493. "height": "90%",
  8494. "overflow": 'hidden'
  8495. },
  8496. "onresize": function () { }
  8497. }, {
  8498. closecallback: function () { }
  8499. }, {
  8500. "style": {
  8501. "height": "36px"
  8502. }
  8503. }).form; //创建窗体
  8504. _taskbar = {
  8505. "id": str + _formdiv.id,
  8506. "style": {
  8507. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8508. },
  8509. "name": "思维导图",
  8510. "forms": _formdiv,
  8511. "click": function () {
  8512. U.MD.D.I.openApplication(str, obj, info);
  8513. }
  8514. }
  8515. break;
  8516. case "doc":
  8517. aTool = 6;
  8518. _iframe = $$("iframe", {
  8519. "frameborder": "no",
  8520. "border": "0",
  8521. "scrolling ": "no",
  8522. "style": {
  8523. "cssText": "border:0;width:100%;height:100%"
  8524. },
  8525. "src": "/Office/Word/WordEditArea.htm"
  8526. })
  8527. _box.appendChild(_iframe);
  8528. _box.appendChild(_jie);
  8529. _formdiv = new U.UF.UI.form(
  8530. "协同文档",
  8531. _box, {
  8532. "id": "docs_Yu" + cid + stage + task + tool,
  8533. "style": {
  8534. "width": "90%",
  8535. "height": "90%",
  8536. "overflow": 'hidden'
  8537. },
  8538. "onresize": function () { }
  8539. }, {
  8540. closecallback: function () { }
  8541. }, {
  8542. "style": {
  8543. "height": "36px"
  8544. }
  8545. }).form; //创建窗体
  8546. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8547. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8548. })
  8549. _taskbar = {
  8550. "id": str + _formdiv.id,
  8551. "style": {
  8552. "backgroundImage": "url(/img/icon/doc.png)"
  8553. },
  8554. "name": "协同文档",
  8555. "forms": _formdiv,
  8556. "click": function () {
  8557. U.MD.D.I.openApplication(str, obj, info);
  8558. }
  8559. }
  8560. break;
  8561. case "CocoPi":
  8562. aTool = 57;
  8563. _iframe = $$("iframe", {
  8564. "allowpaymentrequest": "allowpaymentrequest",
  8565. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8566. "webkitallowfullscreen": "",
  8567. "mozallowfullscreen": "",
  8568. "frameborder": "no",
  8569. "border": "0",
  8570. "scrolling ": "no",
  8571. "style": {
  8572. "cssText": "border:0;width:100%;height:100%"
  8573. },
  8574. "src": "https://pi.cocorobo.cn/"
  8575. })
  8576. _box.appendChild(_iframe);
  8577. _box.appendChild(_jie);
  8578. _formdiv = new U.UF.UI.form(
  8579. "CocoPi",
  8580. _box, {
  8581. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8582. "style": {
  8583. "width": "90%",
  8584. "height": "90%",
  8585. "overflow": 'hidden'
  8586. },
  8587. "onresize": function () { }
  8588. }, {
  8589. closecallback: function () { }
  8590. }, {
  8591. "style": {
  8592. "height": "36px"
  8593. }
  8594. }).form; //创建窗体
  8595. _taskbar = {
  8596. "id": str + _formdiv.id,
  8597. "style": {
  8598. "backgroundImage": "url(/img/icon/cocopi.png)"
  8599. },
  8600. "name": "CocoPi",
  8601. "forms": _formdiv,
  8602. "click": function () {
  8603. U.MD.D.I.openApplication(str, obj, info);
  8604. }
  8605. }
  8606. break;
  8607. }
  8608. if (_iframe) {
  8609. if (str == 'doc') {
  8610. _iframe = _formdiv.querySelector('iframe')
  8611. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8612. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8613. })
  8614. if (onloadListener) {
  8615. _iframe.contentDocument.location.reload()
  8616. } else {
  8617. _iframe.contentDocument.location.reload()
  8618. }
  8619. } else if (str == 'mind') {
  8620. _iframe = _formdiv.querySelector('iframe')
  8621. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8622. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8623. })
  8624. if (onloadListener) {
  8625. _iframe.contentDocument.location.reload()
  8626. } else {
  8627. _iframe.contentDocument.location.reload()
  8628. }
  8629. } else if (str == 'whiteboard') {
  8630. _iframe = _formdiv.querySelector('iframe')
  8631. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8632. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8633. })
  8634. // if (onloadListener) {
  8635. // try {
  8636. // _iframe.src += "?cocorobo="+new Date().getTime()
  8637. // _iframe.contentWindow.document.location.reload()
  8638. // } catch (error) {
  8639. // }
  8640. // } else {
  8641. // _iframe.contentDocument.location.reload()
  8642. // }
  8643. } else if (str == 'CocoPi') {
  8644. _iframe = _formdiv.querySelector('iframe')
  8645. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8646. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8647. })
  8648. if (onloadListener) {
  8649. _iframe.contentDocument.location.reload()
  8650. } else {
  8651. _iframe.contentDocument.location.reload()
  8652. }
  8653. } else {
  8654. _iframe.onload = () => { };
  8655. }
  8656. _jie.onclick = async () => {
  8657. let text = ''
  8658. let type = '2'
  8659. if (aTool == 1) {
  8660. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8661. type = '3'
  8662. } else if (aTool == 6) {
  8663. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8664. type = '1'
  8665. } else if (aTool == 3) {
  8666. text = await U.MD.D.I.getEditorContent(_iframe);
  8667. type = '2'
  8668. } else if (aTool == 57) {
  8669. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8670. type = '4'
  8671. }
  8672. _loading.style.display = 'flex'
  8673. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8674. }
  8675. }
  8676. //U.MD.D.I.openClick(str);
  8677. //如果有任务栏信息
  8678. // if (_taskbar) {
  8679. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8680. // }
  8681. }
  8682. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8683. var xmlhttp;
  8684. var Mac, Sn, DeviceId
  8685. if (window.XMLHttpRequest) {
  8686. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8687. xmlhttp = new XMLHttpRequest();
  8688. } else {
  8689. // IE6, IE5 浏览器执行代码
  8690. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8691. }
  8692. xmlhttp.onreadystatechange = function () {
  8693. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8694. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8695. // resolve(res.value[0][0].text);
  8696. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8697. }
  8698. }
  8699. }
  8700. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8701. xmlhttp.send();
  8702. }
  8703. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8704. var xmlhttp;
  8705. var Mac, Sn, DeviceId
  8706. if (window.XMLHttpRequest) {
  8707. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8708. xmlhttp = new XMLHttpRequest();
  8709. } else {
  8710. // IE6, IE5 浏览器执行代码
  8711. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8712. }
  8713. xmlhttp.onreadystatechange = function () {
  8714. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8715. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8716. // resolve(res.value[0][0].text);
  8717. if (type == '2') {
  8718. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8719. } else if (type == '3') {
  8720. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8721. } else if (type == '4') {
  8722. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8723. }
  8724. } else {
  8725. if (type == '2') {
  8726. iframe.contentWindow.editor.minder.importData('json', '')
  8727. } else if (type == '3') {
  8728. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8729. } else if (type == '4') {
  8730. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8731. }
  8732. }
  8733. }
  8734. }
  8735. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8736. xmlhttp.send();
  8737. }
  8738. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8739. var xmlhttp;
  8740. var Mac, Sn, DeviceId
  8741. if (window.XMLHttpRequest) {
  8742. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8743. xmlhttp = new XMLHttpRequest();
  8744. } else {
  8745. // IE6, IE5 浏览器执行代码
  8746. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8747. }
  8748. xmlhttp.onreadystatechange = function () {
  8749. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8750. if (xmlhttp.response) {
  8751. // resolve(res.value[0][0].text);
  8752. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8753. // $(fileInput).val('');
  8754. // });
  8755. span.innerHTML = '上传成功'
  8756. setTimeout(() => {
  8757. loading.style.display = 'none'
  8758. }, 1000);
  8759. }
  8760. }
  8761. }
  8762. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8763. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8764. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8765. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8766. // 设置请求头,表示请求体的编码格式
  8767. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8768. // 设置请求体,使用url-encoded格式的数据
  8769. }
  8770. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8771. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8772. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8773. _userinfo = US.userInfo, //登录用户信息
  8774. _userid = US.userInfo.userid //登录用户id
  8775. let _iframe;
  8776. let _cid = cid,
  8777. _stage = stage,
  8778. _task = task,
  8779. _tool = tool;
  8780. var _jie = $$("div", {
  8781. "style": {
  8782. "position": "absolute",
  8783. "bottom": "50px",
  8784. "right": "50px",
  8785. "zIndex": "9999",
  8786. "backgroundColor": "#2268bc",
  8787. "color": "#fff",
  8788. "padding": "12px 20px",
  8789. "cursor": "pointer",
  8790. "borderRadius": "4px",
  8791. },
  8792. "innerHTML": "提交作业"
  8793. })
  8794. let aTool = ''
  8795. let _loading = document.createElement('div')
  8796. _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;"
  8797. // _loading.id = "";
  8798. let _lchild = document.createElement('div')
  8799. let _limg = document.createElement('img')
  8800. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8801. _limg.style = "width: 26px;margin-right: 10px;"
  8802. _lchild.appendChild(_limg)
  8803. let _lspan = document.createElement('span')
  8804. _lspan.innerHTML = "上传中..."
  8805. _lchild.appendChild(_lspan)
  8806. _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%);"
  8807. _loading.appendChild(_lchild)
  8808. var _box = $$('div', {
  8809. "style": {
  8810. "position": "relative",
  8811. "width": "100%",
  8812. "height": "100%",
  8813. },
  8814. })
  8815. _box.appendChild(_loading)
  8816. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8817. switch (str) {
  8818. case "CocoPi":
  8819. aTool = 57;
  8820. _iframe = $$("iframe", {
  8821. "allowpaymentrequest": "allowpaymentrequest",
  8822. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8823. "webkitallowfullscreen": "",
  8824. "mozallowfullscreen": "",
  8825. "frameborder": "no",
  8826. "border": "0",
  8827. "scrolling ": "no",
  8828. "style": {
  8829. "cssText": "border:0;width:100%;height:100%"
  8830. },
  8831. "src": "https://pi.cocorobo.cn/"
  8832. })
  8833. _box.appendChild(_iframe);
  8834. _box.appendChild(_jie);
  8835. _formdiv = new U.UF.UI.form(
  8836. "CocoPi",
  8837. _box, {
  8838. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8839. "style": {
  8840. "width": "90%",
  8841. "height": "90%",
  8842. "overflow": 'hidden'
  8843. },
  8844. "onresize": function () { }
  8845. }, {
  8846. closecallback: function () { }
  8847. }, {
  8848. "style": {
  8849. "height": "36px"
  8850. }
  8851. }).form; //创建窗体
  8852. _taskbar = {
  8853. "id": str + _formdiv.id,
  8854. "style": {
  8855. "backgroundImage": "url(/img/icon/cocopi.png)"
  8856. },
  8857. "name": "CocoPi",
  8858. "forms": _formdiv,
  8859. "click": function () {
  8860. U.MD.D.I.openApplication(str, obj, info);
  8861. }
  8862. }
  8863. break;
  8864. }
  8865. if (_iframe) {
  8866. if (str == 'CocoPi') {
  8867. _iframe = _formdiv.querySelector('iframe')
  8868. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8869. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8870. })
  8871. if (onloadListener) {
  8872. _iframe.contentDocument.location.reload()
  8873. } else {
  8874. _iframe.contentDocument.location.reload()
  8875. }
  8876. }
  8877. _jie.onclick = async () => {
  8878. let text = ''
  8879. if (aTool == 57) {
  8880. text = _iframe.contentWindow.getLoadXmlStr()
  8881. }
  8882. _loading.style.display = 'flex'
  8883. console.log(_loading);
  8884. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8885. _loading.style.display = 'none'
  8886. let _div = document.createElement('div')
  8887. _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;"
  8888. let _inner = document.createElement('div')
  8889. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8890. _inner.innerHTML = "上传成功"
  8891. _div.appendChild(_inner)
  8892. _iframe.contentWindow.window.document.body.appendChild(_div)
  8893. _div.onclick = () => {
  8894. _iframe.contentWindow.window.document.body.removeChild(_div)
  8895. }
  8896. setTimeout(() => {
  8897. _iframe.contentWindow.window.document.body.removeChild(_div)
  8898. }, 1000);
  8899. }, [], { "type": "POST", "withCredentials": true });
  8900. }
  8901. }
  8902. }
  8903. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8904. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8905. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8906. _userid = student.userid, //登录用户id
  8907. _username = student.student //用户名字
  8908. let _iframe;
  8909. let _cid = cid,
  8910. _stage = stage,
  8911. _task = task,
  8912. _tool = tool;
  8913. var _jie = $$("div", {
  8914. "style": {
  8915. "position": "absolute",
  8916. "bottom": "50px",
  8917. "right": "50px",
  8918. "zIndex": "9999",
  8919. "backgroundColor": "#2268bc",
  8920. "color": "#fff",
  8921. "padding": "12px 20px",
  8922. "cursor": "pointer",
  8923. "borderRadius": "4px",
  8924. },
  8925. "innerHTML": "提交作业"
  8926. })
  8927. let aTool = ''
  8928. let _loading = document.createElement('div')
  8929. _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;"
  8930. // _loading.id = "";
  8931. let _lchild = document.createElement('div')
  8932. let _limg = document.createElement('img')
  8933. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8934. _limg.style = "width: 26px;margin-right: 10px;"
  8935. _lchild.appendChild(_limg)
  8936. let _lspan = document.createElement('span')
  8937. _lspan.innerHTML = "上传中..."
  8938. _lchild.appendChild(_lspan)
  8939. _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%);"
  8940. _loading.appendChild(_lchild)
  8941. var _box = $$('div', {
  8942. "style": {
  8943. "position": "relative",
  8944. "width": "100%",
  8945. "height": "100%",
  8946. },
  8947. })
  8948. _box.appendChild(_loading)
  8949. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8950. switch (str) {
  8951. case "CocoPi":
  8952. aTool = 57;
  8953. _iframe = $$("iframe", {
  8954. "allowpaymentrequest": "allowpaymentrequest",
  8955. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8956. "webkitallowfullscreen": "",
  8957. "mozallowfullscreen": "",
  8958. "frameborder": "no",
  8959. "border": "0",
  8960. "scrolling ": "no",
  8961. "style": {
  8962. "cssText": "border:0;width:100%;height:100%"
  8963. },
  8964. "src": "https://pi.cocorobo.cn/"
  8965. })
  8966. _box.appendChild(_iframe);
  8967. _box.appendChild(_jie);
  8968. _formdiv = new U.UF.UI.form(
  8969. "CocoPi-" + _username,
  8970. _box, {
  8971. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8972. "style": {
  8973. "width": "90%",
  8974. "height": "90%",
  8975. "overflow": 'hidden'
  8976. },
  8977. "onresize": function () { }
  8978. }, {
  8979. closecallback: function () { }
  8980. }, {
  8981. "style": {
  8982. "height": "36px"
  8983. }
  8984. }).form; //创建窗体
  8985. _taskbar = {
  8986. "id": str + _formdiv.id,
  8987. "style": {
  8988. "backgroundImage": "url(/img/icon/cocopi.png)"
  8989. },
  8990. "name": "CocoPi",
  8991. "forms": _formdiv,
  8992. "click": function () {
  8993. U.MD.D.I.openApplication(str, obj, info);
  8994. }
  8995. }
  8996. break;
  8997. }
  8998. if (_iframe) {
  8999. if (str == 'CocoPi') {
  9000. _iframe = _formdiv.querySelector('iframe')
  9001. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9002. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9003. })
  9004. if (onloadListener) {
  9005. _iframe.contentDocument.location.reload()
  9006. } else {
  9007. _iframe.contentDocument.location.reload()
  9008. }
  9009. }
  9010. _jie.onclick = async () => {
  9011. let text = ''
  9012. if (aTool == 57) {
  9013. text = _iframe.contentWindow.getLoadXmlStr()
  9014. }
  9015. _loading.style.display = 'flex'
  9016. console.log(_loading);
  9017. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9018. _loading.style.display = 'none'
  9019. let _div = document.createElement('div')
  9020. _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;"
  9021. let _inner = document.createElement('div')
  9022. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9023. _inner.innerHTML = "上传成功"
  9024. _div.appendChild(_inner)
  9025. _iframe.contentWindow.window.document.body.appendChild(_div)
  9026. _div.onclick = () => {
  9027. _iframe.contentWindow.window.document.body.removeChild(_div)
  9028. }
  9029. setTimeout(() => {
  9030. _iframe.contentWindow.window.document.body.removeChild(_div)
  9031. }, 1000);
  9032. }, [], { "type": "POST", "withCredentials": true });
  9033. }
  9034. }
  9035. }
  9036. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9037. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9038. if (res.value[0].length > 0) {
  9039. if (atool == 57) {
  9040. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9041. }
  9042. } else {
  9043. if (atool == 57) {
  9044. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9045. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9046. }
  9047. }
  9048. }, [], { "type": "POST", "withCredentials": true });
  9049. }