DeskTop.js 594 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  633. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  635. ];
  636. //教科院实小教师桌面图标的全局变量
  637. U.MD.D.I.siesStudentDeskIcon = [
  638. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  642. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  643. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  644. ];
  645. //中山小学教师桌面图标的全局变量
  646. U.MD.D.I.guzmsteacherDeskIcon = [
  647. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  648. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  649. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  650. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  652. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  653. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  654. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  655. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  660. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  661. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  663. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  664. ];
  665. //中山小学学生桌面图标的全局变量
  666. U.MD.D.I.guzmsStudentDeskIcon = [
  667. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  668. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  670. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  671. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  672. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  673. ];
  674. //福田
  675. U.MD.D.I.gdjgTeacherDeskIcon = [
  676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  678. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  679. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  680. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  681. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  682. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. ];
  691. //gdjg
  692. U.MD.D.I.gdjgAdminDeskIcon = [
  693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  697. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  698. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  700. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  701. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  702. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  703. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. ];
  729. //hk
  730. U.MD.D.I.hkStudentDeskIcon = [
  731. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  732. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  733. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  734. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  735. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  737. ];
  738. //hk
  739. U.MD.D.I.hkaceteacherDeskIcon = [
  740. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  741. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  743. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  744. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  745. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  746. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  747. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  748. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  749. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  750. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  751. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  752. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  753. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  754. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  759. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  760. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  761. ];
  762. //hk
  763. U.MD.D.I.hkaceStudentDeskIcon = [
  764. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  768. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  769. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  770. ];
  771. //香海正覺蓮社佛教正覺中學
  772. U.MD.D.I.hkZJLSteacherDeskIcon = [
  773. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  774. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  775. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  776. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  777. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  778. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  779. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  780. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  781. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  782. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  783. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  784. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  786. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  789. ];
  790. //香海正覺蓮社佛教正覺中學
  791. U.MD.D.I.hkZJLSStudentDeskIcon = [
  792. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  793. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  794. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. ];
  797. //云海
  798. U.MD.D.I.yunhaiTeacherDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  802. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  805. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  806. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  807. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  808. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  809. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  810. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  811. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  812. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  815. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  816. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  817. ];
  818. //福田
  819. U.MD.D.I.heyuanTeacherDeskIcon = [
  820. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  821. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  822. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  823. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  824. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  825. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  826. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  827. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  829. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  830. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  831. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  832. ];
  833. //福田
  834. U.MD.D.I.heyuanAdminDeskIcon = [
  835. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  836. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  837. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  839. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  840. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  841. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  842. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  843. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  844. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  845. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  846. ];
  847. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  848. U.MD.D.I.szherTeacherDeskIcon = [
  849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  851. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  852. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  856. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  857. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  860. ];
  861. //dsei
  862. U.MD.D.I.dseiTeacherDeskIcon = [
  863. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  864. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  865. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  866. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  872. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  873. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  874. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  875. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  876. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  877. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  878. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  879. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  880. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  881. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  882. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  883. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  884. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  885. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  886. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  887. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  888. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  889. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  890. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  891. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  892. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  893. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  894. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  895. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  896. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  897. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  898. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  899. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  900. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  901. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  902. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  903. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  904. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  905. ];
  906. //dsei
  907. U.MD.D.I.dseiAdminDeskIcon = [
  908. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  909. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  910. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  911. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  915. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  916. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  917. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  918. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  919. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  920. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  921. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  922. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  923. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  924. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  925. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  926. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  927. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  928. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  929. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  930. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  931. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  932. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  933. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  934. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  935. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  936. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  937. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  938. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  939. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  940. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  941. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  942. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  944. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  945. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  946. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  947. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  948. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  949. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  950. ];
  951. //dsei
  952. U.MD.D.I.dseiStudentDeskIcon = [
  953. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  954. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  955. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  956. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  959. ];
  960. //未来教育基地
  961. U.MD.D.I.szjkyTeacherDeskIcon = [
  962. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  963. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  964. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  965. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  966. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  967. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  968. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  969. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  970. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  971. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  972. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  975. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  976. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  977. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  978. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  979. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  980. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  981. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  982. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  983. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  984. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  985. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  986. ];
  987. //未来教育基地
  988. U.MD.D.I.szjkyAdminDeskIcon = [
  989. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  990. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  991. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  992. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  993. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  994. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  995. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  998. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  999. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1000. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1001. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1005. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1006. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1007. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1008. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1009. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1010. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1011. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1012. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1013. ];
  1014. //未来教育基地
  1015. U.MD.D.I.szjkyStudentDeskIcon = [
  1016. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1017. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. ];
  1021. //成华教育局
  1022. U.MD.D.I.chjyjTeacherDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1030. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1031. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1032. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1033. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1034. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1035. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1036. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1037. ];
  1038. //成华教育局chjyj
  1039. U.MD.D.I.chjyjAdminDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1045. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1046. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1047. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1048. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1049. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1050. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1051. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1052. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1055. ];
  1056. //成华教育局chjyj
  1057. U.MD.D.I.chjyjStudentDeskIcon = [
  1058. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1062. ];
  1063. //tpc
  1064. U.MD.D.I.tpcStudentDeskIcon = [
  1065. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1066. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1067. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1068. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1069. ];
  1070. //tpc
  1071. U.MD.D.I.tpcTeacherDeskIcon = [
  1072. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1073. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1074. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1075. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1076. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1077. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1078. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1079. ];
  1080. //tpc
  1081. U.MD.D.I.tpcAdminDeskIcon = [
  1082. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1083. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1084. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1085. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1087. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1089. ];
  1090. //THU-IOE
  1091. U.MD.D.I.thuioeTeacherDeskIcon = [
  1092. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1093. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1094. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1095. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1099. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1100. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1101. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1102. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1103. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1104. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1105. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1106. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1107. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1108. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1109. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1110. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1111. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1112. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1113. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1114. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1115. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1116. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1117. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1118. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1119. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1120. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1121. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1122. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1123. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1124. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1125. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1126. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1128. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1129. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1130. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1131. ];
  1132. //THU-IOE
  1133. U.MD.D.I.thuioeStudentDeskIcon = [
  1134. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //jccssyl
  1140. U.MD.D.I.jccssylTeacherDeskIcon = [
  1141. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //jccssyl
  1162. U.MD.D.I.jccssylStudentDeskIcon = [
  1163. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //cale
  1169. U.MD.D.I.caleTeacherDeskIcon = [
  1170. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1177. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1178. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1179. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1180. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1181. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1182. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1183. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1184. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1185. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1186. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1187. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1188. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1189. ];
  1190. //cale
  1191. U.MD.D.I.caleStudentDeskIcon = [
  1192. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1193. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1194. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1195. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1199. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1200. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1202. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1203. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1204. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1205. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1206. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1207. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1208. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1209. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1210. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1211. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1212. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1213. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1214. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1215. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1216. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1217. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1218. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1219. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1220. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1221. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1222. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1223. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1224. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1225. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1226. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1227. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1228. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1229. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1230. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1231. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1232. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1233. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1234. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1235. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1236. ];
  1237. //lqwmsgzs
  1238. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1239. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1240. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1241. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. ];
  1244. //盐田区幼儿园
  1245. U.MD.D.I.ytyTeacherDeskIcon = [
  1246. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1247. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1248. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1249. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1250. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1251. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1252. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1253. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1254. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1255. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1256. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1257. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1258. ];
  1259. //盐田区幼儿园
  1260. U.MD.D.I.ytyStudentDeskIcon = [
  1261. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1262. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1263. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1264. ];
  1265. //scnuai
  1266. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1267. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1268. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1269. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1270. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1271. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1272. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1273. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1274. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1275. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1276. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1277. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1278. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1279. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1280. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1281. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1282. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1283. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1284. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1285. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1286. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1287. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1288. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1289. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1290. ];
  1291. //scnuai
  1292. U.MD.D.I.scnuaiAdminDeskIcon = [
  1293. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1294. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1295. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1296. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1297. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1298. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1299. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1300. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1303. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1304. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1305. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1306. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1307. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1308. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1309. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1310. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1311. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1312. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //scnuai
  1318. U.MD.D.I.scnuaiStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1323. ];
  1324. //cocobiz
  1325. U.MD.D.I.cocobizteacherDeskIcon = [
  1326. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1327. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1328. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1329. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1330. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1332. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1333. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1334. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1335. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1336. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1337. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1338. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1339. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1342. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1343. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1344. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1345. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1346. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1347. ];
  1348. //cocobiz
  1349. U.MD.D.I.cocobizStudentDeskIcon = [
  1350. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1353. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1354. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1355. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1356. ];
  1357. //xxzjky
  1358. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1359. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1360. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1361. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1362. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1363. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1364. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1365. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1366. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1369. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1370. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1371. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1372. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1374. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1375. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1376. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1379. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1380. ];
  1381. //xxzjky
  1382. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1383. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1387. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //nsfx
  1391. U.MD.D.I.nsfxTeacherDeskIcon = [
  1392. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1400. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1401. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1402. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1403. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1404. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1405. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1406. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1407. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1408. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1409. ];
  1410. //nsfx
  1411. U.MD.D.I.nsfxStudentDeskIcon = [
  1412. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1413. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1414. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1415. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1416. ];
  1417. //stia
  1418. U.MD.D.I.stiaTeacherDeskIcon = [
  1419. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1420. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1421. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1422. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1423. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1424. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1425. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1428. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1429. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1430. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1431. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1432. ];
  1433. //stia
  1434. U.MD.D.I.stiaStudentDeskIcon = [
  1435. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1436. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1437. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. ];
  1440. //szdjg
  1441. U.MD.D.I.szdjgTeacherDeskIcon = [
  1442. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1443. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. ];
  1445. //szdjg
  1446. U.MD.D.I.szdjgStudentDeskIcon = [
  1447. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. ];
  1452. //010607
  1453. U.MD.D.I.x010607TeacherDeskIcon = [
  1454. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1455. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1456. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1457. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1458. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1459. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1460. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1461. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1462. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1463. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1464. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1465. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1466. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1467. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1468. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1469. ];
  1470. //010607
  1471. U.MD.D.I.x010607StudentDeskIcon = [
  1472. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1473. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1474. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1475. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1476. ];
  1477. //#region 桌面初始化a
  1478. /**
  1479. * 初始化桌面的起始函数
  1480. *
  1481. */
  1482. U.MD.D.I.init = function () {
  1483. if ($("#U_MD_D_K")[0]) {
  1484. //初始化桌面图标
  1485. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1486. // var clickUrl = ':12588/requestIp.php';
  1487. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1488. // U.MD.D.I.Ip = data;
  1489. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1490. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1491. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1492. // })
  1493. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1494. // })
  1495. }
  1496. }
  1497. /**
  1498. * 模式切换
  1499. *
  1500. */
  1501. U.MD.D.I.ModeCheck = function (type) {
  1502. if (US.Config.type == type) {
  1503. return
  1504. }
  1505. US.Config.type = type
  1506. $('.U_PBL_Check .active')[0].className = ''
  1507. if (type == 1) {
  1508. $('.U_PBL_Check div')[0].className = 'active'
  1509. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1510. } else {
  1511. $('.U_PBL_Check div')[1].className = 'active'
  1512. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1513. }
  1514. //初始化桌面图标
  1515. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1516. if (type == 2) {
  1517. U.MD.D.I.openApplication("project")
  1518. }
  1519. }
  1520. /**
  1521. * 隐藏任务栏
  1522. *
  1523. * @param {element} 桌面元素
  1524. */
  1525. U.MD.D.I.hiddenTaskbar = function (el) {
  1526. //任务栏位置变小
  1527. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1528. //桌面的位置变大
  1529. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1530. }
  1531. /**
  1532. * 隐藏任务栏
  1533. *
  1534. * @param {element} 桌面元素
  1535. */
  1536. U.MD.D.I.hiddenTaskbarout = function (el) {
  1537. //任务栏位置变小
  1538. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1539. //任务栏位置变化
  1540. U.selectEl(el).css({ "bottom": "-60px" });
  1541. //桌面的位置变大
  1542. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1543. }
  1544. }
  1545. /**
  1546. * 初始化打印桌面图标
  1547. *
  1548. * @param {element} 桌面元素
  1549. */
  1550. U.MD.D.I.initDesktopIcons = function (el, type) {
  1551. var i, //用于循环
  1552. _content, //桌面图标元素
  1553. _iconcontent, //桌面图标元素
  1554. _frag = $$("frag"), //定义一个碎片元素
  1555. _type = US.userInfo.type,
  1556. _org = US.userInfo.org,
  1557. _oid = US.userInfo.organizeid,
  1558. _role = US.userInfo.role,
  1559. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1560. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1561. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1562. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1563. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1564. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1565. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1566. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1567. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1568. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1569. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1570. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1571. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1572. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1573. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1574. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1575. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1576. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1577. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1578. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1579. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1580. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1581. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1582. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1583. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1584. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1585. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1586. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1587. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1588. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1589. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1590. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1591. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1592. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1593. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1594. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1595. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1596. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1597. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1598. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1599. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1600. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1601. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1602. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1603. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1604. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1605. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1606. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1607. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1608. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1609. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1610. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1611. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1612. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1613. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1614. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1615. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1616. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1617. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1618. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1619. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1620. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1621. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1622. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1623. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1624. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1625. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1626. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1627. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1628. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1629. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1630. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1631. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1632. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1633. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1634. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1635. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1636. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1637. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1638. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1639. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1640. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1641. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1642. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1643. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5'];
  1644. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4'];
  1645. //清楚桌面图标
  1646. el.innerHTML = "";
  1647. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1648. _teacherDesktopIconInfo.push(
  1649. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1650. { "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)" } },
  1651. )
  1652. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1653. }
  1654. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1655. _teacherDesktopIconInfo.push(
  1656. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1657. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1658. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1659. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1660. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1661. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1662. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1663. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1664. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1665. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1666. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1667. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1668. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1669. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1670. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1671. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1672. )
  1673. }
  1674. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1675. _teacherDesktopIconInfo.push(
  1676. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1677. )
  1678. }
  1679. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1680. // _teacherDesktopIconInfo.push(
  1681. // )
  1682. // }
  1683. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1684. _teacherDesktopIconInfo.push(
  1685. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1686. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1687. )
  1688. }
  1689. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1690. _teacherDesktopIconInfo.push(
  1691. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1692. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1694. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1695. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1696. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1697. )
  1698. _studentDesktopIconInfo.push(
  1699. )
  1700. }
  1701. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1702. _teacherDesktopIconInfo.push(
  1703. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1704. )
  1705. _studentDesktopIconInfo.push(
  1706. )
  1707. }
  1708. //010606 组织
  1709. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1710. _teacherDesktopIconInfo.push(
  1711. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1712. )
  1713. _studentDesktopIconInfo.push(
  1714. )
  1715. }
  1716. //麒麟二中 和 民新小学
  1717. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1718. _teacherDesktopIconInfo.push(
  1719. )
  1720. }
  1721. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1722. _teacherDesktopIconInfo.push(
  1723. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1724. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1725. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1726. )
  1727. }
  1728. //北师大附中(010601)
  1729. if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1730. _teacherDesktopIconInfo.push(
  1731. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1732. )
  1733. _studentDesktopIconInfo.push(
  1734. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1735. )
  1736. }
  1737. //樂善堂余近卿中學
  1738. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1739. _teacherDesktopIconInfo.push(
  1740. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1741. )
  1742. }
  1743. // Education Artificial Intelligence
  1744. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1745. _teacherDesktopIconInfo.push(
  1746. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1747. )
  1748. }
  1749. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1750. _teacherDesktopIconInfo.push(
  1751. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1752. )
  1753. }
  1754. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1755. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1756. _teacherDesktopIconInfo.push(
  1757. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1758. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1759. )
  1760. }
  1761. //麒麟二中
  1762. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1763. _studentDesktopIconInfo.push(
  1764. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1765. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1766. )
  1767. }
  1768. //万科双语
  1769. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1770. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1771. if (el.Name == '项目管理') {
  1772. el.Name = 'PBL项目'
  1773. }
  1774. return el
  1775. })
  1776. _studentDesktopIconInfo3.push(
  1777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1778. )
  1779. }
  1780. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1781. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1782. return el.Name != '魔盒识字' && el.Name != '24点'
  1783. })
  1784. }
  1785. 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) {
  1786. _studentDesktopIconInfo.push(
  1787. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1788. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1789. )
  1790. }
  1791. //循环创建桌面图标
  1792. if (type == 1) {
  1793. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1794. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1795. _content = $$("div", {
  1796. className: "U_MD_D_KO",
  1797. "onmousedown": U.UF.C.closure(function (obj) {
  1798. //防止拖动图标即打开了桌面应用
  1799. U.MD.D.click(this, obj);
  1800. }, [_studentDesktopIconInfo[i]]),
  1801. "onclick": U.UF.C.closure(function (obj) {
  1802. //防止拖动图标即打开了桌面应用
  1803. U.MD.D.click(this, obj);
  1804. }, [_studentDesktopIconInfo[i]])
  1805. }, _frag); //
  1806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1809. }
  1810. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1811. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1812. _content = $$("div", {
  1813. className: "U_MD_D_KO",
  1814. "onmousedown": U.UF.C.closure(function (obj) {
  1815. //防止拖动图标即打开了桌面应用
  1816. U.MD.D.click(this, obj);
  1817. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1818. "onclick": U.UF.C.closure(function (obj) {
  1819. //防止拖动图标即打开了桌面应用
  1820. U.MD.D.click(this, obj);
  1821. }, [_hkZJLSStudentDeskIconInfo[i]])
  1822. }, _frag); //
  1823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1826. } //
  1827. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1828. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1829. _content = $$("div", {
  1830. className: "U_MD_D_KO",
  1831. "onmousedown": U.UF.C.closure(function (obj) {
  1832. //防止拖动图标即打开了桌面应用
  1833. U.MD.D.click(this, obj);
  1834. }, [_ytyStudentDeskIconInfo[i]]),
  1835. "onclick": U.UF.C.closure(function (obj) {
  1836. //防止拖动图标即打开了桌面应用
  1837. U.MD.D.click(this, obj);
  1838. }, [_ytyStudentDeskIconInfo[i]])
  1839. }, _frag); //
  1840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1843. } //
  1844. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1845. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1846. _content = $$("div", {
  1847. className: "U_MD_D_KO",
  1848. "onmousedown": U.UF.C.closure(function (obj) {
  1849. //防止拖动图标即打开了桌面应用
  1850. U.MD.D.click(this, obj);
  1851. }, [_jccssylStudentDeskIconInfo[i]]),
  1852. "onclick": U.UF.C.closure(function (obj) {
  1853. //防止拖动图标即打开了桌面应用
  1854. U.MD.D.click(this, obj);
  1855. }, [_jccssylStudentDeskIconInfo[i]])
  1856. }, _frag); //
  1857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1860. }
  1861. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1862. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1863. _content = $$("div", {
  1864. className: "U_MD_D_KO",
  1865. "onmousedown": U.UF.C.closure(function (obj) {
  1866. //防止拖动图标即打开了桌面应用
  1867. U.MD.D.click(this, obj);
  1868. }, [_scnuaiStudentDeskIconInfo[i]]),
  1869. "onclick": U.UF.C.closure(function (obj) {
  1870. //防止拖动图标即打开了桌面应用
  1871. U.MD.D.click(this, obj);
  1872. }, [_scnuaiStudentDeskIconInfo[i]])
  1873. }, _frag); //
  1874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1877. }
  1878. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1879. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1880. _content = $$("div", {
  1881. className: "U_MD_D_KO",
  1882. "onmousedown": U.UF.C.closure(function (obj) {
  1883. //防止拖动图标即打开了桌面应用
  1884. U.MD.D.click(this, obj);
  1885. }, [_caleStudentDeskIconInfo[i]]),
  1886. "onclick": U.UF.C.closure(function (obj) {
  1887. //防止拖动图标即打开了桌面应用
  1888. U.MD.D.click(this, obj);
  1889. }, [_caleStudentDeskIconInfo[i]])
  1890. }, _frag); //
  1891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1894. }
  1895. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1896. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1897. _content = $$("div", {
  1898. className: "U_MD_D_KO",
  1899. "onmousedown": U.UF.C.closure(function (obj) {
  1900. //防止拖动图标即打开了桌面应用
  1901. U.MD.D.click(this, obj);
  1902. }, [_thuioeStudentDeskIconInfo[i]]),
  1903. "onclick": U.UF.C.closure(function (obj) {
  1904. //防止拖动图标即打开了桌面应用
  1905. U.MD.D.click(this, obj);
  1906. }, [_thuioeStudentDeskIconInfo[i]])
  1907. }, _frag); //
  1908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1911. }
  1912. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1913. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1914. _content = $$("div", {
  1915. className: "U_MD_D_KO",
  1916. "onmousedown": U.UF.C.closure(function (obj) {
  1917. //防止拖动图标即打开了桌面应用
  1918. U.MD.D.click(this, obj);
  1919. }, [_tpcStudentDeskIconInfo[i]]),
  1920. "onclick": U.UF.C.closure(function (obj) {
  1921. //防止拖动图标即打开了桌面应用
  1922. U.MD.D.click(this, obj);
  1923. }, [_tpcStudentDeskIconInfo[i]])
  1924. }, _frag); //
  1925. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1926. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1927. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1928. } //
  1929. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1930. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1931. _content = $$("div", {
  1932. className: "U_MD_D_KO",
  1933. "onmousedown": U.UF.C.closure(function (obj) {
  1934. //防止拖动图标即打开了桌面应用
  1935. U.MD.D.click(this, obj);
  1936. }, [_chjyjStudentDeskIconInfo[i]]),
  1937. "onclick": U.UF.C.closure(function (obj) {
  1938. //防止拖动图标即打开了桌面应用
  1939. U.MD.D.click(this, obj);
  1940. }, [_chjyjStudentDeskIconInfo[i]])
  1941. }, _frag); //
  1942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1945. }
  1946. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1947. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1948. _content = $$("div", {
  1949. className: "U_MD_D_KO",
  1950. "onmousedown": U.UF.C.closure(function (obj) {
  1951. //防止拖动图标即打开了桌面应用
  1952. U.MD.D.click(this, obj);
  1953. }, [_szjkyStudentDeskIconInfo[i]]),
  1954. "onclick": U.UF.C.closure(function (obj) {
  1955. //防止拖动图标即打开了桌面应用
  1956. U.MD.D.click(this, obj);
  1957. }, [_szjkyStudentDeskIconInfo[i]])
  1958. }, _frag); //
  1959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1962. }
  1963. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1964. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1965. _content = $$("div", {
  1966. className: "U_MD_D_KO",
  1967. "onmousedown": U.UF.C.closure(function (obj) {
  1968. //防止拖动图标即打开了桌面应用
  1969. U.MD.D.click(this, obj);
  1970. }, [_dseiStudentDeskIconInfo[i]]),
  1971. "onclick": U.UF.C.closure(function (obj) {
  1972. //防止拖动图标即打开了桌面应用
  1973. U.MD.D.click(this, obj);
  1974. }, [_dseiStudentDeskIconInfo[i]])
  1975. }, _frag); //
  1976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1979. }
  1980. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1981. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1982. _content = $$("div", {
  1983. className: "U_MD_D_KO",
  1984. "onmousedown": U.UF.C.closure(function (obj) {
  1985. //防止拖动图标即打开了桌面应用
  1986. U.MD.D.click(this, obj);
  1987. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1988. "onclick": U.UF.C.closure(function (obj) {
  1989. //防止拖动图标即打开了桌面应用
  1990. U.MD.D.click(this, obj);
  1991. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1992. }, _frag); //
  1993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1996. }
  1997. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  1998. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  1999. _content = $$("div", {
  2000. className: "U_MD_D_KO",
  2001. "onmousedown": U.UF.C.closure(function (obj) {
  2002. //防止拖动图标即打开了桌面应用
  2003. U.MD.D.click(this, obj);
  2004. }, [_nsfxStudentDeskIconInfo[i]]),
  2005. "onclick": U.UF.C.closure(function (obj) {
  2006. //防止拖动图标即打开了桌面应用
  2007. U.MD.D.click(this, obj);
  2008. }, [_nsfxStudentDeskIconInfo[i]])
  2009. }, _frag); //
  2010. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2011. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2012. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2013. }
  2014. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2015. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2016. _content = $$("div", {
  2017. className: "U_MD_D_KO",
  2018. "onmousedown": U.UF.C.closure(function (obj) {
  2019. //防止拖动图标即打开了桌面应用
  2020. U.MD.D.click(this, obj);
  2021. }, [_stiaStudentDeskIconInfo[i]]),
  2022. "onclick": U.UF.C.closure(function (obj) {
  2023. //防止拖动图标即打开了桌面应用
  2024. U.MD.D.click(this, obj);
  2025. }, [_stiaStudentDeskIconInfo[i]])
  2026. }, _frag); //
  2027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2030. }
  2031. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2032. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2033. _content = $$("div", {
  2034. className: "U_MD_D_KO",
  2035. "onmousedown": U.UF.C.closure(function (obj) {
  2036. //防止拖动图标即打开了桌面应用
  2037. U.MD.D.click(this, obj);
  2038. }, [_szdjgStudentDeskIconInfo[i]]),
  2039. "onclick": U.UF.C.closure(function (obj) {
  2040. //防止拖动图标即打开了桌面应用
  2041. U.MD.D.click(this, obj);
  2042. }, [_szdjgStudentDeskIconInfo[i]])
  2043. }, _frag); //
  2044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2047. }
  2048. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2049. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2050. _content = $$("div", {
  2051. className: "U_MD_D_KO",
  2052. "onmousedown": U.UF.C.closure(function (obj) {
  2053. //防止拖动图标即打开了桌面应用
  2054. U.MD.D.click(this, obj);
  2055. }, [_x010607StudentDeskIconInfo[i]]),
  2056. "onclick": U.UF.C.closure(function (obj) {
  2057. //防止拖动图标即打开了桌面应用
  2058. U.MD.D.click(this, obj);
  2059. }, [_x010607StudentDeskIconInfo[i]])
  2060. }, _frag); //
  2061. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2062. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2063. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2064. }
  2065. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2066. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2067. _content = $$("div", {
  2068. className: "U_MD_D_KO",
  2069. "onmousedown": U.UF.C.closure(function (obj) {
  2070. //防止拖动图标即打开了桌面应用
  2071. U.MD.D.click(this, obj);
  2072. }, [_siesStudentDeskIconInfo[i]]),
  2073. "onclick": U.UF.C.closure(function (obj) {
  2074. //防止拖动图标即打开了桌面应用
  2075. U.MD.D.click(this, obj);
  2076. }, [_siesStudentDeskIconInfo[i]])
  2077. }, _frag); //
  2078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2081. }
  2082. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2083. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2084. _content = $$("div", {
  2085. className: "U_MD_D_KO",
  2086. "onmousedown": U.UF.C.closure(function (obj) {
  2087. //防止拖动图标即打开了桌面应用
  2088. U.MD.D.click(this, obj);
  2089. }, [_guzmsStudentDeskIconInfo[i]]),
  2090. "onclick": U.UF.C.closure(function (obj) {
  2091. //防止拖动图标即打开了桌面应用
  2092. U.MD.D.click(this, obj);
  2093. }, [_guzmsStudentDeskIconInfo[i]])
  2094. }, _frag); //
  2095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2098. }
  2099. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2100. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2101. _content = $$("div", {
  2102. className: "U_MD_D_KO",
  2103. "onmousedown": U.UF.C.closure(function (obj) {
  2104. //防止拖动图标即打开了桌面应用
  2105. U.MD.D.click(this, obj);
  2106. }, [_hkStudentDeskIconInfo[i]]),
  2107. "onclick": U.UF.C.closure(function (obj) {
  2108. //防止拖动图标即打开了桌面应用
  2109. U.MD.D.click(this, obj);
  2110. }, [_hkStudentDeskIconInfo[i]])
  2111. }, _frag); //
  2112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2115. }
  2116. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2117. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2118. _content = $$("div", {
  2119. className: "U_MD_D_KO",
  2120. "onmousedown": U.UF.C.closure(function (obj) {
  2121. //防止拖动图标即打开了桌面应用
  2122. U.MD.D.click(this, obj);
  2123. }, [_hkaceStudentDeskIconInfo[i]]),
  2124. "onclick": U.UF.C.closure(function (obj) {
  2125. //防止拖动图标即打开了桌面应用
  2126. U.MD.D.click(this, obj);
  2127. }, [_hkaceStudentDeskIconInfo[i]])
  2128. }, _frag); //
  2129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2132. }
  2133. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2134. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2135. _content = $$("div", {
  2136. className: "U_MD_D_KO",
  2137. "onmousedown": U.UF.C.closure(function (obj) {
  2138. //防止拖动图标即打开了桌面应用
  2139. U.MD.D.click(this, obj);
  2140. }, [_cocobizStudentDeskIconInfo[i]]),
  2141. "onclick": U.UF.C.closure(function (obj) {
  2142. //防止拖动图标即打开了桌面应用
  2143. U.MD.D.click(this, obj);
  2144. }, [_cocobizStudentDeskIconInfo[i]])
  2145. }, _frag); //
  2146. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2147. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2148. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2149. }
  2150. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2151. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2152. _content = $$("div", {
  2153. className: "U_MD_D_KO",
  2154. "onmousedown": U.UF.C.closure(function (obj) {
  2155. //防止拖动图标即打开了桌面应用
  2156. U.MD.D.click(this, obj);
  2157. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2158. "onclick": U.UF.C.closure(function (obj) {
  2159. //防止拖动图标即打开了桌面应用
  2160. U.MD.D.click(this, obj);
  2161. }, [_xxzjkyStudentDeskIconInfo[i]])
  2162. }, _frag); //
  2163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2166. }
  2167. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2168. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2169. _content = $$("div", {
  2170. className: "U_MD_D_KO",
  2171. "onmousedown": U.UF.C.closure(function (obj) {
  2172. //防止拖动图标即打开了桌面应用
  2173. U.MD.D.click(this, obj);
  2174. }, [_studentDesktopIconInfo[i]]),
  2175. "onclick": U.UF.C.closure(function (obj) {
  2176. //防止拖动图标即打开了桌面应用
  2177. U.MD.D.click(this, obj);
  2178. }, [_studentDesktopIconInfo[i]])
  2179. }, _frag); //
  2180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2183. }
  2184. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2185. for (i = 0; i < _tcStudentDeskIconInfo.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. }, [_tcStudentDeskIconInfo[i]]),
  2192. "onclick": U.UF.C.closure(function (obj) {
  2193. //防止拖动图标即打开了桌面应用
  2194. U.MD.D.click(this, obj);
  2195. }, [_tcStudentDeskIconInfo[i]])
  2196. }, _frag); //
  2197. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2198. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2199. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2200. }
  2201. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2202. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2203. _content = $$("div", {
  2204. className: "U_MD_D_KO",
  2205. "onmousedown": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_szscStudentDeskIconInfo[i]]),
  2209. "onclick": U.UF.C.closure(function (obj) {
  2210. //防止拖动图标即打开了桌面应用
  2211. U.MD.D.click(this, obj);
  2212. }, [_szscStudentDeskIconInfo[i]])
  2213. }, _frag); //
  2214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2217. }
  2218. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2219. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2220. _content = $$("div", {
  2221. className: "U_MD_D_KO",
  2222. "onmousedown": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_studentDesktopIconInfo3[i]]),
  2226. "onclick": U.UF.C.closure(function (obj) {
  2227. //防止拖动图标即打开了桌面应用
  2228. U.MD.D.click(this, obj);
  2229. }, [_studentDesktopIconInfo3[i]])
  2230. }, _frag); //
  2231. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2232. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2233. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2234. }
  2235. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2236. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2237. _content = $$("div", {
  2238. className: "U_MD_D_KO",
  2239. "onmousedown": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_studentDesktopIconInfo2[i]]),
  2243. "onclick": U.UF.C.closure(function (obj) {
  2244. //防止拖动图标即打开了桌面应用
  2245. U.MD.D.click(this, obj);
  2246. }, [_studentDesktopIconInfo2[i]])
  2247. }, _frag); //
  2248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2251. }
  2252. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2253. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2254. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2255. continue
  2256. }
  2257. _content = $$("div", {
  2258. className: "U_MD_D_KO",
  2259. "onmousedown": U.UF.C.closure(function (obj) {
  2260. //防止拖动图标即打开了桌面应用
  2261. U.MD.D.click(this, obj);
  2262. }, [_wanketeacherDesktopIconInfo[i]]),
  2263. "onclick": U.UF.C.closure(function (obj) {
  2264. //防止拖动图标即打开了桌面应用
  2265. U.MD.D.click(this, obj);
  2266. }, [_wanketeacherDesktopIconInfo[i]])
  2267. }, _frag); //
  2268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2271. }
  2272. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2273. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2274. _content = $$("div", {
  2275. className: "U_MD_D_KO",
  2276. "onmousedown": U.UF.C.closure(function (obj) {
  2277. //防止拖动图标即打开了桌面应用
  2278. U.MD.D.click(this, obj);
  2279. }, [_wankeAdminDesktopIconInfo[i]]),
  2280. "onclick": U.UF.C.closure(function (obj) {
  2281. //防止拖动图标即打开了桌面应用
  2282. U.MD.D.click(this, obj);
  2283. }, [_wankeAdminDesktopIconInfo[i]])
  2284. }, _frag); //
  2285. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2286. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2287. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2288. }
  2289. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2290. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2291. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2292. continue
  2293. }
  2294. _content = $$("div", {
  2295. className: "U_MD_D_KO",
  2296. "onmousedown": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2300. "onclick": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_scnuaiTeacherDeskIconInfo[i]])
  2304. }, _frag); //
  2305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2308. }
  2309. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2310. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2311. _content = $$("div", {
  2312. className: "U_MD_D_KO",
  2313. "onmousedown": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_scnuaiAdminDeskIconInfo[i]]),
  2317. "onclick": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_scnuaiAdminDeskIconInfo[i]])
  2321. }, _frag); //
  2322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2325. }
  2326. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2327. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2328. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2329. continue
  2330. }
  2331. _content = $$("div", {
  2332. className: "U_MD_D_KO",
  2333. "onmousedown": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_jccssylTeacherDeskIconInfo[i]]),
  2337. "onclick": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_jccssylTeacherDeskIconInfo[i]])
  2341. }, _frag); //
  2342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2345. }
  2346. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2347. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2348. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2349. continue
  2350. }
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_caleTeacherDeskIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_caleTeacherDeskIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2365. }
  2366. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2367. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_tpcOrganizerDeskIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_tpcOrganizerDeskIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2384. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2385. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2386. continue
  2387. }
  2388. _content = $$("div", {
  2389. className: "U_MD_D_KO",
  2390. "onmousedown": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_tpcTeacherDeskIconInfo[i]]),
  2394. "onclick": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_tpcTeacherDeskIconInfo[i]])
  2398. }, _frag); //
  2399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2402. }
  2403. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2404. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2405. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2406. continue
  2407. }
  2408. _content = $$("div", {
  2409. className: "U_MD_D_KO",
  2410. "onmousedown": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_teacherDesktopIconInfo2[i]]),
  2414. "onclick": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_teacherDesktopIconInfo2[i]])
  2418. }, _frag); //
  2419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2422. }
  2423. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2424. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2425. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2426. continue
  2427. }
  2428. _content = $$("div", {
  2429. className: "U_MD_D_KO",
  2430. "onmousedown": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_thuioeTeacherDeskIconInfo[i]]),
  2434. "onclick": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_thuioeTeacherDeskIconInfo[i]])
  2438. }, _frag); //
  2439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2442. }
  2443. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2444. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2445. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2446. continue
  2447. }
  2448. _content = $$("div", {
  2449. className: "U_MD_D_KO",
  2450. "onmousedown": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_lotechTeacherDeskIconInfo[i]]),
  2454. "onclick": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_lotechTeacherDeskIconInfo[i]])
  2458. }, _frag); //
  2459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2462. }//
  2463. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2464. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2465. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2466. continue
  2467. }
  2468. _content = $$("div", {
  2469. className: "U_MD_D_KO",
  2470. "onmousedown": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2474. "onclick": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2478. }, _frag); //
  2479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2482. }
  2483. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2484. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2485. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2486. continue
  2487. }
  2488. _content = $$("div", {
  2489. className: "U_MD_D_KO",
  2490. "onmousedown": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_siesTeacherDeskIconInfo[i]]),
  2494. "onclick": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_siesTeacherDeskIconInfo[i]])
  2498. }, _frag); //
  2499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2502. }
  2503. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2504. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2505. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2506. continue
  2507. }
  2508. _content = $$("div", {
  2509. className: "U_MD_D_KO",
  2510. "onmousedown": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_guzmsTeacherDeskIconInfo[i]]),
  2514. "onclick": U.UF.C.closure(function (obj) {
  2515. //防止拖动图标即打开了桌面应用
  2516. U.MD.D.click(this, obj);
  2517. }, [_guzmsTeacherDeskIconInfo[i]])
  2518. }, _frag); //
  2519. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2520. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2521. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2522. }
  2523. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2524. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2525. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2526. continue
  2527. }
  2528. _content = $$("div", {
  2529. className: "U_MD_D_KO",
  2530. "onmousedown": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_longhuaTeacherDeskIconInfo[i]]),
  2534. "onclick": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_longhuaTeacherDeskIconInfo[i]])
  2538. }, _frag); //
  2539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2542. }
  2543. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2544. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2545. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2546. continue
  2547. }
  2548. _content = $$("div", {
  2549. className: "U_MD_D_KO",
  2550. "onmousedown": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_ytyTeacherDeskIconInfo[i]]),
  2554. "onclick": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_ytyTeacherDeskIconInfo[i]])
  2558. }, _frag); //
  2559. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2562. }
  2563. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2564. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2565. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2566. continue
  2567. }
  2568. _content = $$("div", {
  2569. className: "U_MD_D_KO",
  2570. "onmousedown": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2574. "onclick": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_yunhaiTeacherDeskIconInfo[i]])
  2578. }, _frag); //
  2579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2582. } //_hkStudentDeskIconInfo
  2583. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2584. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2585. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2586. continue
  2587. }
  2588. _content = $$("div", {
  2589. className: "U_MD_D_KO",
  2590. "onmousedown": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2594. "onclick": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2598. }, _frag); //
  2599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2602. }
  2603. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2604. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2605. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2606. continue
  2607. }
  2608. _content = $$("div", {
  2609. className: "U_MD_D_KO",
  2610. "onmousedown": U.UF.C.closure(function (obj) {
  2611. //防止拖动图标即打开了桌面应用
  2612. U.MD.D.click(this, obj);
  2613. }, [_hkTeacherDeskIconInfo[i]]),
  2614. "onclick": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_hkTeacherDeskIconInfo[i]])
  2618. }, _frag); //
  2619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2622. }
  2623. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2624. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2625. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2626. continue
  2627. }
  2628. _content = $$("div", {
  2629. className: "U_MD_D_KO",
  2630. "onmousedown": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_hkaceTeacherDeskIconInfo[i]]),
  2634. "onclick": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_hkaceTeacherDeskIconInfo[i]])
  2638. }, _frag); //
  2639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2642. }
  2643. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2644. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2645. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2646. continue
  2647. }
  2648. _content = $$("div", {
  2649. className: "U_MD_D_KO",
  2650. "onmousedown": U.UF.C.closure(function (obj) {
  2651. //防止拖动图标即打开了桌面应用
  2652. U.MD.D.click(this, obj);
  2653. }, [_cocobizTeacherDeskIconInfo[i]]),
  2654. "onclick": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_cocobizTeacherDeskIconInfo[i]])
  2658. }, _frag); //
  2659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2662. }
  2663. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2664. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2665. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2666. continue
  2667. }
  2668. _content = $$("div", {
  2669. className: "U_MD_D_KO",
  2670. "onmousedown": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2674. "onclick": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2678. }, _frag); //
  2679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2682. }
  2683. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2684. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2685. _content = $$("div", {
  2686. className: "U_MD_D_KO",
  2687. "onmousedown": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_gdjgAdminDeskIconInfo[i]]),
  2691. "onclick": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_gdjgAdminDeskIconInfo[i]])
  2695. }, _frag); //
  2696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2699. }
  2700. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2701. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2702. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2703. continue
  2704. }
  2705. _content = $$("div", {
  2706. className: "U_MD_D_KO",
  2707. "onmousedown": U.UF.C.closure(function (obj) {
  2708. //防止拖动图标即打开了桌面应用
  2709. U.MD.D.click(this, obj);
  2710. }, [_gdjgTeacherDeskIconInfo[i]]),
  2711. "onclick": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_gdjgTeacherDeskIconInfo[i]])
  2715. }, _frag); //
  2716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2719. }
  2720. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2721. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2722. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2723. continue
  2724. }
  2725. _content = $$("div", {
  2726. className: "U_MD_D_KO",
  2727. "onmousedown": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_szherTeacherDeskIconInfo[i]]),
  2731. "onclick": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_szherTeacherDeskIconInfo[i]])
  2735. }, _frag); //
  2736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2739. }
  2740. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2741. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2742. _content = $$("div", {
  2743. className: "U_MD_D_KO",
  2744. "onmousedown": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_heyuannAdminDeskIconInfo[i]]),
  2748. "onclick": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_heyuannAdminDeskIconInfo[i]])
  2752. }, _frag); //
  2753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2756. }
  2757. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2758. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2759. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2760. continue
  2761. }
  2762. _content = $$("div", {
  2763. className: "U_MD_D_KO",
  2764. "onmousedown": U.UF.C.closure(function (obj) {
  2765. //防止拖动图标即打开了桌面应用
  2766. U.MD.D.click(this, obj);
  2767. }, [_heyuanTeacherDeskIconInfo[i]]),
  2768. "onclick": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_heyuanTeacherDeskIconInfo[i]])
  2772. }, _frag); //
  2773. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2774. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2775. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2776. } //
  2777. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2778. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2779. _content = $$("div", {
  2780. className: "U_MD_D_KO",
  2781. "onmousedown": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_dseiAdminDeskIconInfo[i]]),
  2785. "onclick": U.UF.C.closure(function (obj) {
  2786. //防止拖动图标即打开了桌面应用
  2787. U.MD.D.click(this, obj);
  2788. }, [_dseiAdminDeskIconInfo[i]])
  2789. }, _frag); //
  2790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2793. }
  2794. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2795. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2796. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2797. continue
  2798. }
  2799. _content = $$("div", {
  2800. className: "U_MD_D_KO",
  2801. "onmousedown": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_dseiTeacherDeskIconInfo[i]]),
  2805. "onclick": U.UF.C.closure(function (obj) {
  2806. //防止拖动图标即打开了桌面应用
  2807. U.MD.D.click(this, obj);
  2808. }, [_dseiTeacherDeskIconInfo[i]])
  2809. }, _frag); //
  2810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2813. } //
  2814. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2815. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2816. _content = $$("div", {
  2817. className: "U_MD_D_KO",
  2818. "onmousedown": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_chjyjAdminDeskIconInfo[i]]),
  2822. "onclick": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_chjyjAdminDeskIconInfo[i]])
  2826. }, _frag); //
  2827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2830. }//
  2831. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2832. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2833. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2834. continue
  2835. }
  2836. _content = $$("div", {
  2837. className: "U_MD_D_KO",
  2838. "onmousedown": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_chjyjTeacherDeskIconInfo[i]]),
  2842. "onclick": U.UF.C.closure(function (obj) {
  2843. //防止拖动图标即打开了桌面应用
  2844. U.MD.D.click(this, obj);
  2845. }, [_chjyjTeacherDeskIconInfo[i]])
  2846. }, _frag); //
  2847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2850. }
  2851. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2852. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2853. _content = $$("div", {
  2854. className: "U_MD_D_KO",
  2855. "onmousedown": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_szjkyAdminDeskIconInfo[i]]),
  2859. "onclick": U.UF.C.closure(function (obj) {
  2860. //防止拖动图标即打开了桌面应用
  2861. U.MD.D.click(this, obj);
  2862. }, [_szjkyAdminDeskIconInfo[i]])
  2863. }, _frag); //
  2864. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2865. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2866. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2867. }//
  2868. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2869. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2870. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2871. continue
  2872. }
  2873. _content = $$("div", {
  2874. className: "U_MD_D_KO",
  2875. "onmousedown": U.UF.C.closure(function (obj) {
  2876. //防止拖动图标即打开了桌面应用
  2877. U.MD.D.click(this, obj);
  2878. }, [_szjkyTeacherDeskIconInfo[i]]),
  2879. "onclick": U.UF.C.closure(function (obj) {
  2880. //防止拖动图标即打开了桌面应用
  2881. U.MD.D.click(this, obj);
  2882. }, [_szjkyTeacherDeskIconInfo[i]])
  2883. }, _frag); //
  2884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2887. }
  2888. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2889. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2890. _content = $$("div", {
  2891. className: "U_MD_D_KO",
  2892. "onmousedown": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_futianAdminDeskIconInfo[i]]),
  2896. "onclick": U.UF.C.closure(function (obj) {
  2897. //防止拖动图标即打开了桌面应用
  2898. U.MD.D.click(this, obj);
  2899. }, [_futianAdminDeskIconInfo[i]])
  2900. }, _frag); //
  2901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2904. }
  2905. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2906. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2907. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2908. continue
  2909. }
  2910. _content = $$("div", {
  2911. className: "U_MD_D_KO",
  2912. "onmousedown": U.UF.C.closure(function (obj) {
  2913. //防止拖动图标即打开了桌面应用
  2914. U.MD.D.click(this, obj);
  2915. }, [_futianTeacherDeskIconInfo[i]]),
  2916. "onclick": U.UF.C.closure(function (obj) {
  2917. //防止拖动图标即打开了桌面应用
  2918. U.MD.D.click(this, obj);
  2919. }, [_futianTeacherDeskIconInfo[i]])
  2920. }, _frag); //
  2921. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2922. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2923. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2924. }
  2925. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2926. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2927. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2928. continue
  2929. }
  2930. _content = $$("div", {
  2931. className: "U_MD_D_KO",
  2932. "onmousedown": U.UF.C.closure(function (obj) {
  2933. //防止拖动图标即打开了桌面应用
  2934. U.MD.D.click(this, obj);
  2935. }, [_MingdeTeacherDeskIcon[i]]),
  2936. "onclick": U.UF.C.closure(function (obj) {
  2937. //防止拖动图标即打开了桌面应用
  2938. U.MD.D.click(this, obj);
  2939. }, [_MingdeTeacherDeskIcon[i]])
  2940. }, _frag); //
  2941. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2942. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2943. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2944. }
  2945. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2946. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2947. _content = $$("div", {
  2948. className: "U_MD_D_KO",
  2949. "onmousedown": U.UF.C.closure(function (obj) {
  2950. //防止拖动图标即打开了桌面应用
  2951. U.MD.D.click(this, obj);
  2952. }, [_lhsAdminDesktopIconInfo[i]]),
  2953. "onclick": U.UF.C.closure(function (obj) {
  2954. //防止拖动图标即打开了桌面应用
  2955. U.MD.D.click(this, obj);
  2956. }, [_lhsAdminDesktopIconInfo[i]])
  2957. }, _frag); //
  2958. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2959. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2960. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2961. }
  2962. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2963. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2964. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2965. continue
  2966. }
  2967. _content = $$("div", {
  2968. className: "U_MD_D_KO",
  2969. "onmousedown": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_lhsteacherDesktopIconInfo[i]]),
  2973. "onclick": U.UF.C.closure(function (obj) {
  2974. //防止拖动图标即打开了桌面应用
  2975. U.MD.D.click(this, obj);
  2976. }, [_lhsteacherDesktopIconInfo[i]])
  2977. }, _frag); //
  2978. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2979. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2980. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2981. }
  2982. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2983. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2984. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2985. continue
  2986. }
  2987. _content = $$("div", {
  2988. className: "U_MD_D_KO",
  2989. "onmousedown": U.UF.C.closure(function (obj) {
  2990. //防止拖动图标即打开了桌面应用
  2991. U.MD.D.click(this, obj);
  2992. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2993. "onclick": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_zhoujiateacherDesktopIconInfo[i]])
  2997. }, _frag); //
  2998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3001. }
  3002. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3003. for (i = 0; i < _hanDeskIcon.length; i++) {
  3004. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3005. continue
  3006. }
  3007. _content = $$("div", {
  3008. className: "U_MD_D_KO",
  3009. "onmousedown": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_hanDeskIcon[i]]),
  3013. "onclick": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_hanDeskIcon[i]])
  3017. }, _frag); //
  3018. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3019. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3020. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3021. }
  3022. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3023. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3024. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3025. continue
  3026. }
  3027. _content = $$("div", {
  3028. className: "U_MD_D_KO",
  3029. "onmousedown": U.UF.C.closure(function (obj) {
  3030. //防止拖动图标即打开了桌面应用
  3031. U.MD.D.click(this, obj);
  3032. }, [_orgStemDeskIcon[i]]),
  3033. "onclick": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_orgStemDeskIcon[i]])
  3037. }, _frag); //
  3038. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3039. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3040. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3041. }
  3042. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3043. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3044. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3045. continue
  3046. }
  3047. _content = $$("div", {
  3048. className: "U_MD_D_KO",
  3049. "onmousedown": U.UF.C.closure(function (obj) {
  3050. //防止拖动图标即打开了桌面应用
  3051. U.MD.D.click(this, obj);
  3052. }, [_szulsDeskIcon[i]]),
  3053. "onclick": U.UF.C.closure(function (obj) {
  3054. //防止拖动图标即打开了桌面应用
  3055. U.MD.D.click(this, obj);
  3056. }, [_szulsDeskIcon[i]])
  3057. }, _frag); //
  3058. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3059. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3060. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3061. }
  3062. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3063. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3064. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3065. continue
  3066. }
  3067. _content = $$("div", {
  3068. className: "U_MD_D_KO",
  3069. "onmousedown": U.UF.C.closure(function (obj) {
  3070. //防止拖动图标即打开了桌面应用
  3071. U.MD.D.click(this, obj);
  3072. }, [_orgDesktopIconInfo[i]]),
  3073. "onclick": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_orgDesktopIconInfo[i]])
  3077. }, _frag); //
  3078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3081. }
  3082. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3083. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3084. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3085. continue
  3086. }
  3087. _content = $$("div", {
  3088. className: "U_MD_D_KO",
  3089. "onmousedown": U.UF.C.closure(function (obj) {
  3090. //防止拖动图标即打开了桌面应用
  3091. U.MD.D.click(this, obj);
  3092. }, [_schoolDesktopIconInfo[i]]),
  3093. "onclick": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_schoolDesktopIconInfo[i]])
  3097. }, _frag); //
  3098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3101. }
  3102. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3103. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3104. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3105. continue
  3106. }
  3107. _content = $$("div", {
  3108. className: "U_MD_D_KO",
  3109. "onmousedown": U.UF.C.closure(function (obj) {
  3110. //防止拖动图标即打开了桌面应用
  3111. U.MD.D.click(this, obj);
  3112. }, [_GMteacherDesktopIconInfo[i]]),
  3113. "onclick": U.UF.C.closure(function (obj) {
  3114. //防止拖动图标即打开了桌面应用
  3115. U.MD.D.click(this, obj);
  3116. }, [_GMteacherDesktopIconInfo[i]])
  3117. }, _frag); //
  3118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3121. }
  3122. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3123. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3124. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3125. continue
  3126. }
  3127. _content = $$("div", {
  3128. className: "U_MD_D_KO",
  3129. "onmousedown": U.UF.C.closure(function (obj) {
  3130. //防止拖动图标即打开了桌面应用
  3131. U.MD.D.click(this, obj);
  3132. }, [_SONGteacherDesktopIconInfo[i]]),
  3133. "onclick": U.UF.C.closure(function (obj) {
  3134. //防止拖动图标即打开了桌面应用
  3135. U.MD.D.click(this, obj);
  3136. }, [_SONGteacherDesktopIconInfo[i]])
  3137. }, _frag); //
  3138. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3139. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3140. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3141. }
  3142. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3143. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3144. _content = $$("div", {
  3145. className: "U_MD_D_KO",
  3146. "onmousedown": U.UF.C.closure(function (obj) {
  3147. //防止拖动图标即打开了桌面应用
  3148. U.MD.D.click(this, obj);
  3149. }, [_GMstudentDesktopIconInfo[i]]),
  3150. "onclick": U.UF.C.closure(function (obj) {
  3151. //防止拖动图标即打开了桌面应用
  3152. U.MD.D.click(this, obj);
  3153. }, [_GMstudentDesktopIconInfo[i]])
  3154. }, _frag); //
  3155. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3156. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3157. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3158. }
  3159. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3160. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3161. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3162. continue
  3163. }
  3164. _content = $$("div", {
  3165. className: "U_MD_D_KO",
  3166. "onmousedown": U.UF.C.closure(function (obj) {
  3167. //防止拖动图标即打开了桌面应用
  3168. U.MD.D.click(this, obj);
  3169. }, [_tcTeacherDeskIconInfo[i]]),
  3170. "onclick": U.UF.C.closure(function (obj) {
  3171. //防止拖动图标即打开了桌面应用
  3172. U.MD.D.click(this, obj);
  3173. }, [_tcTeacherDeskIconInfo[i]])
  3174. }, _frag); //
  3175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3178. }
  3179. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3180. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3181. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3182. continue
  3183. }
  3184. _content = $$("div", {
  3185. className: "U_MD_D_KO",
  3186. "onmousedown": U.UF.C.closure(function (obj) {
  3187. //防止拖动图标即打开了桌面应用
  3188. U.MD.D.click(this, obj);
  3189. }, [_tcOrganizerDeskIconInfo[i]]),
  3190. "onclick": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_tcOrganizerDeskIconInfo[i]])
  3194. }, _frag); //
  3195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3198. }
  3199. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3200. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3201. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3202. continue
  3203. }
  3204. _content = $$("div", {
  3205. className: "U_MD_D_KO",
  3206. "onmousedown": U.UF.C.closure(function (obj) {
  3207. //防止拖动图标即打开了桌面应用
  3208. U.MD.D.click(this, obj);
  3209. }, [_szscTeacherDeskIconInfo[i]]),
  3210. "onclick": U.UF.C.closure(function (obj) {
  3211. //防止拖动图标即打开了桌面应用
  3212. U.MD.D.click(this, obj);
  3213. }, [_szscTeacherDeskIconInfo[i]])
  3214. }, _frag); //
  3215. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3216. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3217. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3218. }
  3219. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3220. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3221. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3222. continue
  3223. }
  3224. _content = $$("div", {
  3225. className: "U_MD_D_KO",
  3226. "onmousedown": U.UF.C.closure(function (obj) {
  3227. //防止拖动图标即打开了桌面应用
  3228. U.MD.D.click(this, obj);
  3229. }, [_szscOrganizerDeskIconInfo[i]]),
  3230. "onclick": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_szscOrganizerDeskIconInfo[i]])
  3234. }, _frag); //
  3235. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3236. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3237. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3238. }
  3239. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3240. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3241. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3242. continue
  3243. }
  3244. _content = $$("div", {
  3245. className: "U_MD_D_KO",
  3246. "onmousedown": U.UF.C.closure(function (obj) {
  3247. //防止拖动图标即打开了桌面应用
  3248. U.MD.D.click(this, obj);
  3249. }, [_nsfxTeacherDeskIconInfo[i]]),
  3250. "onclick": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_nsfxTeacherDeskIconInfo[i]])
  3254. }, _frag); //
  3255. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3256. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3257. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3258. }
  3259. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3260. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3261. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3262. continue
  3263. }
  3264. _content = $$("div", {
  3265. className: "U_MD_D_KO",
  3266. "onmousedown": U.UF.C.closure(function (obj) {
  3267. //防止拖动图标即打开了桌面应用
  3268. U.MD.D.click(this, obj);
  3269. }, [_stiaTeacherDeskIconInfo[i]]),
  3270. "onclick": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_stiaTeacherDeskIconInfo[i]])
  3274. }, _frag); //
  3275. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3276. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3277. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3278. }
  3279. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3280. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3281. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3282. continue
  3283. }
  3284. _content = $$("div", {
  3285. className: "U_MD_D_KO",
  3286. "onmousedown": U.UF.C.closure(function (obj) {
  3287. //防止拖动图标即打开了桌面应用
  3288. U.MD.D.click(this, obj);
  3289. }, [_szdjgTeacherDeskIconInfo[i]]),
  3290. "onclick": U.UF.C.closure(function (obj) {
  3291. //防止拖动图标即打开了桌面应用
  3292. U.MD.D.click(this, obj);
  3293. }, [_szdjgTeacherDeskIconInfo[i]])
  3294. }, _frag); //
  3295. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3296. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3297. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3298. }
  3299. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3300. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3301. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3302. continue
  3303. }
  3304. _content = $$("div", {
  3305. className: "U_MD_D_KO",
  3306. "onmousedown": U.UF.C.closure(function (obj) {
  3307. //防止拖动图标即打开了桌面应用
  3308. U.MD.D.click(this, obj);
  3309. }, [_x010607TeacherDeskIconInfo[i]]),
  3310. "onclick": U.UF.C.closure(function (obj) {
  3311. //防止拖动图标即打开了桌面应用
  3312. U.MD.D.click(this, obj);
  3313. }, [_x010607TeacherDeskIconInfo[i]])
  3314. }, _frag); //
  3315. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3316. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3317. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3318. }
  3319. } else {
  3320. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3321. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3322. continue
  3323. }
  3324. _content = $$("div", {
  3325. className: "U_MD_D_KO",
  3326. "onmousedown": U.UF.C.closure(function (obj) {
  3327. //防止拖动图标即打开了桌面应用
  3328. U.MD.D.click(this, obj);
  3329. }, [_teacherDesktopIconInfo[i]]),
  3330. "onclick": U.UF.C.closure(function (obj) {
  3331. //防止拖动图标即打开了桌面应用
  3332. U.MD.D.click(this, obj);
  3333. }, [_teacherDesktopIconInfo[i]])
  3334. }, _frag); //
  3335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3338. }
  3339. }
  3340. } else {
  3341. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3342. _content = $$("div", {
  3343. className: "U_MD_D_KO",
  3344. style: { 'width': '124px', 'height': '145px' },
  3345. "onmousedown": U.UF.C.closure(function (obj) {
  3346. //防止拖动图标即打开了桌面应用
  3347. U.MD.D.click(this, obj);
  3348. }, [_easyDesktopIconInfo[i]]),
  3349. "onclick": U.UF.C.closure(function (obj) {
  3350. //防止拖动图标即打开了桌面应用
  3351. U.MD.D.click(this, obj);
  3352. }, [_easyDesktopIconInfo[i]])
  3353. }, _frag); //
  3354. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3357. }
  3358. }
  3359. if (type == 1) {
  3360. //加载好后给图标定位
  3361. U.MD.D.iconPostion($(_frag).Child());
  3362. } else {
  3363. //加载好后给图标定位
  3364. U.MD.D.iconPostion2($(_frag).Child());
  3365. }
  3366. //把图标加载到页面
  3367. el.appendChild(_frag);
  3368. }
  3369. /**
  3370. * 显示任务栏
  3371. *
  3372. * @param {element} 桌面元素
  3373. */
  3374. U.MD.D.I.displayTaskbar = function (el) {
  3375. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3376. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3377. //任务栏位置变化
  3378. U.selectEl(el).css({ "bottom": "0px" });
  3379. //桌面位置变话
  3380. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3381. }
  3382. }
  3383. //#region 桌面图标拖动逻辑
  3384. /**
  3385. * 桌面排列图标
  3386. *
  3387. * @param {element} 桌面元素
  3388. * @param {object} 上下相距的距离
  3389. * @param {object} 左右相距的距离
  3390. * @return {object} 命名空间
  3391. */
  3392. U.MD.D.iconPostion = function (childs, top, left) {
  3393. var i; //用于循环处理
  3394. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3395. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3396. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3397. for (i = 0; i < childs.length; i++) {
  3398. //如果竖排top超过了范围处理
  3399. if (top + 95 > US.height - 10) {
  3400. //left超过了页面范围处理,则向上重叠打印处理
  3401. if ((left + 180) > US.width) {
  3402. top -= 110;
  3403. left -= 90;
  3404. }
  3405. //没有超过范围,那么left+90添加到下一个竖排打印
  3406. else {
  3407. left += 90;
  3408. top = 15;
  3409. };
  3410. }
  3411. //给图标的位置赋值
  3412. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3413. if (i < childs.length - 1) {
  3414. //页面图标每次向下加95
  3415. top += 95;
  3416. }
  3417. }
  3418. //返回最后调用的图标的位置
  3419. return [top, left];
  3420. }
  3421. /**
  3422. * 桌面排列图标
  3423. *
  3424. * @param {element} 桌面元素
  3425. * @param {object} 上下相距的距离
  3426. * @param {object} 左右相距的距离
  3427. * @return {object} 命名空间
  3428. */
  3429. U.MD.D.iconPostion2 = function (childs, top, left) {
  3430. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3431. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3432. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3433. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3434. for (i = 0; i < childs.length; i++) {
  3435. //如果竖排top超过了范围处理
  3436. if (left + 150 > US.width - 10) {
  3437. //left超过了页面范围处理,则向上重叠打印处理
  3438. if ((top + 180) > US.Height) {
  3439. top -= 150;
  3440. left -= 150;
  3441. }
  3442. //没有超过范围,那么left+90添加到下一个竖排打印
  3443. else {
  3444. top += 150;
  3445. left = ol;
  3446. };
  3447. }
  3448. //给图标的位置赋值
  3449. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3450. if (i < childs.length - 1) {
  3451. //页面图标每次向下加95
  3452. left += 150;
  3453. }
  3454. }
  3455. //返回最后调用的图标的位置
  3456. return [top, left];
  3457. }
  3458. /**
  3459. * 桌面点击事件逻辑
  3460. *
  3461. * @param {element} 桌面元素
  3462. * @param {object} 上下相距的距离
  3463. * @param {object} 左右相距的距离
  3464. * @return {object} 命名空间
  3465. */
  3466. U.MD.D.click = function (el, obj) {
  3467. var _buttonnumber = event.button; //点击的按钮的事件值
  3468. var _userinfo = US.userInfo;
  3469. U.UF.EV.stopBubble(); //阻止向上冒泡
  3470. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3471. if (_buttonnumber < 2) {
  3472. //如果是click事件的处理
  3473. if (event.type == "click") {
  3474. //如果元素在mousemove事件中没有移动则出发click事件
  3475. if (!U.MD.D.I.IsDrag) {
  3476. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3477. U.alert("请先登录您的账号!");
  3478. setTimeout(() => {
  3479. U.MD.U.L.login();
  3480. }, 2000);
  3481. } else {
  3482. //打开应用处理
  3483. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3484. }
  3485. }
  3486. }
  3487. //如果是mouse事件的处理
  3488. else {
  3489. if (US.Config.type == '1') {
  3490. //拖动处理,添加拖动和拖动结束事件
  3491. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3492. }
  3493. }
  3494. U.MD.D.I.IsDrag = false;
  3495. }
  3496. }
  3497. /**
  3498. * 拖动的处理
  3499. *
  3500. */
  3501. U.MD.D.iconMove = function () {
  3502. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3503. U.MD.D.I.IsDrag = true;
  3504. }
  3505. /**
  3506. * 拖动结束后,这里是定位处理,以网状的形式定位
  3507. *
  3508. * @param {element} 拖动的元素
  3509. * @return {object} 命名空间
  3510. */
  3511. U.MD.D.iconUp = function (el) {
  3512. var _top = 15,
  3513. _left = 20,
  3514. _margin,
  3515. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3516. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3517. if (_positioninfo["OT"] > 15) {
  3518. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3519. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3520. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3521. }
  3522. if (_positioninfo["OL"] > 20) {
  3523. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3524. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3525. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3526. }
  3527. //while循环判断么一个重叠的元素
  3528. do {
  3529. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3530. _top = _positioninfo[0] + 95; //得到定位后的top
  3531. _left = _positioninfo[1]; //得到定位后的left
  3532. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3533. }
  3534. /**
  3535. * 判断拖动后图标是否重叠
  3536. *
  3537. * @param {element} 拖动的元素
  3538. * @param {element} 桌面所有的元素
  3539. * @param {array} 拖动元素的位置
  3540. ----------[0] 上 top
  3541. ----------[1] 左 left
  3542. * @return {object} 命名空间
  3543. */
  3544. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3545. //循环所有的图标
  3546. for (var i = 0; i < childs.length; i++) {
  3547. //判断有没有和该图标诶子重叠的元素
  3548. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3549. return childs[i]; //如果有返回
  3550. }
  3551. }
  3552. }
  3553. //#endregion
  3554. //#endregion
  3555. //#region 桌面应用
  3556. /**
  3557. * 打开应用
  3558. *
  3559. * @param {string} 类型
  3560. -----------------Disk 网盘系统
  3561. -----------------PDisk 学习系统网盘
  3562. -----------------Poto 图片
  3563. -----------------Video 视频
  3564. -----------------Music 音乐
  3565. -----------------Word word
  3566. -----------------Excel excel
  3567. -----------------Txt 记事本
  3568. -----------------PB 学习系统
  3569. -----------------Blog 朋友圈系统
  3570. -----------------FTP ftp系统
  3571. -----------------Group 好友群
  3572. -----------------SY 首页系统
  3573. -----------------Set 个人设置
  3574. -----------------XSet 系统设置
  3575. -----------------App 我们所有的app
  3576. -----------------BC c.1473.cn 平台
  3577. -----------------CWeb d.1473.cn 变成平台
  3578. -----------------其他的外联系统 我们统一用iframe打开
  3579. * @param {array} 类型
  3580. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3581. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3582. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3583. 如果第一个参数为其他,则无第二个参数
  3584. * @returns {array}
  3585. */
  3586. window.addEventListener('message', function (e) { // 监听 message 事件
  3587. // alert(e.data.type);
  3588. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3589. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3590. //3是展示全部阶段 2学生 1老师 4专家
  3591. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3592. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3593. //3是展示全部阶段 2学生 1老师 4专家
  3594. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3595. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3596. //3是展示全部阶段 2学生 1老师 4专家
  3597. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3598. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3599. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3600. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3601. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3602. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3603. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3604. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3605. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3606. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3607. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3608. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3609. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3610. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3611. //3是展示全部阶段 2学生 1老师 4专家
  3612. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3613. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3614. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3615. U.MD.D.I.selectUser();
  3616. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3617. var _formel = document.getElementById("study");
  3618. U.UF.F.windowZooming(_formel);
  3619. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3620. var _formel = document.getElementById("studyDetail");
  3621. U.UF.F.windowZooming(_formel);
  3622. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3623. var _formel = document.getElementById("studyDetail");
  3624. U.UF.F.windowZooming(_formel);
  3625. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3626. var _formel = document.getElementById("studentStudy");
  3627. U.UF.F.windowZooming(_formel);
  3628. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3629. // var _formel = document.getElementById("study");
  3630. //如果最大化了,那么就把他缩小
  3631. // if (_formel.ismaximize) {
  3632. // return;
  3633. // }
  3634. // U.UF.F.windowZooming(_formel);
  3635. // U.UF.F.topWindow(_formel);
  3636. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3637. // var _formel = document.getElementById("studyDetail");
  3638. //如果最大化了,那么就把他缩小
  3639. // if (_formel.ismaximize) {
  3640. // return;
  3641. // }
  3642. // U.UF.F.windowZooming(_formel);
  3643. // U.UF.F.topWindow(_formel);
  3644. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3645. // var _formel = document.getElementById("studentStudy");
  3646. // if (_formel.ismaximize) {
  3647. // return;
  3648. // }
  3649. // U.UF.F.windowZooming(_formel);
  3650. // U.UF.F.topWindow(_formel);
  3651. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3652. var _formel = document.getElementById("study");
  3653. // if (_formel.ismaximize) {
  3654. // return;
  3655. // }
  3656. // U.UF.F.windowZooming(_formel);
  3657. U.UF.F.topWindow(_formel);
  3658. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3659. var _formel = document.getElementById("studentIndex");
  3660. U.UF.F.windowZooming(_formel);
  3661. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3662. var _formel = document.getElementById("studyDetailS");
  3663. U.UF.F.windowZooming(_formel);
  3664. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3665. var _formel = document.getElementById("studioIndex");
  3666. U.UF.F.windowZooming(_formel);
  3667. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3668. var _formel = document.getElementById("studyDetailStudio");
  3669. U.UF.F.windowZooming(_formel);
  3670. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3671. var _formel = document.getElementById("studyDetailStudio");
  3672. U.UF.F.windowZooming(_formel);
  3673. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3674. var _formel = document.getElementById("studyDetailNT");
  3675. U.UF.F.windowZooming(_formel);
  3676. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3677. var _formel = document.getElementById("studyDetailS");
  3678. U.UF.F.windowZooming(_formel);
  3679. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3680. var _formel = document.getElementById("studyDetailS");
  3681. U.UF.F.topWindow(_formel);
  3682. } else if (e.data.tools && e.data.tools == "1") {
  3683. // U.MD.D.I.openApplication("whiteboard")
  3684. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3685. } else if (e.data.tools && e.data.tools == "2") {
  3686. U.MD.D.I.openApplication("note")
  3687. } else if (e.data.tools && e.data.tools == "3") {
  3688. // U.MD.D.I.openApplication("mind")
  3689. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3690. } else if (e.data.tools && e.data.tools == "4") {
  3691. U.MD.D.I.openApplication("investigation")
  3692. } else if (e.data.tools && e.data.tools == "6") {
  3693. // U.MD.D.I.openApplication("doc")
  3694. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3695. } else if (e.data.tools && e.data.tools == "7") {
  3696. // U.MD.D.I.openApplication("mindNetwork")
  3697. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3698. } else if (e.data.tools && e.data.tools == "8") {
  3699. U.MD.D.I.openApplication("library")
  3700. } else if (e.data.tools && e.data.tools == "17") {
  3701. U.MD.D.I.openApplication("stuLibrary")
  3702. } else if (e.data.tools && e.data.tools == "18") {
  3703. U.MD.D.I.openApplication("train")
  3704. } else if (e.data.tools && e.data.tools == "21") {
  3705. U.MD.D.I.openApplication("program")
  3706. } else if (e.data.tools && e.data.tools == "22") {
  3707. U.MD.D.I.openApplication("AIprogram2")
  3708. } else if (e.data.tools && e.data.tools == "23") {
  3709. U.MD.D.I.openApplication("Pythonprogram")
  3710. } else if (e.data.tools && e.data.tools == "24") {
  3711. U.MD.D.I.openApplication("AIprogram")
  3712. } else if (e.data.tools && e.data.tools == "25") {
  3713. U.MD.D.I.openApplication("sys")
  3714. } else if (e.data.tools && e.data.tools == "26") {
  3715. // U.MD.D.I.openApplication("courseDesign")
  3716. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3717. } else if (e.data.tools && e.data.tools == "31") {
  3718. U.MD.D.I.openApplication("netWorkPanel")
  3719. } else if (e.data.tools && e.data.tools == "32") {
  3720. U.MD.D.I.openApplication("codeEdit")
  3721. } else if (e.data.tools && e.data.tools == "57") {
  3722. U.MD.D.I.openApplication("CocoPi")
  3723. } else if (e.data.tools && e.data.tools == "63") {
  3724. U.MD.D.I.openApplication("Wood")
  3725. } else if (e.data.tools && e.data.tools == "58") {
  3726. U.MD.D.I.openApplication("car")
  3727. } else if (e.data.tools && e.data.tools == "59") {
  3728. U.MD.D.I.openApplication("lineSearch")
  3729. } else if (e.data.tools && e.data.tools == "60") {
  3730. U.MD.D.I.openApplication("deepLearning")
  3731. } else if (e.data.tools && e.data.tools == "61") {
  3732. U.MD.D.I.openApplication("allHistory")
  3733. } else if (e.data.tools && e.data.tools == "28") {
  3734. U.MD.D.I.openApplication("translation")
  3735. } else if (e.data.tools && e.data.tools == "37") {
  3736. U.MD.D.I.openApplication("mohe")
  3737. } else if (e.data.tools && e.data.tools == "38") {
  3738. U.MD.D.I.openApplication("24game")
  3739. } else if (e.data.tools && e.data.tools == "39") {
  3740. U.MD.D.I.openApplication("GeoGebra")
  3741. } else if (e.data.tools && e.data.tools == "43") {
  3742. U.MD.D.I.openApplication("studentEvaluate")
  3743. } else if (e.data.tools && e.data.tools == "44") {
  3744. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3745. } else if (e.data.tools && e.data.tools == "46") {
  3746. U.MD.D.I.openApplication("project")
  3747. } else if (e.data.tools && e.data.tools == "71") {
  3748. U.MD.D.I.openApplication("aigptCourse")
  3749. } else if (e.data.tools && e.data.tools == "1s") {
  3750. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3751. } else if (e.data.tools && e.data.tools == "3s") {
  3752. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3753. } else if (e.data.tools && e.data.tools == "6s") {
  3754. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3755. } else if (e.data.tools && e.data.tools == "1studio") {
  3756. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3757. } else if (e.data.tools && e.data.tools == "3studio") {
  3758. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3759. } else if (e.data.tools && e.data.tools == "6studio") {
  3760. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3761. } else if (e.data.tools && e.data.tools == "3y") {
  3762. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3763. } else if (e.data.tools && e.data.tools == "1y") {
  3764. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3765. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3766. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3767. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3768. U.MD.D.I.openApplication("AIAnalyse")
  3769. } else if (e.data.tools && e.data.tools == "1teacher") {
  3770. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3771. } else if (e.data.tools && e.data.tools == "3teacher") {
  3772. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3773. } else if (e.data.tools && e.data.tools == "7teacher") {
  3774. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3775. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3776. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3777. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3778. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3779. } else if (e.data.tools && e.data.tools == "1E") {
  3780. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3781. } else if (e.data.tools && e.data.tools == "3E") {
  3782. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3783. } else if (e.data.tools && e.data.tools == "57y") {
  3784. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3785. } else if (e.data.tools && e.data.tools == "57u") {
  3786. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3787. } else if (e.data.tools && e.data.tools == "57teacher") {
  3788. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3789. } else if (e.data.tools && e.data.tools == "64") {
  3790. U.MD.D.I.openApplication("AIChat")
  3791. } else if (e.data.tools && e.data.tools == "66") {
  3792. U.MD.D.I.openApplication("formulaEdi")
  3793. } else if (e.data.tools && e.data.tools == "67") {
  3794. U.MD.D.I.openApplication("molStr")
  3795. } else if (e.data.tools && e.data.tools == "68") {
  3796. U.MD.D.I.openApplication("timeAxis")
  3797. } else if (e.data.tools && e.data.tools == "openCourse") {
  3798. let _data = {
  3799. typea: e.data.typea || '',
  3800. typeb: e.data.typeb || '',
  3801. typed: e.data.typed || '',
  3802. }
  3803. U.MD.D.I.openInApplication("index", _data)
  3804. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3805. let _data = {
  3806. classid: e.data.classid || '',
  3807. }
  3808. U.MD.D.I.openInApplication("dataClass", _data)
  3809. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3810. let _data = {
  3811. cid: e.data.cid || '',
  3812. gid: e.data.gid || '',
  3813. }
  3814. U.MD.D.I.openInApplication("opencCscl", _data)
  3815. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3816. U.MD.D.I.openApplication("dataBoardTest")
  3817. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3818. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3819. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3820. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3821. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3822. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3823. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3824. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3825. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3826. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3827. }else if (e.data.tools && e.data.tools == "loginSz") {
  3828. U.MD.D.I.openInApplication("loginSz")
  3829. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3830. if($('#classroom_observation_board')[0]){
  3831. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3832. }
  3833. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3834. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3835. if($('#classroom_observation_ob_comment')[0]){
  3836. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3837. }
  3838. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3839. }
  3840. });
  3841. U.MD.D.I.selectUser = function () {
  3842. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3843. if (res.value[0].length > 0) {
  3844. US.userInfo = res.value[0][0];
  3845. $(".userName")[0].innerHTML = US.userInfo.username;
  3846. }
  3847. }, [], { "type": "GET", "withCredentials": true });
  3848. }
  3849. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3850. var _userinfo = US.userInfo, //登录用户信息
  3851. _userid = US.userInfo.userid, //登录用户id
  3852. _oid = _userinfo.organizeid,
  3853. _type = US.userInfo.type,
  3854. _org = US.userInfo.org,
  3855. _role = US.userInfo.role,
  3856. _classId = US.userInfo.classid;
  3857. if (_type == 4) {
  3858. tType = 4
  3859. }
  3860. switch (str) {
  3861. case "studyDetailNT": //无终端模式
  3862. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3863. setTimeout(() => {
  3864. U.MD.U.L.login();
  3865. }, 2000);
  3866. } else {
  3867. _formdiv = new U.UF.UI.form(
  3868. "课程详情",
  3869. $$("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 }), {
  3870. "id": "studyDetailNT",
  3871. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3872. "onresize": function () { }
  3873. }, {
  3874. closecallback: function () { }
  3875. }, { "style": { "height": "36px" } }).form; //创建窗体
  3876. _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); } }
  3877. break;
  3878. }
  3879. case "studyDetail":
  3880. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3881. setTimeout(() => {
  3882. U.MD.U.L.login();
  3883. }, 2000);
  3884. } else {
  3885. _formdiv = new U.UF.UI.form(
  3886. "课程详情",
  3887. $$("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 }), {
  3888. "id": "studyDetail",
  3889. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3890. "onresize": function () { }
  3891. }, {
  3892. closecallback: function () { }
  3893. }, { "style": { "height": "36px" } }).form; //创建窗体
  3894. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3895. break;
  3896. }
  3897. case "studyDetailTrain":
  3898. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3899. setTimeout(() => {
  3900. U.MD.U.L.login();
  3901. }, 2000);
  3902. } else {
  3903. _formdiv = new U.UF.UI.form(
  3904. "培训详情",
  3905. $$("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 }), {
  3906. "id": "studyDetailTrain",
  3907. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3908. "onresize": function () { }
  3909. }, {
  3910. closecallback: function () { }
  3911. }, { "style": { "height": "36px" } }).form; //创建窗体
  3912. _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); } }
  3913. break;
  3914. }
  3915. case "studyDetailS":
  3916. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3917. setTimeout(() => {
  3918. U.MD.U.L.login();
  3919. }, 2000);
  3920. } else {
  3921. _formdiv = new U.UF.UI.form(
  3922. "项目详情",
  3923. $$("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 }), {
  3924. "id": "studyDetailS",
  3925. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3926. "onresize": function () { }
  3927. }, {
  3928. closecallback: function () { }
  3929. }, { "style": { "height": "36px" } }).form; //创建窗体
  3930. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3931. break;
  3932. }
  3933. case "studyDetailStudio":
  3934. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3935. setTimeout(() => {
  3936. U.MD.U.L.login();
  3937. }, 2000);
  3938. } else {
  3939. _formdiv = new U.UF.UI.form(
  3940. "工作详情",
  3941. $$("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 }), {
  3942. "id": "studyDetailStudio",
  3943. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3944. "onresize": function () { }
  3945. }, {
  3946. closecallback: function () { }
  3947. }, { "style": { "height": "36px" } }).form; //创建窗体
  3948. _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); } }
  3949. break;
  3950. }
  3951. case "studyDetailS5":
  3952. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3953. setTimeout(() => {
  3954. U.MD.U.L.login();
  3955. }, 2000);
  3956. } else {
  3957. _formdiv = new U.UF.UI.form(
  3958. "项目详情",
  3959. $$("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 }), {
  3960. "id": "studyDetailS",
  3961. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3962. "onresize": function () { }
  3963. }, {
  3964. closecallback: function () { }
  3965. }, { "style": { "height": "36px" } }).form; //创建窗体
  3966. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3967. break;
  3968. }
  3969. case "studyDetailGM":
  3970. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3971. setTimeout(() => {
  3972. U.MD.U.L.login();
  3973. }, 2000);
  3974. } else {
  3975. _formdiv = new U.UF.UI.form(
  3976. "课程详情",
  3977. $$("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 }), {
  3978. "id": "studyDetail",
  3979. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3980. "onresize": function () { }
  3981. }, {
  3982. closecallback: function () { }
  3983. }, { "style": { "height": "36px" } }).form; //创建窗体
  3984. _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); } }
  3985. break;
  3986. }
  3987. case "hanUrl":
  3988. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3989. setTimeout(() => {
  3990. U.MD.U.L.login();
  3991. }, 2000);
  3992. } else {
  3993. _formdiv = new U.UF.UI.form(
  3994. "汉字宫",
  3995. $$("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" }), {
  3996. "id": "hanUrl",
  3997. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3998. "onresize": function () { }
  3999. }, {
  4000. closecallback: function () { }
  4001. }, { "style": { "height": "36px" } }).form; //创建窗体
  4002. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4003. break;
  4004. }
  4005. case "index":
  4006. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4007. setTimeout(() => {
  4008. U.MD.U.L.login();
  4009. }, 2000);
  4010. } else {
  4011. _formdiv = new U.UF.UI.form(
  4012. "课程中心",
  4013. $$("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 }), {
  4014. "id": "study",
  4015. "style": { "width": "100%", "height": "100%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4021. break;
  4022. }
  4023. case "dataClass":
  4024. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4025. setTimeout(() => {
  4026. U.MD.U.L.login();
  4027. }, 2000);
  4028. } else {
  4029. _formdiv = new U.UF.UI.form(
  4030. "数据报告",
  4031. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  4032. "id": "dataClass",
  4033. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4034. "onresize": function () { }
  4035. }, {
  4036. closecallback: function () { }
  4037. }, { "style": { "height": "36px" } }).form; //创建窗体
  4038. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4039. break;
  4040. }
  4041. case "opencCscl":
  4042. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4043. setTimeout(() => {
  4044. U.MD.U.L.login();
  4045. }, 2000);
  4046. } else {
  4047. _formdiv = new U.UF.UI.form(
  4048. "协同建构",
  4049. $$("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 }), {
  4050. "id": "futureClass",
  4051. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4052. "onresize": function () { }
  4053. }, {
  4054. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4055. }, { "style": { "height": "36px" } }).form; //创建窗体
  4056. _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); } }
  4057. break;
  4058. }
  4059. case "openCourseUpdate":
  4060. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4061. setTimeout(() => {
  4062. U.MD.U.L.login();
  4063. }, 2000);
  4064. } else {
  4065. _formdiv = new U.UF.UI.form(
  4066. "课程管理",
  4067. $$("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 }), {
  4068. "id": "openCourseUpdate",
  4069. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4070. "onresize": function () { }
  4071. }, {
  4072. closecallback: function () { }
  4073. }, { "style": { "height": "36px" } }).form; //创建窗体
  4074. break;
  4075. }
  4076. case "openNewCourseUpdate":
  4077. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4078. setTimeout(() => {
  4079. U.MD.U.L.login();
  4080. }, 2000);
  4081. } else {
  4082. _formdiv = new U.UF.UI.form(
  4083. "课程管理",
  4084. $$("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 }), {
  4085. "id": "openCourseUpdate",
  4086. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4087. "onresize": function () { }
  4088. }, {
  4089. closecallback: function () { }
  4090. }, { "style": { "height": "36px" } }).form; //创建窗体
  4091. break;
  4092. }
  4093. case "openCourseEUpdate":
  4094. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4095. setTimeout(() => {
  4096. U.MD.U.L.login();
  4097. }, 2000);
  4098. } else {
  4099. _formdiv = new U.UF.UI.form(
  4100. "课程管理",
  4101. $$("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 }), {
  4102. "id": "openCourseUpdate",
  4103. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4104. "onresize": function () { }
  4105. }, {
  4106. closecallback: function () { }
  4107. }, { "style": { "height": "36px" } }).form; //创建窗体
  4108. break;
  4109. }
  4110. case "openCourseAiUpdate":
  4111. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4112. setTimeout(() => {
  4113. U.MD.U.L.login();
  4114. }, 2000);
  4115. } else {
  4116. _formdiv = new U.UF.UI.form(
  4117. "课程管理",
  4118. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4119. "id": "openCourseUpdate",
  4120. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4121. "onresize": function () { }
  4122. }, {
  4123. closecallback: function () { }
  4124. }, { "style": { "height": "36px" } }).form; //创建窗体
  4125. break;
  4126. }
  4127. case "openCourseNewUpdate":
  4128. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4129. setTimeout(() => {
  4130. U.MD.U.L.login();
  4131. }, 2000);
  4132. } else {
  4133. _formdiv = new U.UF.UI.form(
  4134. "课程管理",
  4135. $$("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 }), {
  4136. "id": "openCourseUpdate",
  4137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4138. "onresize": function () { }
  4139. }, {
  4140. closecallback: function () { }
  4141. }, { "style": { "height": "36px" } }).form; //创建窗体
  4142. break;
  4143. }
  4144. case "inviteLoginSz":
  4145. _formdiv = new U.UF.UI.form(
  4146. "随机码登录",
  4147. $$("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 }), {
  4148. "id": "loginSz",
  4149. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4150. "onresize": function () { }
  4151. }, {
  4152. closecallback: function () { }
  4153. }, { "style": { "height": "36px" } }).form; //创建窗体
  4154. break;
  4155. case "loginSz":
  4156. _formdiv = new U.UF.UI.form(
  4157. "教师登录",
  4158. $$("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" }), {
  4159. "id": "loginSz",
  4160. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4161. "onresize": function () { }
  4162. }, {
  4163. closecallback: function () { }
  4164. }, { "style": { "height": "36px" } }).form; //创建窗体
  4165. break;
  4166. case "teacher":
  4167. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4168. setTimeout(() => {
  4169. U.MD.U.L.login();
  4170. }, 2000);
  4171. } else {
  4172. _formdiv = new U.UF.UI.form(
  4173. "教师管理",
  4174. $$("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 }), {
  4175. "id": "teacher",
  4176. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4177. "onresize": function () { }
  4178. }, {
  4179. closecallback: function () { }
  4180. }, { "style": { "height": "36px" } }).form; //创建窗体
  4181. break;
  4182. }
  4183. case "dataBoardSZArea":
  4184. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4185. setTimeout(() => {
  4186. U.MD.U.L.login();
  4187. }, 2000);
  4188. } else {
  4189. _formdiv = new U.UF.UI.form(
  4190. "综合数据看板",
  4191. $$("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 }), {
  4192. "id": "dataBoardSZArea",
  4193. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4194. "onresize": function () { }
  4195. }, {
  4196. closecallback: function () { }
  4197. }, { "style": { "height": "36px" } }).form; //创建窗体
  4198. break;
  4199. }
  4200. case "dataBoardSZCity":
  4201. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4202. setTimeout(() => {
  4203. U.MD.U.L.login();
  4204. }, 2000);
  4205. } else {
  4206. _formdiv = new U.UF.UI.form(
  4207. "综合数据看板",
  4208. $$("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 }), {
  4209. "id": "dataBoardSZCity",
  4210. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4211. "onresize": function () { }
  4212. }, {
  4213. closecallback: function () { }
  4214. }, { "style": { "height": "36px" } }).form; //创建窗体
  4215. break;
  4216. }
  4217. case "classroom_observation_board":
  4218. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4219. setTimeout(() => {
  4220. U.MD.U.L.login();
  4221. }, 2000);
  4222. } else {
  4223. _formdiv = new U.UF.UI.form(
  4224. "课堂观察",
  4225. $$("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 }), {
  4226. "id": "classroom_observation_board",
  4227. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4228. "onresize": function () { }
  4229. }, {
  4230. closecallback: function () { }
  4231. }, { "style": { "height": "36px" } }).form; //创建窗体
  4232. break;
  4233. }
  4234. case "classroom_observation_ob_comment":
  4235. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4236. setTimeout(() => {
  4237. U.MD.U.L.login();
  4238. }, 2000);
  4239. } else {
  4240. _formdiv = new U.UF.UI.form(
  4241. "课堂审核",
  4242. $$("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 }), {
  4243. "id": "classroom_observation_ob_comment",
  4244. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4245. "onresize": function () { }
  4246. }, {
  4247. closecallback: function () { }
  4248. }, { "style": { "height": "36px" } }).form; //创建窗体
  4249. break;
  4250. }
  4251. }
  4252. }
  4253. U.MD.D.I.openApplication = function (str, obj, info) {
  4254. obj = obj || {};
  4255. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4256. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4257. _userinfo = US.userInfo, //登录用户信息
  4258. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4259. _oid = obj.organizeid || _userinfo.organizeid,
  4260. _type = US.userInfo.type,
  4261. _org = US.userInfo.org,
  4262. _role = US.userInfo.role,
  4263. _classId = US.userInfo.classid,
  4264. _TscreenType = 1
  4265. _screenType = 2,
  4266. _SscreenType = 3;
  4267. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4268. return;
  4269. }
  4270. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4271. switch (str) {
  4272. case "studnetProject": //好友打开
  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-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  4276. "id": "studnetProject",
  4277. "style": { "width": "70%", "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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4283. break;
  4284. case "studentEvaluate": //好友打开
  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-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4288. "id": "studentEvaluate",
  4289. "style": { "width": "70%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4295. break;
  4296. case "my":
  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 + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4300. "id": "my",
  4301. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4307. break;
  4308. case "program":
  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": "https://x.cocorobo.cn" }), {
  4312. "id": "program",
  4313. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4319. break;
  4320. case "library":
  4321. _formdiv = new U.UF.UI.form(
  4322. "素材库",
  4323. $$("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 }), {
  4324. "id": "library",
  4325. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4326. "onresize": function () { }
  4327. }, {
  4328. closecallback: function () { }
  4329. }, { "style": { "height": "36px" } }).form; //创建窗体
  4330. _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); } }
  4331. break;
  4332. case "whiteboard":
  4333. _formdiv = new U.UF.UI.form(
  4334. "电子白板",
  4335. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4336. "id": "whiteboard",
  4337. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4338. "onresize": function () { }
  4339. }, {
  4340. closecallback: function () { }
  4341. }, { "style": { "height": "36px" } }).form; //创建窗体
  4342. _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); } }
  4343. break;
  4344. case "investigation":
  4345. _formdiv = new U.UF.UI.form(
  4346. "问卷调查",
  4347. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  4348. "id": "investigation",
  4349. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4350. "onresize": function () { }
  4351. }, {
  4352. closecallback: function () { }
  4353. }, { "style": { "height": "36px" } }).form; //创建窗体
  4354. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4355. break;
  4356. case "note":
  4357. _formdiv = new U.UF.UI.form(
  4358. "便签分类",
  4359. $$("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 }), {
  4360. "id": "note",
  4361. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4362. "onresize": function () { }
  4363. }, {
  4364. closecallback: function () { }
  4365. }, { "style": { "height": "36px" } }).form; //创建窗体
  4366. _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); } }
  4367. break;
  4368. // case "score":
  4369. // _formdiv = new U.UF.UI.form(
  4370. // "量规评分",
  4371. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4372. // "id": "score",
  4373. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4374. // "onresize": function() {}
  4375. // }, {
  4376. // closecallback: function() {}
  4377. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4378. // _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); } }
  4379. // break;
  4380. case "mind":
  4381. _formdiv = new U.UF.UI.form(
  4382. "思维导图",
  4383. $$("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"
  4384. "id": "mind",
  4385. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4386. "onresize": function () { }
  4387. }, {
  4388. closecallback: function () { }
  4389. }, { "style": { "height": "36px" } }).form; //创建窗体
  4390. _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); } }
  4391. break;
  4392. case "doc":
  4393. // U.MD.D.I.isRoom();
  4394. _formdiv = new U.UF.UI.form(
  4395. "协同文档",
  4396. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4397. "id": "doc",
  4398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4399. "onresize": function () { }
  4400. }, {
  4401. closecallback: function () { }
  4402. }, { "style": { "height": "36px" } }).form; //创建窗体
  4403. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4404. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4405. // })
  4406. _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); } }
  4407. break;
  4408. case "studentStudy":
  4409. _formdiv = new U.UF.UI.form(
  4410. "课程中心",
  4411. $$("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
  4412. "id": "studentStudy",
  4413. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4414. "onresize": function () { }
  4415. }, {
  4416. closecallback: function () { }
  4417. }, { "style": { "height": "36px" } }).form; //创建窗体
  4418. _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); } }
  4419. break;
  4420. case "train": //好友打开
  4421. _formdiv = new U.UF.UI.form(
  4422. "训练平台",
  4423. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4424. "id": "train",
  4425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4426. "onresize": function () { }
  4427. }, {
  4428. closecallback: function () { }
  4429. }, { "style": { "height": "36px" } }).form; //创建窗体
  4430. _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); } }
  4431. break;
  4432. case "mindNetwork": //好友打开
  4433. _formdiv = new U.UF.UI.form(
  4434. "思维网格",
  4435. $$("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 }), {
  4436. "id": "mindNetwork",
  4437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4438. "onresize": function () { }
  4439. }, {
  4440. closecallback: function () { }
  4441. }, { "style": { "height": "36px" } }).form; //创建窗体
  4442. _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); } }
  4443. break;
  4444. case "studentClassRoom": //好友打开
  4445. _formdiv = new U.UF.UI.form(
  4446. "实时课堂",
  4447. $$("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 }), {
  4448. "id": "studentClassRoom",
  4449. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4450. "onresize": function () { }
  4451. }, {
  4452. closecallback: function () { }
  4453. }, { "style": { "height": "36px" } }).form; //创建窗体
  4454. _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); } }
  4455. setTimeout(() => {
  4456. U.UF.F.windowZooming(_formdiv)
  4457. }, 0);
  4458. break;
  4459. }
  4460. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4461. switch (str) {
  4462. case "studnetProject": //好友打开
  4463. _formdiv = new U.UF.UI.form(
  4464. "我的项目",
  4465. $$("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 }), {
  4466. "id": "studnetProject",
  4467. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4468. "onresize": function () { }
  4469. }, {
  4470. closecallback: function () { }
  4471. }, { "style": { "height": "36px" } }).form; //创建窗体
  4472. _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); } }
  4473. break;
  4474. case "studentEvaluate": //好友打开
  4475. _formdiv = new U.UF.UI.form(
  4476. "我的评价",
  4477. $$("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 }), {
  4478. "id": "studentEvaluate",
  4479. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4480. "onresize": function () { }
  4481. }, {
  4482. closecallback: function () { }
  4483. }, { "style": { "height": "36px" } }).form; //创建窗体
  4484. _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); } }
  4485. break;
  4486. case "my":
  4487. _formdiv = new U.UF.UI.form(
  4488. "我的资料",
  4489. $$("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 }), {
  4490. "id": "my",
  4491. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4492. "onresize": function () { }
  4493. }, {
  4494. closecallback: function () { }
  4495. }, { "style": { "height": "36px" } }).form; //创建窗体
  4496. _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); } }
  4497. break;
  4498. case "program":
  4499. _formdiv = new U.UF.UI.form(
  4500. "编程平台",
  4501. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4502. "id": "program",
  4503. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4504. "onresize": function () { }
  4505. }, {
  4506. closecallback: function () { }
  4507. }, { "style": { "height": "36px" } }).form; //创建窗体
  4508. _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); } }
  4509. break;
  4510. case "library":
  4511. _formdiv = new U.UF.UI.form(
  4512. "素材库",
  4513. $$("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 }), {
  4514. "id": "library",
  4515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4516. "onresize": function () { }
  4517. }, {
  4518. closecallback: function () { }
  4519. }, { "style": { "height": "36px" } }).form; //创建窗体
  4520. _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); } }
  4521. break;
  4522. case "whiteboard":
  4523. _formdiv = new U.UF.UI.form(
  4524. "电子白板",
  4525. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4526. "id": "whiteboard",
  4527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4528. "onresize": function () { }
  4529. }, {
  4530. closecallback: function () { }
  4531. }, { "style": { "height": "36px" } }).form; //创建窗体
  4532. _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); } }
  4533. break;
  4534. case "investigation":
  4535. _formdiv = new U.UF.UI.form(
  4536. "问卷调查",
  4537. $$("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 }), {
  4538. "id": "investigation",
  4539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4540. "onresize": function () { }
  4541. }, {
  4542. closecallback: function () { }
  4543. }, { "style": { "height": "36px" } }).form; //创建窗体
  4544. _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); } }
  4545. break;
  4546. case "note":
  4547. _formdiv = new U.UF.UI.form(
  4548. "便签分类",
  4549. $$("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 }), {
  4550. "id": "note",
  4551. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4552. "onresize": function () { }
  4553. }, {
  4554. closecallback: function () { }
  4555. }, { "style": { "height": "36px" } }).form; //创建窗体
  4556. _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); } }
  4557. break;
  4558. // case "score":
  4559. // _formdiv = new U.UF.UI.form(
  4560. // "量规评分",
  4561. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4562. // "id": "score",
  4563. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4564. // "onresize": function() {}
  4565. // }, {
  4566. // closecallback: function() {}
  4567. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4568. // _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); } }
  4569. // break;
  4570. case "mind":
  4571. _formdiv = new U.UF.UI.form(
  4572. "思维导图",
  4573. $$("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"
  4574. "id": "mind",
  4575. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4576. "onresize": function () { }
  4577. }, {
  4578. closecallback: function () { }
  4579. }, { "style": { "height": "36px" } }).form; //创建窗体
  4580. _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); } }
  4581. break;
  4582. case "doc":
  4583. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), {
  4587. "id": "doc",
  4588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4589. "onresize": function () { }
  4590. }, {
  4591. closecallback: function () { }
  4592. }, { "style": { "height": "36px" } }).form; //创建窗体
  4593. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4594. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4595. })
  4596. _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); } }
  4597. break;
  4598. case "train": //好友打开
  4599. _formdiv = new U.UF.UI.form(
  4600. "训练平台",
  4601. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4602. "id": "train",
  4603. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4604. "onresize": function () { }
  4605. }, {
  4606. closecallback: function () { }
  4607. }, { "style": { "height": "36px" } }).form; //创建窗体
  4608. _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); } }
  4609. break;
  4610. case "studentStudy":
  4611. _formdiv = new U.UF.UI.form(
  4612. "课程中心",
  4613. $$("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
  4614. "id": "studentStudy",
  4615. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4616. "onresize": function () { }
  4617. }, {
  4618. closecallback: function () { }
  4619. }, { "style": { "height": "36px" } }).form; //创建窗体
  4620. _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); } }
  4621. break;
  4622. case "mindNetwork": //好友打开
  4623. _formdiv = new U.UF.UI.form(
  4624. "思维网格",
  4625. $$("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 }), {
  4626. "id": "mindNetwork",
  4627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4628. "onresize": function () { }
  4629. }, {
  4630. closecallback: function () { }
  4631. }, { "style": { "height": "36px" } }).form; //创建窗体
  4632. _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); } }
  4633. break;
  4634. case "studentClassRoom": //好友打开
  4635. _formdiv = new U.UF.UI.form(
  4636. "实时课堂",
  4637. $$("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 }), {
  4638. "id": "studentClassRoom",
  4639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4640. "onresize": function () { }
  4641. }, {
  4642. closecallback: function () { }
  4643. }, { "style": { "height": "36px" } }).form; //创建窗体
  4644. _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); } }
  4645. setTimeout(() => {
  4646. U.UF.F.windowZooming(_formdiv)
  4647. }, 0);
  4648. break;
  4649. }
  4650. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4651. //选择应用处理
  4652. switch (str) {
  4653. case "project": //好友打开
  4654. _formdiv = new U.UF.UI.form(
  4655. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4656. $$("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 }), {
  4657. "id": "project",
  4658. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4659. "onresize": function () { }
  4660. }, {
  4661. closecallback: function () { }
  4662. }, { "style": { "height": "36px" } }).form; //创建窗体
  4663. _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); } }
  4664. break;
  4665. case "student":
  4666. _formdiv = new U.UF.UI.form(
  4667. "学生管理",
  4668. $$("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 }), {
  4669. "id": "student",
  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/student.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 "sys":
  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/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4693. "id": "sys",
  4694. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4700. break;
  4701. case "courseDesign":
  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": "/course-design-vue" }), {
  4705. "id": "courseDesign",
  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/courseDesign.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 "class":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4729. "id": "class",
  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/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4736. break;
  4737. case "Grade":
  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/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4741. "id": "Grade",
  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/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4748. break;
  4749. case "teacherOffice":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4753. "id": "teacherOffice",
  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/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4760. break;
  4761. case "my":
  4762. _formdiv = new U.UF.UI.form(
  4763. "我的资料",
  4764. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4765. "id": "my",
  4766. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4767. "onresize": function () { }
  4768. }, {
  4769. closecallback: function () { }
  4770. }, { "style": { "height": "36px" } }).form; //创建窗体
  4771. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4772. break;
  4773. case "notice":
  4774. _formdiv = new U.UF.UI.form(
  4775. "通知公告",
  4776. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  4777. "id": "notice",
  4778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4779. "onresize": function () { }
  4780. }, {
  4781. closecallback: function () { }
  4782. }, { "style": { "height": "36px" } }).form; //创建窗体
  4783. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4784. break;
  4785. case "library":
  4786. _formdiv = new U.UF.UI.form(
  4787. "素材库",
  4788. $$("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 }), {
  4789. "id": "library",
  4790. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4791. "onresize": function () { }
  4792. }, {
  4793. closecallback: function () { }
  4794. }, { "style": { "height": "36px" } }).form; //创建窗体
  4795. _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); } }
  4796. break;
  4797. case "whiteboard":
  4798. _formdiv = new U.UF.UI.form(
  4799. "电子白板",
  4800. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4801. "id": "whiteboard",
  4802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4803. "onresize": function () { }
  4804. }, {
  4805. closecallback: function () { }
  4806. }, { "style": { "height": "36px" } }).form; //创建窗体
  4807. _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); } }
  4808. break;
  4809. case "investigation":
  4810. _formdiv = new U.UF.UI.form(
  4811. "问卷调查",
  4812. $$("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 }), {
  4813. "id": "investigation",
  4814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4815. "onresize": function () { }
  4816. }, {
  4817. closecallback: function () { }
  4818. }, { "style": { "height": "36px" } }).form; //创建窗体
  4819. _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); } }
  4820. break;
  4821. case "note":
  4822. _formdiv = new U.UF.UI.form(
  4823. "便签分类",
  4824. $$("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 }), {
  4825. "id": "note",
  4826. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4827. "onresize": function () { }
  4828. }, {
  4829. closecallback: function () { }
  4830. }, { "style": { "height": "36px" } }).form; //创建窗体
  4831. _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); } }
  4832. break;
  4833. // case "score":
  4834. // _formdiv = new U.UF.UI.form(
  4835. // "量规评分",
  4836. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4837. // "id": "score",
  4838. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4839. // "onresize": function() {}
  4840. // }, {
  4841. // closecallback: function() {}
  4842. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4843. // _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); } }
  4844. // break;
  4845. case "mind":
  4846. _formdiv = new U.UF.UI.form(
  4847. "思维导图",
  4848. $$("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"
  4849. "id": "mind",
  4850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4851. "onresize": function () { }
  4852. }, {
  4853. closecallback: function () { }
  4854. }, { "style": { "height": "36px" } }).form; //创建窗体
  4855. _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); } }
  4856. break;
  4857. case "doc":
  4858. // U.MD.D.I.isRoom();
  4859. _formdiv = new U.UF.UI.form(
  4860. "协同文档",
  4861. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4862. "id": "doc",
  4863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4864. "onresize": function () { }
  4865. }, {
  4866. closecallback: function () { }
  4867. }, { "style": { "height": "36px" } }).form; //创建窗体
  4868. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4869. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4870. })
  4871. _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); } }
  4872. break;
  4873. case "study":
  4874. _formdiv = new U.UF.UI.form(
  4875. "课程中心",
  4876. $$("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
  4877. "id": "study",
  4878. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4879. "onresize": function () { }
  4880. }, {
  4881. closecallback: function () { }
  4882. }, { "style": { "height": "36px" } }).form; //创建窗体
  4883. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4884. break;
  4885. case "mindNetwork": //好友打开
  4886. _formdiv = new U.UF.UI.form(
  4887. "思维网格",
  4888. $$("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 }), {
  4889. "id": "mindNetwork",
  4890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4891. "onresize": function () { }
  4892. }, {
  4893. closecallback: function () { }
  4894. }, { "style": { "height": "36px" } }).form; //创建窗体
  4895. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4896. break;
  4897. case "train": //好友打开
  4898. _formdiv = new U.UF.UI.form(
  4899. "训练平台",
  4900. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4901. "id": "mindNetwork",
  4902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4903. "onresize": function () { }
  4904. }, {
  4905. closecallback: function () { }
  4906. }, { "style": { "height": "36px" } }).form; //创建窗体
  4907. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4908. break;
  4909. case "teacherClassRoom": //好友打开
  4910. _formdiv = new U.UF.UI.form(
  4911. "实时课堂",
  4912. $$("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 }), {
  4913. "id": "teacherClassRoom",
  4914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4915. "onresize": function () { }
  4916. }, {
  4917. closecallback: function () { }
  4918. }, { "style": { "height": "36px" } }).form; //创建窗体
  4919. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4920. setTimeout(() => {
  4921. U.UF.F.windowZooming(_formdiv)
  4922. }, 0);
  4923. break;
  4924. }
  4925. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4926. switch (str) {
  4927. case "project": //好友打开
  4928. _formdiv = new U.UF.UI.form(
  4929. "课程管理",
  4930. $$("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 }), {
  4931. "id": "project",
  4932. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4933. "onresize": function () { }
  4934. }, {
  4935. closecallback: function () { }
  4936. }, { "style": { "height": "36px" } }).form; //创建窗体
  4937. _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); } }
  4938. break;
  4939. case "evaluate":
  4940. _formdiv = new U.UF.UI.form(
  4941. "学生评价",
  4942. $$("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 }), {
  4943. "id": "evaluate",
  4944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4945. "onresize": function () { }
  4946. }, {
  4947. closecallback: function () { }
  4948. }, { "style": { "height": "36px" } }).form; //创建窗体
  4949. _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); } }
  4950. break;
  4951. case "notice":
  4952. _formdiv = new U.UF.UI.form(
  4953. "通知公告",
  4954. $$("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 }), {
  4955. "id": "notice",
  4956. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4957. "onresize": function () { }
  4958. }, {
  4959. closecallback: function () { }
  4960. }, { "style": { "height": "36px" } }).form; //创建窗体
  4961. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4962. break;
  4963. case "stuLibrary":
  4964. _formdiv = new U.UF.UI.form(
  4965. "学习资料",
  4966. $$("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 }), {
  4967. "id": "stuLibrary",
  4968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4969. "onresize": function () { }
  4970. }, {
  4971. closecallback: function () { }
  4972. }, { "style": { "height": "36px" } }).form; //创建窗体
  4973. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4974. break;
  4975. case "program":
  4976. _formdiv = new U.UF.UI.form(
  4977. "编程平台",
  4978. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4979. "id": "program",
  4980. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4981. "onresize": function () { }
  4982. }, {
  4983. closecallback: function () { }
  4984. }, { "style": { "height": "36px" } }).form; //创建窗体
  4985. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4986. break;
  4987. case "whiteboard":
  4988. _formdiv = new U.UF.UI.form(
  4989. "电子白板",
  4990. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4991. "id": "whiteboard",
  4992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4993. "onresize": function () { }
  4994. }, {
  4995. closecallback: function () { }
  4996. }, { "style": { "height": "36px" } }).form; //创建窗体
  4997. _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); } }
  4998. break;
  4999. case "investigation":
  5000. _formdiv = new U.UF.UI.form(
  5001. "问卷调查",
  5002. $$("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 }), {
  5003. "id": "investigation",
  5004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5005. "onresize": function () { }
  5006. }, {
  5007. closecallback: function () { }
  5008. }, { "style": { "height": "36px" } }).form; //创建窗体
  5009. _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); } }
  5010. break;
  5011. case "mind":
  5012. _formdiv = new U.UF.UI.form(
  5013. "思维导图",
  5014. $$("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"
  5015. "id": "mind",
  5016. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5017. "onresize": function () { }
  5018. }, {
  5019. closecallback: function () { }
  5020. }, { "style": { "height": "36px" } }).form; //创建窗体
  5021. _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); } }
  5022. break;
  5023. case "doc":
  5024. // U.MD.D.I.isRoom();
  5025. _formdiv = new U.UF.UI.form(
  5026. "协同文档",
  5027. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5028. "id": "doc",
  5029. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5030. "onresize": function () { }
  5031. }, {
  5032. closecallback: function () { }
  5033. }, { "style": { "height": "36px" } }).form; //创建窗体
  5034. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5035. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5036. })
  5037. _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); } }
  5038. break;
  5039. case "study":
  5040. _formdiv = new U.UF.UI.form(
  5041. "课程中心",
  5042. $$("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
  5043. "id": "study",
  5044. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5045. "onresize": function () { }
  5046. }, {
  5047. closecallback: function () { }
  5048. }, { "style": { "height": "36px" } }).form; //创建窗体
  5049. _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); } }
  5050. break;
  5051. case "mindNetwork": //好友打开
  5052. _formdiv = new U.UF.UI.form(
  5053. "思维网格",
  5054. $$("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 }), {
  5055. "id": "mindNetwork",
  5056. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5057. "onresize": function () { }
  5058. }, {
  5059. closecallback: function () { }
  5060. }, { "style": { "height": "36px" } }).form; //创建窗体
  5061. _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); } }
  5062. break;
  5063. case "train": //好友打开
  5064. _formdiv = new U.UF.UI.form(
  5065. "训练平台",
  5066. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5067. "id": "train",
  5068. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5069. "onresize": function () { }
  5070. }, {
  5071. closecallback: function () { }
  5072. }, { "style": { "height": "36px" } }).form; //创建窗体
  5073. _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); } }
  5074. break;
  5075. case "sys":
  5076. _formdiv = new U.UF.UI.form(
  5077. "目标管理",
  5078. $$("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 }), {
  5079. "id": "sys",
  5080. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5081. "onresize": function () { }
  5082. }, {
  5083. closecallback: function () { }
  5084. }, { "style": { "height": "36px" } }).form; //创建窗体
  5085. _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); } }
  5086. break;
  5087. case "courseDesign":
  5088. _formdiv = new U.UF.UI.form(
  5089. "项目设计",
  5090. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5091. "id": "courseDesign",
  5092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5093. "onresize": function () { }
  5094. }, {
  5095. closecallback: function () { }
  5096. }, { "style": { "height": "36px" } }).form; //创建窗体
  5097. _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); } }
  5098. break;
  5099. }
  5100. } else if (!_type) {
  5101. switch (str) {
  5102. case "my":
  5103. _formdiv = new U.UF.UI.form(
  5104. "我的资料",
  5105. $$("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 }), {
  5106. "id": "my",
  5107. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5108. "onresize": function () { }
  5109. }, {
  5110. closecallback: function () { }
  5111. }, { "style": { "height": "36px" } }).form; //创建窗体
  5112. _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); } }
  5113. break;
  5114. }
  5115. }
  5116. switch (str) {
  5117. // AIprogram2 AI体验 aihub.cocorobo.cn
  5118. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5119. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5120. case "formulaEdi": //公式编辑
  5121. _formdiv = new U.UF.UI.form(
  5122. "公式编辑",
  5123. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5124. "id": "formulaEdi",
  5125. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5126. "onresize": function () { }
  5127. }, {
  5128. closecallback: function () { }
  5129. }, { "style": { "height": "36px" } }).form; //创建窗体
  5130. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5131. break;
  5132. case "molStr": //分子结构
  5133. _formdiv = new U.UF.UI.form(
  5134. "分子结构",
  5135. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5136. "id": "molStr",
  5137. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5138. "onresize": function () { }
  5139. }, {
  5140. closecallback: function () { }
  5141. }, { "style": { "height": "36px" } }).form; //创建窗体
  5142. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5143. break;
  5144. case "timeAxis": //时间轴
  5145. _formdiv = new U.UF.UI.form(
  5146. "时间轴",
  5147. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5148. "id": "timeAxis",
  5149. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5150. "onresize": function () { }
  5151. }, {
  5152. closecallback: function () { }
  5153. }, { "style": { "height": "36px" } }).form; //创建窗体
  5154. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5155. break;
  5156. case "AIprogram2": //AI体验
  5157. _formdiv = new U.UF.UI.form(
  5158. "AI体验",
  5159. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5160. "id": "AIprogram2",
  5161. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5162. "onresize": function () { }
  5163. }, {
  5164. closecallback: function () { }
  5165. }, { "style": { "height": "36px" } }).form; //创建窗体
  5166. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5167. break;
  5168. case "Pythonprogram": //python编程
  5169. _formdiv = new U.UF.UI.form(
  5170. "Python编程",
  5171. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5172. "id": "Pythonprogram",
  5173. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5179. break;
  5180. case "AIprogram": //ai编程
  5181. _formdiv = new U.UF.UI.form(
  5182. "AI编程平台",
  5183. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5184. "id": "AIprogram",
  5185. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5186. "onresize": function () { }
  5187. }, {
  5188. closecallback: function () { }
  5189. }, { "style": { "height": "36px" } }).form; //创建窗体
  5190. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5191. break;
  5192. case "CocoPi": //CocoPi
  5193. _formdiv = new U.UF.UI.form(
  5194. "CocoPi",
  5195. $$("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" }), {
  5196. "id": "CocoPi",
  5197. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, { "style": { "height": "36px" } }).form; //创建窗体
  5202. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5203. break;
  5204. case "Wood": //Wood
  5205. _formdiv = new U.UF.UI.form(
  5206. "海龟编程",
  5207. $$("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/" }), {
  5208. "id": "Wood",
  5209. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5210. "onresize": function () { }
  5211. }, {
  5212. closecallback: function () { }
  5213. }, { "style": { "height": "36px" } }).form; //创建窗体
  5214. _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); } }
  5215. break;
  5216. case "car": //模拟驾驶
  5217. _formdiv = new U.UF.UI.form(
  5218. "模拟驾驶",
  5219. $$("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/" }), {
  5220. "id": "car",
  5221. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5222. "onresize": function () { }
  5223. }, {
  5224. closecallback: function () { }
  5225. }, { "style": { "height": "36px" } }).form; //创建窗体
  5226. _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); } }
  5227. break;
  5228. case "lineSearch": //路径搜索
  5229. _formdiv = new U.UF.UI.form(
  5230. "路径搜索",
  5231. $$("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/" }), {
  5232. "id": "lineSearch",
  5233. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5234. "onresize": function () { }
  5235. }, {
  5236. closecallback: function () { }
  5237. }, { "style": { "height": "36px" } }).form; //创建窗体
  5238. _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); } }
  5239. break;
  5240. case "deepLearning": //深度学习
  5241. _formdiv = new U.UF.UI.form(
  5242. "深度学习",
  5243. $$("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/#" }), {
  5244. "id": "deepLearning",
  5245. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5246. "onresize": function () { }
  5247. }, {
  5248. closecallback: function () { }
  5249. }, { "style": { "height": "36px" } }).form; //创建窗体
  5250. _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); } }
  5251. break;
  5252. case "allHistory": //深度学习
  5253. _formdiv = new U.UF.UI.form(
  5254. "全历史",
  5255. $$("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/" }), {
  5256. "id": "allHistory",
  5257. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5258. "onresize": function () { }
  5259. }, {
  5260. closecallback: function () { }
  5261. }, { "style": { "height": "36px" } }).form; //创建窗体
  5262. _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); } }
  5263. break;
  5264. case "chatPDF": //ai编程
  5265. _formdiv = new U.UF.UI.form(
  5266. "chatPDF",
  5267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5268. "id": "chatPDF",
  5269. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5270. "onresize": function () { }
  5271. }, {
  5272. closecallback: function () { }
  5273. }, { "style": { "height": "36px" } }).form; //创建窗体
  5274. _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); } }
  5275. break;
  5276. case "resources": //国家教育
  5277. _formdiv = new U.UF.UI.form(
  5278. "国家教育",
  5279. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5280. "id": "resources",
  5281. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. _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); } }
  5287. break;
  5288. case "codeEdit": //源码编辑
  5289. _formdiv = new U.UF.UI.form(
  5290. "源码编辑",
  5291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5292. "id": "codeEdit",
  5293. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5294. "onresize": function () { }
  5295. }, {
  5296. closecallback: function () { }
  5297. }, { "style": { "height": "36px" } }).form; //创建窗体
  5298. _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); } }
  5299. break; //
  5300. case "MindMap": //MindMap
  5301. _formdiv = new U.UF.UI.form(
  5302. "MindMap",
  5303. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5304. "id": "MindMap",
  5305. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //创建窗体
  5310. _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); } }
  5311. break;
  5312. case "netWorkPanel": //netWorkPanel
  5313. _formdiv = new U.UF.UI.form(
  5314. "netWorkPanel",
  5315. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5316. "id": "netWorkPanel",
  5317. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5318. "onresize": function () { }
  5319. }, {
  5320. closecallback: function () { }
  5321. }, { "style": { "height": "36px" } }).form; //创建窗体
  5322. _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); } }
  5323. break;
  5324. case "GeoGebra": //GeoGebra
  5325. _formdiv = new U.UF.UI.form(
  5326. "GeoGebra",
  5327. $$("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" }), {
  5328. "id": "GeoGebra",
  5329. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5330. "onresize": function () { }
  5331. }, {
  5332. closecallback: function () { }
  5333. }, { "style": { "height": "36px" } }).form; //创建窗体
  5334. _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); } }
  5335. break;
  5336. case "translation": //翻译
  5337. _formdiv = new U.UF.UI.form(
  5338. "翻译",
  5339. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5340. "id": "translation",
  5341. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5342. "onresize": function () { }
  5343. }, {
  5344. closecallback: function () { }
  5345. }, { "style": { "height": "36px" } }).form; //创建窗体
  5346. _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); } }
  5347. break;
  5348. case "mohe": //魔盒
  5349. _formdiv = new U.UF.UI.form(
  5350. "魔盒识字",
  5351. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5352. "id": "mohe",
  5353. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5354. "onresize": function () { }
  5355. }, {
  5356. closecallback: function () { }
  5357. }, { "style": { "height": "36px" } }).form; //创建窗体
  5358. _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); } }
  5359. break;
  5360. case "24game": //24点
  5361. _formdiv = new U.UF.UI.form(
  5362. "24点",
  5363. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5364. "id": "24game",
  5365. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5366. "onresize": function () { }
  5367. }, {
  5368. closecallback: function () { }
  5369. }, { "style": { "height": "36px" } }).form; //创建窗体
  5370. _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); } }
  5371. break;
  5372. case "case":
  5373. _formdiv = new U.UF.UI.form(
  5374. "课程进展",
  5375. $$("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 }), {
  5376. "id": "case",
  5377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5378. "onresize": function () { }
  5379. }, {
  5380. closecallback: function () { }
  5381. }, { "style": { "height": "36px" } }).form; //创建窗体
  5382. _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); } }
  5383. break;
  5384. case "snf":
  5385. _formdiv = new U.UF.UI.form(
  5386. "赛诺梵",
  5387. $$("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" }), {
  5388. "id": "snf",
  5389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5390. "onresize": function () { }
  5391. }, {
  5392. closecallback: function () { }
  5393. }, { "style": { "height": "36px" } }).form; //创建窗体
  5394. _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); } }
  5395. break;
  5396. case "hanFamily":
  5397. _formdiv = new U.UF.UI.form(
  5398. "汉字家族",
  5399. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5400. "id": "hanFamily",
  5401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5402. "onresize": function () { }
  5403. }, {
  5404. closecallback: function () { }
  5405. }, { "style": { "height": "36px" } }).form; //创建窗体
  5406. _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); } }
  5407. break;
  5408. case "hanClassics":
  5409. _formdiv = new U.UF.UI.form(
  5410. "国学经典",
  5411. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5412. "id": "hanClassics",
  5413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5414. "onresize": function () { }
  5415. }, {
  5416. closecallback: function () { }
  5417. }, { "style": { "height": "36px" } }).form; //创建窗体
  5418. _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); } }
  5419. break;
  5420. case "hanTraining":
  5421. _formdiv = new U.UF.UI.form(
  5422. "笔画训练",
  5423. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5424. "id": "hanTraining",
  5425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5426. "onresize": function () { }
  5427. }, {
  5428. closecallback: function () { }
  5429. }, { "style": { "height": "36px" } }).form; //创建窗体
  5430. _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); } }
  5431. break;
  5432. case "hanClass":
  5433. _formdiv = new U.UF.UI.form(
  5434. "书法课堂",
  5435. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5436. "id": "hanClass",
  5437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5438. "onresize": function () { }
  5439. }, {
  5440. closecallback: function () { }
  5441. }, { "style": { "height": "36px" } }).form; //创建窗体
  5442. _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); } }
  5443. break;
  5444. case "han":
  5445. _formdiv = new U.UF.UI.form(
  5446. "汉字宫",
  5447. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5448. "id": "han",
  5449. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5450. "onresize": function () { }
  5451. }, {
  5452. closecallback: function () { }
  5453. }, { "style": { "height": "36px" } }).form; //创建窗体
  5454. _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); } }
  5455. break;
  5456. case "projectGM": //课程管理
  5457. _formdiv = new U.UF.UI.form(
  5458. "课程管理",
  5459. $$("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 }), {
  5460. "id": "projectGM",
  5461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5462. "onresize": function () { }
  5463. }, {
  5464. closecallback: function () { }
  5465. }, { "style": { "height": "36px" } }).form; //创建窗体
  5466. _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); } }
  5467. break;
  5468. case "studyGM": //课程中心
  5469. _formdiv = new U.UF.UI.form(
  5470. "课程中心",
  5471. $$("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
  5472. "id": "study",
  5473. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5474. "onresize": function () { }
  5475. }, {
  5476. closecallback: function () { }
  5477. }, { "style": { "height": "36px" } }).form; //创建窗体
  5478. _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); } }
  5479. break;
  5480. // studentGM
  5481. case "studentGM": //学生管理
  5482. _formdiv = new U.UF.UI.form(
  5483. "学生管理",
  5484. $$("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 }), {
  5485. "id": "studentGM",
  5486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _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); } }
  5492. break;
  5493. case "evaluateGM": //学生评价
  5494. _formdiv = new U.UF.UI.form(
  5495. "学生评价",
  5496. $$("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 }), {
  5497. "id": "evaluateGM",
  5498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _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); } }
  5504. break;
  5505. // classGM
  5506. case "classGM": //班级管理
  5507. _formdiv = new U.UF.UI.form(
  5508. "班级管理",
  5509. $$("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 }), {
  5510. "id": "classGM",
  5511. "style": { "width": "90%", "height": "90%", "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/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5517. break;
  5518. // dataGM
  5519. case "dataGM":
  5520. _formdiv = new U.UF.UI.form(
  5521. "我的资料",
  5522. $$("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 }), {
  5523. "id": "dataGM",
  5524. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5525. "onresize": function () { }
  5526. }, {
  5527. closecallback: function () { }
  5528. }, { "style": { "height": "36px" } }).form; //创建窗体
  5529. _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); } }
  5530. break;
  5531. // caseGM
  5532. case "caseGM": //课程进展
  5533. _formdiv = new U.UF.UI.form(
  5534. "课程进展",
  5535. $$("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 }), {
  5536. "id": "caseGM",
  5537. "style": { "width": "90%", "height": "90%", "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/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5543. break;
  5544. // meterialGM
  5545. case "meterialGM": //素材库
  5546. _formdiv = new U.UF.UI.form(
  5547. "素材库",
  5548. $$("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 }), {
  5549. "id": "meterialGM",
  5550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //创建窗体
  5555. _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); } }
  5556. break;
  5557. // evaluateSGM
  5558. case "evaluateSGM": //我的评价
  5559. _formdiv = new U.UF.UI.form(
  5560. "我的评价",
  5561. $$("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 }), {
  5562. "id": "evaluateSGM",
  5563. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5564. "onresize": function () { }
  5565. }, {
  5566. closecallback: function () { }
  5567. }, { "style": { "height": "36px" } }).form; //创建窗体
  5568. _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); } }
  5569. break;
  5570. case "jupyter": //jupyter
  5571. _formdiv = new U.UF.UI.form(
  5572. "jupyter",
  5573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5574. "id": "jupyter",
  5575. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5576. "onresize": function () { }
  5577. }, {
  5578. closecallback: function () { }
  5579. }, { "style": { "height": "36px" } }).form; //创建窗体
  5580. _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); } }
  5581. break;
  5582. case "number": //数字实验室
  5583. _formdiv = new U.UF.UI.form(
  5584. "数字实验室",
  5585. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5586. "id": "number",
  5587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5588. "onresize": function () { }
  5589. }, {
  5590. closecallback: function () { }
  5591. }, { "style": { "height": "36px" } }).form; //创建窗体
  5592. _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); } }
  5593. break;
  5594. case "studentCourse": //项目管理 学生
  5595. _formdiv = new U.UF.UI.form(
  5596. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5597. $$("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 }), {
  5598. "id": "studentCourse",
  5599. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5600. "onresize": function () { }
  5601. }, {
  5602. closecallback: function () { }
  5603. }, { "style": { "height": "36px" } }).form; //创建窗体
  5604. _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); } }
  5605. break;
  5606. case "studentCourseS": //项目管理 老师
  5607. _formdiv = new U.UF.UI.form(
  5608. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5609. $$("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 }), {
  5610. "id": "studentCourseS",
  5611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5612. "onresize": function () { }
  5613. }, {
  5614. closecallback: function () { }
  5615. }, { "style": { "height": "36px" } }).form; //创建窗体
  5616. _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); } }
  5617. break;
  5618. case "studentIndex": //项目中心
  5619. _formdiv = new U.UF.UI.form(
  5620. "项目中心",
  5621. $$("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 }), {
  5622. "id": "studentIndex",
  5623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5624. "onresize": function () { }
  5625. }, {
  5626. closecallback: function () { }
  5627. }, { "style": { "height": "36px" } }).form; //创建窗体
  5628. _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); } }
  5629. break;
  5630. case "CaseDesignS":
  5631. _formdiv = new U.UF.UI.form(
  5632. "项目进展",
  5633. $$("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 }), {
  5634. "id": "case",
  5635. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5636. "onresize": function () { }
  5637. }, {
  5638. closecallback: function () { }
  5639. }, { "style": { "height": "36px" } }).form; //创建窗体
  5640. _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); } }
  5641. break;
  5642. case "tcStudent": //腾讯学生管理
  5643. _formdiv = new U.UF.UI.form(
  5644. "学生管理",
  5645. $$("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 }), {
  5646. "id": "tcStudent",
  5647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5648. "onresize": function () { }
  5649. }, {
  5650. closecallback: function () { }
  5651. }, { "style": { "height": "36px" } }).form; //创建窗体
  5652. _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); } }
  5653. break;
  5654. case "tcSchool": //腾讯学校管理
  5655. _formdiv = new U.UF.UI.form(
  5656. "学校管理",
  5657. $$("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 }), {
  5658. "id": "tcSchool",
  5659. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5660. "onresize": function () { }
  5661. }, {
  5662. closecallback: function () { }
  5663. }, { "style": { "height": "36px" } }).form; //创建窗体
  5664. _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); } }
  5665. break;
  5666. case "tcTeacher": //腾讯学校管理
  5667. _formdiv = new U.UF.UI.form(
  5668. "教师管理",
  5669. $$("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 }), {
  5670. "id": "tcTeacher",
  5671. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5672. "onresize": function () { }
  5673. }, {
  5674. closecallback: function () { }
  5675. }, { "style": { "height": "36px" } }).form; //创建窗体
  5676. _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); } }
  5677. break;
  5678. case "tcData": //腾讯我的资料
  5679. _formdiv = new U.UF.UI.form(
  5680. "我的资料",
  5681. $$("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 }), {
  5682. "id": "tcData",
  5683. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5684. "onresize": function () { }
  5685. }, {
  5686. closecallback: function () { }
  5687. }, { "style": { "height": "36px" } }).form; //创建窗体
  5688. _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); } }
  5689. break;
  5690. case "tcNotice": //腾讯消息通知
  5691. _formdiv = new U.UF.UI.form(
  5692. "消息通知",
  5693. $$("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 }), {
  5694. "id": "tcNotice",
  5695. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5696. "onresize": function () { }
  5697. }, {
  5698. closecallback: function () { }
  5699. }, { "style": { "height": "36px" } }).form; //创建窗体
  5700. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5701. break;
  5702. case "myReport": //好友打开
  5703. _formdiv = new U.UF.UI.form(
  5704. "我的评价",
  5705. $$("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 }), {
  5706. "id": "myReport",
  5707. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5708. "onresize": function () { }
  5709. }, {
  5710. closecallback: function () { }
  5711. }, { "style": { "height": "36px" } }).form; //创建窗体
  5712. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5713. break;
  5714. case "learnAna": //好友打开
  5715. _formdiv = new U.UF.UI.form(
  5716. "学习分析",
  5717. $$("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 }), {
  5718. "id": "learnAna",
  5719. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5720. "onresize": function () { }
  5721. }, {
  5722. closecallback: function () { }
  5723. }, { "style": { "height": "36px" } }).form; //创建窗体
  5724. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5725. break;
  5726. case "AIChat": //AI共创
  5727. _formdiv = new U.UF.UI.form(
  5728. "AI共创",
  5729. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5730. "id": "AIChat",
  5731. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. istop: true,
  5735. closecallback: function () { $("#aichat_icon").remove(); },
  5736. narrowcallback: function () {
  5737. if (!$("#aichat_icon")[0]) {
  5738. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5739. }
  5740. },
  5741. }, { "style": { "height": "36px" } }).form; //创建窗体
  5742. _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); } }
  5743. break;
  5744. case "ainew": //AI共创
  5745. _formdiv = new U.UF.UI.form(
  5746. "AI协同",
  5747. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5748. "id": "ainew",
  5749. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5750. "onresize": function () { }
  5751. }, {
  5752. closecallback: function () { }
  5753. }, { "style": { "height": "36px" } }).form; //创建窗体
  5754. _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); } }
  5755. break;
  5756. case "gpt4": //gpt4
  5757. _formdiv = new U.UF.UI.form(
  5758. "AI助手",
  5759. $$("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 }), {
  5760. "id": "gpt4",
  5761. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5762. "onresize": function () { }
  5763. }, {
  5764. closecallback: function () { }
  5765. }, { "style": { "height": "36px" } }).form; //创建窗体
  5766. _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); } }
  5767. break;
  5768. case "aigpt": //gpt4
  5769. _formdiv = new U.UF.UI.form(
  5770. "AI助手+",
  5771. $$("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 }), {
  5772. "id": "aigpt",
  5773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5774. "onresize": function () { }
  5775. }, {
  5776. closecallback: function () { }
  5777. }, { "style": { "height": "36px" } }).form; //创建窗体
  5778. _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); } }
  5779. break;
  5780. case "aiKnowledge": //aiKnowledge
  5781. _formdiv = new U.UF.UI.form(
  5782. "知识建构",
  5783. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5784. "id": "aiKnowledge",
  5785. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5786. "onresize": function () { }
  5787. }, {
  5788. closecallback: function () { }
  5789. }, { "style": { "height": "36px" } }).form; //创建窗体
  5790. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5791. break;
  5792. case "futureClass": //AI共创
  5793. _formdiv = new U.UF.UI.form(
  5794. "协同建构",
  5795. $$("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
  5796. "id": "synergyCourse",
  5797. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5798. "onresize": function () { }
  5799. }, {
  5800. closecallback: function () {
  5801. $("iframe", _formdiv)[0].contentWindow.loginout();
  5802. }
  5803. }, { "style": { "height": "36px" } }).form; //创建窗体
  5804. _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); } }
  5805. break;
  5806. case "aiagent": //ai agent
  5807. _formdiv = new U.UF.UI.form(
  5808. "AI Agent",
  5809. $$("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" }), {
  5810. "id": "AIAgent",
  5811. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5812. "onresize": function () { }
  5813. }, {
  5814. closecallback: function () { }
  5815. }, { "style": { "height": "36px" } }).form; //创建窗体
  5816. _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); } }
  5817. break;
  5818. case "dataBoard": //数据看板
  5819. _formdiv = new U.UF.UI.form(
  5820. "数据看板",
  5821. $$("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 }), {
  5822. "id": "dataBoard",
  5823. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5824. "onresize": function () { }
  5825. }, {
  5826. closecallback: function () { }
  5827. }, { "style": { "height": "36px" } }).form; //创建窗体
  5828. _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); } }
  5829. break;
  5830. case "dataBoardSies": //数据融合
  5831. _formdiv = new U.UF.UI.form(
  5832. "数据融合",
  5833. $$("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 }), {
  5834. "id": "dataBoardSies",
  5835. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5836. "onresize": function () { }
  5837. }, {
  5838. closecallback: function () { }
  5839. }, { "style": { "height": "36px" } }).form; //创建窗体
  5840. _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); } }
  5841. break;
  5842. case "dataBoardNew": //数据看板
  5843. _formdiv = new U.UF.UI.form(
  5844. "综合看板",
  5845. $$("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 }), {
  5846. "id": "dataBoardNew",
  5847. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5848. "onresize": function () { }
  5849. }, {
  5850. closecallback: function () { }
  5851. }, { "style": { "height": "36px" } }).form; //创建窗体
  5852. _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); } }
  5853. break;
  5854. case "dataBoardTest": //数据看板
  5855. _formdiv = new U.UF.UI.form(
  5856. "评测看板",
  5857. $$("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 }), {
  5858. "id": "dataBoardTest",
  5859. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5860. "onresize": function () { }
  5861. }, {
  5862. closecallback: function () { }
  5863. }, { "style": { "height": "36px" } }).form; //创建窗体
  5864. _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); } }
  5865. break;
  5866. case "AIAnalyse": //AI共创
  5867. _formdiv = new U.UF.UI.form(
  5868. "AI分析",
  5869. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5870. "id": "AIAnalyse",
  5871. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5872. "onresize": function () { }
  5873. }, {
  5874. closecallback: function () { }
  5875. }, { "style": { "height": "36px" } }).form; //创建窗体
  5876. _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); } }
  5877. break;
  5878. case "studioCourse": //AI共创
  5879. _formdiv = new U.UF.UI.form(
  5880. "工作管理",
  5881. $$("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 }), {
  5882. "id": "studioCourse",
  5883. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5884. "onresize": function () { }
  5885. }, {
  5886. closecallback: function () { }
  5887. }, { "style": { "height": "36px" } }).form; //创建窗体
  5888. _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); } }
  5889. break;
  5890. case "studioIndex": //AI共创
  5891. _formdiv = new U.UF.UI.form(
  5892. "工作中心",
  5893. $$("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 }), {
  5894. "id": "studioIndex",
  5895. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5896. "onresize": function () { }
  5897. }, {
  5898. closecallback: function () { }
  5899. }, { "style": { "height": "36px" } }).form; //创建窗体
  5900. _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); } }
  5901. break;
  5902. case "source":
  5903. _formdiv = new U.UF.UI.form(
  5904. "教学资源",
  5905. $$("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 }), {
  5906. "id": "source",
  5907. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5908. "onresize": function () { }
  5909. }, {
  5910. closecallback: function () { }
  5911. }, { "style": { "height": "36px" } }).form; //创建窗体
  5912. _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); } }
  5913. break;
  5914. case "testTeacher":
  5915. _formdiv = new U.UF.UI.form(
  5916. "教师管理",
  5917. $$("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 }), {
  5918. "id": "testTeacher",
  5919. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5920. "onresize": function () { }
  5921. }, {
  5922. closecallback: function () { }
  5923. }, { "style": { "height": "36px" } }).form; //创建窗体
  5924. _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); } }
  5925. break;
  5926. case "testStudent":
  5927. _formdiv = new U.UF.UI.form(
  5928. "教师中心",
  5929. $$("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 }), {
  5930. "id": "testStudent",
  5931. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5932. "onresize": function () { }
  5933. }, {
  5934. closecallback: function () { }
  5935. }, { "style": { "height": "36px" } }).form; //创建窗体
  5936. _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); } }
  5937. break;
  5938. case "testTeacherSies":
  5939. _formdiv = new U.UF.UI.form(
  5940. "教师管理",
  5941. $$("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 }), {
  5942. "id": "testTeacherSies",
  5943. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5944. "onresize": function () { }
  5945. }, {
  5946. closecallback: function () { }
  5947. }, { "style": { "height": "36px" } }).form; //创建窗体
  5948. _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); } }
  5949. break;
  5950. case "testStudentSies":
  5951. _formdiv = new U.UF.UI.form(
  5952. "教师中心",
  5953. $$("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 }), {
  5954. "id": "testStudentSies",
  5955. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5956. "onresize": function () { }
  5957. }, {
  5958. closecallback: function () { }
  5959. }, { "style": { "height": "36px" } }).form; //创建窗体
  5960. _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); } }
  5961. break;
  5962. case "ytpbl": //消息通知
  5963. _formdiv = new U.UF.UI.form(
  5964. "案例征集",
  5965. $$("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 }), {
  5966. "id": "ytpbl",
  5967. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5968. "onresize": function () { }
  5969. }, {
  5970. closecallback: function () { }
  5971. }, { "style": { "height": "36px" } }).form; //创建窗体
  5972. _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); } }
  5973. // 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");
  5974. break;
  5975. case "aiCourseResource": //人工智能窗体
  5976. _formdiv = new U.UF.UI.form(
  5977. false,
  5978. $$("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 }), {
  5979. "id": "aiCourseResource",
  5980. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5981. "onresize": function () { },
  5982. "isdrag": false,
  5983. }, {
  5984. closecallback: function () { }
  5985. }, { "style": { "height": "36px" } }).form; //创建窗体
  5986. _taskbar = ''
  5987. break;
  5988. case "szdjgCocooroboX": //图形化编程
  5989. _formdiv = new U.UF.UI.form(
  5990. "图形化编程",
  5991. $$("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" }), {
  5992. "id": "szdjgCocooroboX",
  5993. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, { "style": { "height": "36px" } }).form; //创建窗体
  5998. _taskbar = ''
  5999. break;
  6000. case "szdjgPython": //python编程
  6001. _formdiv = new U.UF.UI.form(
  6002. "Python编程",
  6003. $$("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" }), {
  6004. "id": "szdjgPython",
  6005. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6006. "onresize": function () { }
  6007. }, {
  6008. closecallback: function () { }
  6009. }, { "style": { "height": "36px" } }).form; //创建窗体
  6010. _taskbar = ''
  6011. break;
  6012. case "Record":
  6013. _formdiv = new U.UF.UI.form(
  6014. "观察记录",
  6015. $$("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 }), {
  6016. "id": "Record",
  6017. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6018. "onresize": function () { }
  6019. }, {
  6020. closecallback: function () { }
  6021. }, { "style": { "height": "36px" } }).form; //创建窗体
  6022. _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); } }
  6023. break;
  6024. case "aigptCourse":
  6025. _formdiv = new U.UF.UI.form(
  6026. "AI智能体",
  6027. $$("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' }), {
  6028. "id": "aigptCourse",
  6029. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6030. "onresize": function () { }
  6031. }, {
  6032. closecallback: function () { }
  6033. }, { "style": { "height": "36px" } }).form; //创建窗体
  6034. _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); } }
  6035. break;
  6036. case "classroomObservation":
  6037. _formdiv = new U.UF.UI.form(
  6038. "课堂观察",
  6039. $$("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 }), {
  6040. "id": "classroomObservation",
  6041. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6042. "onresize": function () { }
  6043. }, {
  6044. closecallback: function () { }
  6045. }, { "style": { "height": "36px" } }).form; //创建窗体
  6046. _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); } }
  6047. break;
  6048. case "pblCourse":
  6049. _formdiv = new U.UF.UI.form(
  6050. "学生PBL",
  6051. $$("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 }), {
  6052. "id": "pblCourse",
  6053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6054. "onresize": function () { }
  6055. }, {
  6056. closecallback: function () { }
  6057. }, { "style": { "height": "36px" } }).form; //创建窗体
  6058. _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); } }
  6059. break;
  6060. }
  6061. //U.MD.D.I.openClick(str);
  6062. //如果有任务栏信息
  6063. if (_taskbar) {
  6064. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6065. }
  6066. }
  6067. // U.MD.D.I.openClick = function(str){
  6068. // var click = '';
  6069. // switch(str){
  6070. // case 'friend':
  6071. // click = '我的好友';
  6072. // break;
  6073. // case 'domain':
  6074. // click = '域名管理';
  6075. // break;
  6076. // case 'disk':
  6077. // click = '我的云盘';
  6078. // break;
  6079. // case 'word':
  6080. // click = 'Word';
  6081. // break;
  6082. // case 'excel':
  6083. // click = 'Execl';
  6084. // break;
  6085. // case 'txt':
  6086. // click = '文本文件';
  6087. // break;
  6088. // case 'lookupFriend':
  6089. // click = '查找好友';
  6090. // break;
  6091. // case 'ftp':
  6092. // click = 'FTP';
  6093. // break;
  6094. // case 'group':
  6095. // click = '群组';
  6096. // break;
  6097. // case 'set':
  6098. // click = '我的设置';
  6099. // break;
  6100. // case 'systemSet':
  6101. // click = '系统设置';
  6102. // break;
  6103. // case 'boomYun':
  6104. // click = '互联办公';
  6105. // break;
  6106. // case 'xz':
  6107. // click = '云端下载';
  6108. // break;
  6109. // case 'client':
  6110. // click = '有思浏览器';
  6111. // break;
  6112. // case 'backEndProgramming':
  6113. // click = '在线后台编程';
  6114. // break;
  6115. // case 'frontEndProgramming':
  6116. // click = '在线前端编程';
  6117. // break;
  6118. // default: break;
  6119. // }
  6120. // if(U.MD.D.I.Ip && click){
  6121. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6122. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6123. // })
  6124. // }
  6125. // }
  6126. /**
  6127. *函数作用:ajax简易函数,使用post格式
  6128. *@param url {data} 后台地址
  6129. *@param data {data} 参数json
  6130. *@param fn {data} 回调函数
  6131. *
  6132. */
  6133. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6134. // var xhr = new XMLHttpRequest();
  6135. // xhr.open("GET",url,true);
  6136. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6137. // xhr.onreadystatechange = function(){
  6138. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6139. // fn.call(this,xhr.responseText);
  6140. // }
  6141. // };
  6142. // xhr.send();
  6143. // }
  6144. /*判断是否是内网IP*/
  6145. // U.MD.D.I.isInnerIPFn = function(str){
  6146. // var curPageUrl = str;
  6147. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6148. // curPageUrl =curPageUrl.replace(reg1,'');
  6149. // // console.log('curPageUrl-1 '+curPageUrl);
  6150. // var reg2 = /\:+/g;//替换冒号为一点
  6151. // curPageUrl =curPageUrl.replace(reg2,'.');
  6152. // // console.log('curPageUrl-2 '+curPageUrl);
  6153. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6154. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6155. // if(curPageUrl[2] != '16'){
  6156. // return ipAddress;
  6157. // }else{
  6158. // return false;
  6159. // }
  6160. // }
  6161. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6162. // //compatibility for firefox and chrome
  6163. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6164. // var pc = new myPeerConnection({
  6165. // iceServers: []
  6166. // }),
  6167. // noop = function() {},
  6168. // localIPs = {},
  6169. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6170. // key;
  6171. // function iterateIP(ip) {
  6172. // if (!localIPs[ip]) onNewIP(ip);
  6173. // localIPs[ip] = true;
  6174. // }
  6175. // //create a bogus data channel
  6176. // pc.createDataChannel("");
  6177. // // create offer and set local description
  6178. // pc.createOffer().then(function(sdp) {
  6179. // sdp.sdp.split('\n').forEach(function(line) {
  6180. // if (line.indexOf('candidate') < 0) return;
  6181. // line.match(ipRegex).forEach(iterateIP);
  6182. // });
  6183. // pc.setLocalDescription(sdp, noop, noop);
  6184. // }).catch(function(reason) {
  6185. // // An error occurred, so handle the failure to connect
  6186. // });
  6187. // //sten for candidate events
  6188. // pc.onicecandidate = function(ice) {
  6189. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6190. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6191. // };
  6192. // }
  6193. // U.MD.D.I.getUserIpBool = function(callback){
  6194. // U.MD.D.I.getUserIP(function(ip){
  6195. // alert("Got IP! :" + ip);
  6196. // });
  6197. //}
  6198. //#endregion
  6199. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6200. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6201. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6202. _userinfo = US.userInfo, //登录用户信息
  6203. _userid = US.userInfo.userid //登录用户id
  6204. let _iframe;
  6205. let _cid = cid,
  6206. _stage = stage,
  6207. _task = task,
  6208. _tool = tool;
  6209. var _jie = $$("div", {
  6210. "style": {
  6211. "position": "absolute",
  6212. "bottom": "50px",
  6213. "right": "50px",
  6214. "zIndex": "9999",
  6215. "backgroundColor": "#2268bc",
  6216. "color": "#fff",
  6217. "padding": "12px 20px",
  6218. "cursor": "pointer",
  6219. "borderRadius": "4px",
  6220. },
  6221. "innerHTML": "提交作业"
  6222. })
  6223. let aTool = ''
  6224. let _loading = document.createElement('div')
  6225. _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;"
  6226. // _loading.id = "";
  6227. let _lchild = document.createElement('div')
  6228. let _limg = document.createElement('img')
  6229. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6230. _limg.style = "width: 26px;margin-right: 10px;"
  6231. _lchild.appendChild(_limg)
  6232. let _lspan = document.createElement('span')
  6233. _lspan.innerHTML = "上传中..."
  6234. _lchild.appendChild(_lspan)
  6235. _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%);"
  6236. _loading.appendChild(_lchild)
  6237. var _box = $$('div', {
  6238. "style": {
  6239. "position": "relative",
  6240. "width": "100%",
  6241. "height": "100%",
  6242. },
  6243. })
  6244. _box.appendChild(_loading)
  6245. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6246. switch (str) {
  6247. case "whiteboard":
  6248. aTool = 1;
  6249. _iframe = $$("iframe", {
  6250. "frameborder": "no",
  6251. "border": "0",
  6252. "scrolling ": "no",
  6253. "style": {
  6254. "cssText": "border:0;width:100%;height:100%"
  6255. },
  6256. "src": "https://beta.iwb.cocorobo.cn/"
  6257. })
  6258. _box.appendChild(_iframe);
  6259. _box.appendChild(_jie);
  6260. _formdiv = new U.UF.UI.form(
  6261. "电子白板",
  6262. _box, {
  6263. "id": "whiteboard" + cid + stage + task + tool,
  6264. "style": {
  6265. "width": "90%",
  6266. "height": "90%",
  6267. "overflow": 'hidden'
  6268. },
  6269. "onresize": function () { }
  6270. }, {
  6271. closecallback: function () { }
  6272. }, {
  6273. "style": {
  6274. "height": "36px"
  6275. }
  6276. }).form; //创建窗体
  6277. _taskbar = {
  6278. "id": str + _formdiv.id,
  6279. "style": {
  6280. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6281. },
  6282. "name": "电子白板",
  6283. "forms": _formdiv,
  6284. "click": function () {
  6285. U.MD.D.I.openApplication(str, obj, info);
  6286. }
  6287. }
  6288. break;
  6289. case "mind":
  6290. aTool = 3;
  6291. _iframe = $$("iframe", {
  6292. "frameborder": "no",
  6293. "border": "0",
  6294. "scrolling ": "no",
  6295. "style": {
  6296. "cssText": "border:0;width:100%;height:100%"
  6297. },
  6298. "src": "/kityminder-editor/dist/index.html"
  6299. })
  6300. _box.appendChild(_iframe);
  6301. _box.appendChild(_jie);
  6302. _formdiv = new U.UF.UI.form(
  6303. "思维导图",
  6304. _box, { //"/jsmind/example/demo.html"
  6305. "id": "mind" + cid + stage + task + tool,
  6306. "style": {
  6307. "width": "90%",
  6308. "height": "90%",
  6309. "overflow": 'hidden'
  6310. },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, {
  6315. "style": {
  6316. "height": "36px"
  6317. }
  6318. }).form; //创建窗体
  6319. _taskbar = {
  6320. "id": str + _formdiv.id,
  6321. "style": {
  6322. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6323. },
  6324. "name": "思维导图",
  6325. "forms": _formdiv,
  6326. "click": function () {
  6327. U.MD.D.I.openApplication(str, obj, info);
  6328. }
  6329. }
  6330. break;
  6331. case "MindMap":
  6332. aTool = 3;
  6333. _iframe = $$("iframe", {
  6334. "frameborder": "no",
  6335. "border": "0",
  6336. "scrolling ": "no",
  6337. "style": {
  6338. "cssText": "border:0;width:100%;height:100%"
  6339. },
  6340. "src": "//cloud.cocorobo.cn/mind/"
  6341. })
  6342. _box.appendChild(_iframe);
  6343. _box.appendChild(_jie);
  6344. _formdiv = new U.UF.UI.form(
  6345. "思维导图",
  6346. _box, { //"/jsmind/example/demo.html"
  6347. "id": "mind" + cid + stage + task + tool,
  6348. "style": {
  6349. "width": "90%",
  6350. "height": "90%",
  6351. "overflow": 'hidden'
  6352. },
  6353. "onresize": function () { }
  6354. }, {
  6355. closecallback: function () { }
  6356. }, {
  6357. "style": {
  6358. "height": "36px"
  6359. }
  6360. }).form; //创建窗体
  6361. _taskbar = {
  6362. "id": str + _formdiv.id,
  6363. "style": {
  6364. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6365. },
  6366. "name": "思维导图",
  6367. "forms": _formdiv,
  6368. "click": function () {
  6369. U.MD.D.I.openApplication(str, obj, info);
  6370. }
  6371. }
  6372. break;
  6373. case "doc":
  6374. aTool = 6;
  6375. _iframe = $$("iframe", {
  6376. "frameborder": "no",
  6377. "border": "0",
  6378. "scrolling ": "no",
  6379. "style": {
  6380. "cssText": "border:0;width:100%;height:100%"
  6381. },
  6382. "src": "/Office/Word/WordEditArea.htm"
  6383. })
  6384. _box.appendChild(_iframe);
  6385. _box.appendChild(_jie);
  6386. _formdiv = new U.UF.UI.form(
  6387. "协同文档",
  6388. _box, {
  6389. "id": "doc" + cid + stage + task + tool,
  6390. "style": {
  6391. "width": "90%",
  6392. "height": "90%",
  6393. "overflow": 'hidden'
  6394. },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, {
  6399. "style": {
  6400. "height": "36px"
  6401. }
  6402. }).form; //创建窗体
  6403. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6404. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6405. })
  6406. _taskbar = {
  6407. "id": str + _formdiv.id,
  6408. "style": {
  6409. "backgroundImage": "url(/img/icon/doc.png)"
  6410. },
  6411. "name": "协同文档",
  6412. "forms": _formdiv,
  6413. "click": function () {
  6414. U.MD.D.I.openApplication(str, obj, info);
  6415. }
  6416. }
  6417. break;
  6418. case "mindNetwork": //好友打开
  6419. aTool = 7;
  6420. _iframe = $$("iframe", {
  6421. "webkitallowfullscreen": "",
  6422. "mozallowfullscreen": "",
  6423. "allowfullscreen": "",
  6424. "frameborder": "no",
  6425. "border": "0",
  6426. "scrolling ": "no",
  6427. "style": {
  6428. "cssText": "border:0; width:100%; height:100%;"
  6429. },
  6430. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6431. })
  6432. _box.appendChild(_iframe);
  6433. _box.appendChild(_jie);
  6434. _formdiv = new U.UF.UI.form(
  6435. "思维网格",
  6436. _box, {
  6437. "id": "mindNetwork" + cid + stage + task + tool,
  6438. "style": {
  6439. "width": "90%",
  6440. "height": "90%",
  6441. "overflow": 'hidden'
  6442. },
  6443. "onresize": function () { }
  6444. }, {
  6445. closecallback: function () { }
  6446. }, {
  6447. "style": {
  6448. "height": "36px"
  6449. }
  6450. }).form; //创建窗体
  6451. _taskbar = {
  6452. "id": str + _formdiv.id,
  6453. "style": {
  6454. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6455. },
  6456. "name": "思维网格",
  6457. "forms": _formdiv,
  6458. "click": function () {
  6459. U.MD.D.I.openApplication(str, obj, info);
  6460. }
  6461. }
  6462. break;
  6463. case "courseDesign":
  6464. _iframe = $$("iframe", {
  6465. "webkitallowfullscreen": "",
  6466. "mozallowfullscreen": "",
  6467. "allowfullscreen": "",
  6468. "frameborder": "no",
  6469. "border": "0",
  6470. "scrolling ": "no",
  6471. "style": {
  6472. "cssText": "border:0; width:100%; height:100%;"
  6473. },
  6474. "src": "/course-design-vue"
  6475. })
  6476. _box.appendChild(_iframe);
  6477. _box.appendChild(_jie);
  6478. _formdiv = new U.UF.UI.form(
  6479. "项目设计",
  6480. _box, {
  6481. "id": "courseDesign" + cid + stage + task + tool,
  6482. "style": {
  6483. "width": "90%",
  6484. "height": "90%",
  6485. "overflow": 'hidden'
  6486. },
  6487. "onresize": function () { }
  6488. }, {
  6489. closecallback: function () { }
  6490. }, {
  6491. "style": {
  6492. "height": "36px"
  6493. }
  6494. }).form; //创建窗体
  6495. _taskbar = {
  6496. "id": str + _formdiv.id,
  6497. "style": {
  6498. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6499. },
  6500. "name": "项目设计",
  6501. "forms": _formdiv,
  6502. "click": function () {
  6503. U.MD.D.I.openApplication(str, obj, info);
  6504. }
  6505. }
  6506. break;
  6507. }
  6508. const script1 = document.createElement("script");
  6509. script1.type = "text/javascript";
  6510. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6511. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6512. const script2 = document.createElement("script");
  6513. script2.type = "text/javascript";
  6514. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6515. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6516. const script3 = document.createElement("script");
  6517. script3.type = "text/javascript";
  6518. script3.charset = "UTF-8";
  6519. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6520. const script4 = document.createElement("script");
  6521. script4.type = "text/javascript";
  6522. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6523. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6524. if (_iframe) {
  6525. if (str == 'doc') {
  6526. _iframe = _formdiv.querySelector('iframe')
  6527. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6528. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6529. _iframe.contentWindow.document.body.appendChild(script1);
  6530. _iframe.contentWindow.document.body.appendChild(script2);
  6531. // _iframe.contentWindow.document.body.appendChild(script3);
  6532. _iframe.contentWindow.document.body.appendChild(script4);
  6533. })
  6534. if (onloadListener) {
  6535. _iframe.contentDocument.location.reload()
  6536. } else {
  6537. _iframe.contentDocument.location.reload()
  6538. }
  6539. } else if (str == 'courseDesign') {
  6540. U.UF.DL.iframeLoad(_iframe, function () {
  6541. // _iframe.contentWindow.U.MD.O.W.load();
  6542. // _iframe.contentWindow.document.body.appendChild(script1);
  6543. _iframe.contentWindow.document.body.appendChild(script2);
  6544. _iframe.contentWindow.document.body.appendChild(script4);
  6545. })
  6546. } else if (str == 'mind') {
  6547. _iframe = _formdiv.querySelector('iframe')
  6548. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6549. //
  6550. _iframe.contentWindow.document.body.appendChild(script1);
  6551. _iframe.contentWindow.document.body.appendChild(script2);
  6552. _iframe.contentWindow.document.body.appendChild(script4);
  6553. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6554. })
  6555. if (onloadListener) {
  6556. _iframe.contentDocument.location.reload()
  6557. } else {
  6558. _iframe.contentDocument.location.reload()
  6559. }
  6560. } else if (str == 'whiteboard') {
  6561. _iframe = _formdiv.querySelector('iframe')
  6562. let onloadListener = _iframe.onload = () => {
  6563. _iframe.contentWindow.document.body.appendChild(script1);
  6564. _iframe.contentWindow.document.body.appendChild(script2);
  6565. _iframe.contentWindow.document.body.appendChild(script4);
  6566. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6567. };
  6568. // if (onloadListener) {
  6569. // try {
  6570. // _iframe.src += "?cocorobo="+new Date().getTime()
  6571. // _iframe.contentWindow.document.location.reload()
  6572. // } catch (error) {
  6573. // }
  6574. // } else {
  6575. // _iframe.contentDocument.location.reload()
  6576. // }
  6577. } else {
  6578. _iframe.onload = () => {
  6579. _iframe.contentWindow.document.body.appendChild(script1);
  6580. _iframe.contentWindow.document.body.appendChild(script2);
  6581. // _iframe.contentWindow.document.body.appendChild(script3);
  6582. _iframe.contentWindow.document.body.appendChild(script4);
  6583. };
  6584. }
  6585. _jie.onclick = async () => {
  6586. let text = ''
  6587. if (aTool == 1) {
  6588. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6589. } else if (aTool == 6) {
  6590. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6591. } else if (aTool == 3) {
  6592. text = await U.MD.D.I.getEditorContent(_iframe);
  6593. }
  6594. _loading.style.display = 'flex'
  6595. console.log(_loading);
  6596. var _ajs = _iframe.contentWindow.document.createElement("script");
  6597. _ajs.type = "text/javascript";
  6598. _ajs.innerHTML =
  6599. // 'console.log(' + _loading + ');\n' +
  6600. 'var _js = document.createElement("script");\n' +
  6601. '_js.type="text/javascript";\n' +
  6602. '_js.charset="UTF-8";\n' +
  6603. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6604. "_js.onload = function(){\n" +
  6605. ' var a = document.getElementsByTagName("img")\n' +
  6606. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6607. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6608. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6609. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6610. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6611. "beforeUpload_shishi(file," +
  6612. "'" +
  6613. _userid +
  6614. "'" +
  6615. ", " +
  6616. "'" +
  6617. _cid +
  6618. "'" +
  6619. ", " +
  6620. "'" +
  6621. _stage +
  6622. "'" +
  6623. ", " +
  6624. "'" +
  6625. _task +
  6626. "'" +
  6627. ", " +
  6628. "'" +
  6629. _tool +
  6630. "'" +
  6631. ", " +
  6632. "'" +
  6633. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6634. "'" +
  6635. ", " +
  6636. "'" +
  6637. aTool +
  6638. "'" +
  6639. ", " +
  6640. "`" +
  6641. text +
  6642. "`" +
  6643. ")\n" +
  6644. " });\n" +
  6645. "}\n" +
  6646. "document.head.appendChild(_js);\n";
  6647. _iframe.contentWindow.document.head.appendChild(_ajs);
  6648. }
  6649. }
  6650. //U.MD.D.I.openClick(str);
  6651. //如果有任务栏信息
  6652. // if (_taskbar) {
  6653. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6654. // }
  6655. }
  6656. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6657. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6658. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6659. _userinfo = US.userInfo, //登录用户信息
  6660. _userid = US.userInfo.userid //登录用户id
  6661. let _iframe;
  6662. let _cid = cid,
  6663. _stage = stage,
  6664. _task = task,
  6665. _tool = tool;
  6666. var _jie = $$("div", {
  6667. "style": {
  6668. "position": "absolute",
  6669. "bottom": "50px",
  6670. "right": "50px",
  6671. "zIndex": "9999",
  6672. "backgroundColor": "#2268bc",
  6673. "color": "#fff",
  6674. "padding": "12px 20px",
  6675. "cursor": "pointer",
  6676. "borderRadius": "4px",
  6677. },
  6678. "innerHTML": "提交作业"
  6679. })
  6680. let aTool = ''
  6681. let _loading = document.createElement('div')
  6682. _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;"
  6683. // _loading.id = "";
  6684. let _lchild = document.createElement('div')
  6685. let _limg = document.createElement('img')
  6686. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6687. _limg.style = "width: 26px;margin-right: 10px;"
  6688. _lchild.appendChild(_limg)
  6689. let _lspan = document.createElement('span')
  6690. _lspan.innerHTML = "上传中..."
  6691. _lchild.appendChild(_lspan)
  6692. _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%);"
  6693. _loading.appendChild(_lchild)
  6694. let _box = $$('div', {
  6695. "style": {
  6696. "position": "relative",
  6697. "width": "100%",
  6698. "height": "100%",
  6699. },
  6700. })
  6701. _box.appendChild(_loading)
  6702. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6703. switch (str) {
  6704. case "whiteboard":
  6705. aTool = 1;
  6706. _iframe = $$("iframe", {
  6707. "frameborder": "no",
  6708. "border": "0",
  6709. "scrolling ": "no",
  6710. "style": {
  6711. "cssText": "border:0;width:100%;height:100%"
  6712. },
  6713. "src": "https://beta.iwb.cocorobo.cn/"
  6714. })
  6715. _box.appendChild(_iframe);
  6716. _box.appendChild(_jie);
  6717. _formdiv = new U.UF.UI.form(
  6718. "电子白板",
  6719. _box, {
  6720. "id": "whiteboard" + cid + stage + task + tool,
  6721. "style": {
  6722. "width": "90%",
  6723. "height": "90%",
  6724. "overflow": 'hidden'
  6725. },
  6726. "onresize": function () { }
  6727. }, {
  6728. closecallback: function () { }
  6729. }, {
  6730. "style": {
  6731. "height": "36px"
  6732. }
  6733. }).form; //创建窗体
  6734. _taskbar = {
  6735. "id": str + _formdiv.id,
  6736. "style": {
  6737. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6738. },
  6739. "name": "电子白板",
  6740. "forms": _formdiv,
  6741. "click": function () {
  6742. U.MD.D.I.openApplication(str, obj, info);
  6743. }
  6744. }
  6745. break;
  6746. case "mind":
  6747. aTool = 3;
  6748. _iframe = $$("iframe", {
  6749. "frameborder": "no",
  6750. "border": "0",
  6751. "scrolling ": "no",
  6752. "style": {
  6753. "cssText": "border:0;width:100%;height:100%"
  6754. },
  6755. "src": "/kityminder-editor/dist/index.html"
  6756. })
  6757. _box.appendChild(_iframe);
  6758. _box.appendChild(_jie);
  6759. _formdiv = new U.UF.UI.form(
  6760. "思维导图",
  6761. _box, { //"/jsmind/example/demo.html"
  6762. "id": "mind" + cid + stage + task + tool,
  6763. "style": {
  6764. "width": "90%",
  6765. "height": "90%",
  6766. "overflow": 'hidden'
  6767. },
  6768. "onresize": function () { }
  6769. }, {
  6770. closecallback: function () { }
  6771. }, {
  6772. "style": {
  6773. "height": "36px"
  6774. }
  6775. }).form; //创建窗体
  6776. _taskbar = {
  6777. "id": str + _formdiv.id,
  6778. "style": {
  6779. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6780. },
  6781. "name": "思维导图",
  6782. "forms": _formdiv,
  6783. "click": function () {
  6784. U.MD.D.I.openApplication(str, obj, info);
  6785. }
  6786. }
  6787. break;
  6788. case "MindMap":
  6789. aTool = 3;
  6790. _iframe = $$("iframe", {
  6791. "frameborder": "no",
  6792. "border": "0",
  6793. "scrolling ": "no",
  6794. "style": {
  6795. "cssText": "border:0;width:100%;height:100%"
  6796. },
  6797. "src": "//cloud.cocorobo.cn/mind/"
  6798. })
  6799. _box.appendChild(_iframe);
  6800. _box.appendChild(_jie);
  6801. _formdiv = new U.UF.UI.form(
  6802. "思维导图",
  6803. _box, { //"/jsmind/example/demo.html"
  6804. "id": "mind" + cid + stage + task + tool,
  6805. "style": {
  6806. "width": "90%",
  6807. "height": "90%",
  6808. "overflow": 'hidden'
  6809. },
  6810. "onresize": function () { }
  6811. }, {
  6812. closecallback: function () { }
  6813. }, {
  6814. "style": {
  6815. "height": "36px"
  6816. }
  6817. }).form; //创建窗体
  6818. _taskbar = {
  6819. "id": str + _formdiv.id,
  6820. "style": {
  6821. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6822. },
  6823. "name": "思维导图",
  6824. "forms": _formdiv,
  6825. "click": function () {
  6826. U.MD.D.I.openApplication(str, obj, info);
  6827. }
  6828. }
  6829. break;
  6830. case "doc":
  6831. aTool = 6;
  6832. _iframe = $$("iframe", {
  6833. "frameborder": "no",
  6834. "border": "0",
  6835. "scrolling ": "no",
  6836. "style": {
  6837. "cssText": "border:0;width:100%;height:100%"
  6838. },
  6839. "src": "/Office/Word/WordEditArea.htm"
  6840. })
  6841. _box.appendChild(_iframe);
  6842. _box.appendChild(_jie);
  6843. _formdiv = new U.UF.UI.form(
  6844. "协同文档",
  6845. _box, {
  6846. "id": "doc" + cid + stage + task + tool,
  6847. "style": {
  6848. "width": "90%",
  6849. "height": "90%",
  6850. "overflow": 'hidden'
  6851. },
  6852. "onresize": function () { }
  6853. }, {
  6854. closecallback: function () { }
  6855. }, {
  6856. "style": {
  6857. "height": "36px"
  6858. }
  6859. }).form; //创建窗体
  6860. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6861. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6862. })
  6863. _taskbar = {
  6864. "id": str + _formdiv.id,
  6865. "style": {
  6866. "backgroundImage": "url(/img/icon/doc.png)"
  6867. },
  6868. "name": "协同文档",
  6869. "forms": _formdiv,
  6870. "click": function () {
  6871. U.MD.D.I.openApplication(str, obj, info);
  6872. }
  6873. }
  6874. break;
  6875. case "mindNetwork": //好友打开
  6876. aTool = 7;
  6877. _iframe = $$("iframe", {
  6878. "webkitallowfullscreen": "",
  6879. "mozallowfullscreen": "",
  6880. "allowfullscreen": "",
  6881. "frameborder": "no",
  6882. "border": "0",
  6883. "scrolling ": "no",
  6884. "style": {
  6885. "cssText": "border:0; width:100%; height:100%;"
  6886. },
  6887. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6888. })
  6889. _box.appendChild(_iframe);
  6890. _box.appendChild(_jie);
  6891. _formdiv = new U.UF.UI.form(
  6892. "思维网格",
  6893. _box, {
  6894. "id": "mindNetwork" + cid + stage + task + tool,
  6895. "style": {
  6896. "width": "90%",
  6897. "height": "90%",
  6898. "overflow": 'hidden'
  6899. },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, {
  6904. "style": {
  6905. "height": "36px"
  6906. }
  6907. }).form; //创建窗体
  6908. _taskbar = {
  6909. "id": str + _formdiv.id,
  6910. "style": {
  6911. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6912. },
  6913. "name": "思维网格",
  6914. "forms": _formdiv,
  6915. "click": function () {
  6916. U.MD.D.I.openApplication(str, obj, info);
  6917. }
  6918. }
  6919. break;
  6920. case "courseDesign":
  6921. _iframe = $$("iframe", {
  6922. "webkitallowfullscreen": "",
  6923. "mozallowfullscreen": "",
  6924. "allowfullscreen": "",
  6925. "frameborder": "no",
  6926. "border": "0",
  6927. "scrolling ": "no",
  6928. "style": {
  6929. "cssText": "border:0; width:100%; height:100%;"
  6930. },
  6931. "src": "/course-design-vue"
  6932. })
  6933. _box.appendChild(_iframe);
  6934. _box.appendChild(_jie);
  6935. _formdiv = new U.UF.UI.form(
  6936. "项目设计",
  6937. _box, {
  6938. "id": "courseDesign" + cid + stage + task + tool,
  6939. "style": {
  6940. "width": "90%",
  6941. "height": "90%",
  6942. "overflow": 'hidden'
  6943. },
  6944. "onresize": function () { }
  6945. }, {
  6946. closecallback: function () { }
  6947. }, {
  6948. "style": {
  6949. "height": "36px"
  6950. }
  6951. }).form; //创建窗体
  6952. _taskbar = {
  6953. "id": str + _formdiv.id,
  6954. "style": {
  6955. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6956. },
  6957. "name": "项目设计",
  6958. "forms": _formdiv,
  6959. "click": function () {
  6960. U.MD.D.I.openApplication(str, obj, info);
  6961. }
  6962. }
  6963. break;
  6964. }
  6965. const script1 = document.createElement("script");
  6966. script1.type = "text/javascript";
  6967. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6968. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6969. const script2 = document.createElement("script");
  6970. script2.type = "text/javascript";
  6971. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6972. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6973. const script3 = document.createElement("script");
  6974. script3.type = "text/javascript";
  6975. script3.charset = "UTF-8";
  6976. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6977. const script4 = document.createElement("script");
  6978. script4.type = "text/javascript";
  6979. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6980. script4.src = window.origin + "/js/Common/jietu2E.js";
  6981. if (_iframe) {
  6982. if (str == 'doc') {
  6983. _iframe = _formdiv.querySelector('iframe')
  6984. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6985. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6986. _iframe.contentWindow.document.body.appendChild(script1);
  6987. _iframe.contentWindow.document.body.appendChild(script2);
  6988. // _iframe.contentWindow.document.body.appendChild(script3);
  6989. _iframe.contentWindow.document.body.appendChild(script4);
  6990. })
  6991. if (onloadListener) {
  6992. _iframe.contentDocument.location.reload()
  6993. } else {
  6994. _iframe.contentDocument.location.reload()
  6995. }
  6996. } else if (str == 'courseDesign') {
  6997. U.UF.DL.iframeLoad(_iframe, function () {
  6998. // _iframe.contentWindow.U.MD.O.W.load();
  6999. // _iframe.contentWindow.document.body.appendChild(script1);
  7000. _iframe.contentWindow.document.body.appendChild(script2);
  7001. _iframe.contentWindow.document.body.appendChild(script4);
  7002. })
  7003. } else if (str == 'mind') {
  7004. _iframe = _formdiv.querySelector('iframe')
  7005. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7006. //
  7007. _iframe.contentWindow.document.body.appendChild(script1);
  7008. _iframe.contentWindow.document.body.appendChild(script2);
  7009. _iframe.contentWindow.document.body.appendChild(script4);
  7010. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7011. })
  7012. if (onloadListener) {
  7013. _iframe.contentDocument.location.reload()
  7014. } else {
  7015. _iframe.contentDocument.location.reload()
  7016. }
  7017. } else if (str == 'whiteboard') {
  7018. _iframe = _formdiv.querySelector('iframe')
  7019. let onloadListener = _iframe.onload = () => {
  7020. _iframe.contentWindow.document.body.appendChild(script1);
  7021. _iframe.contentWindow.document.body.appendChild(script2);
  7022. _iframe.contentWindow.document.body.appendChild(script4);
  7023. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7024. };
  7025. // if (onloadListener) {
  7026. // try {
  7027. // _iframe.src += "?cocorobo="+new Date().getTime()
  7028. // _iframe.contentWindow.document.location.reload()
  7029. // } catch (error) {
  7030. // }
  7031. // } else {
  7032. // _iframe.contentDocument.location.reload()
  7033. // }
  7034. } else {
  7035. _iframe.onload = () => {
  7036. _iframe.contentWindow.document.body.appendChild(script1);
  7037. _iframe.contentWindow.document.body.appendChild(script2);
  7038. // _iframe.contentWindow.document.body.appendChild(script3);
  7039. _iframe.contentWindow.document.body.appendChild(script4);
  7040. };
  7041. }
  7042. _jie.onclick = async () => {
  7043. let text = ''
  7044. if (aTool == 1) {
  7045. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7046. } else if (aTool == 6) {
  7047. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7048. } else if (aTool == 3) {
  7049. text = await U.MD.D.I.getEditorContent(_iframe);
  7050. }
  7051. _loading.style.display = 'flex'
  7052. console.log(_loading);
  7053. var _ajs = _iframe.contentWindow.document.createElement("script");
  7054. _ajs.type = "text/javascript";
  7055. _ajs.innerHTML =
  7056. // 'console.log(' + _loading + ');\n' +
  7057. 'var _js = document.createElement("script");\n' +
  7058. '_js.type="text/javascript";\n' +
  7059. '_js.charset="UTF-8";\n' +
  7060. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7061. "_js.onload = function(){\n" +
  7062. ' var a = document.getElementsByTagName("img")\n' +
  7063. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7064. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7065. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7066. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7067. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7068. "beforeUpload_shishi(file," +
  7069. "'" +
  7070. _userid +
  7071. "'" +
  7072. ", " +
  7073. "'" +
  7074. _cid +
  7075. "'" +
  7076. ", " +
  7077. "'" +
  7078. _stage +
  7079. "'" +
  7080. ", " +
  7081. "'" +
  7082. _task +
  7083. "'" +
  7084. ", " +
  7085. "'" +
  7086. _tool +
  7087. "'" +
  7088. ", " +
  7089. "'" +
  7090. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7091. "'" +
  7092. ", " +
  7093. "'" +
  7094. aTool +
  7095. "'" +
  7096. ", " +
  7097. "`" +
  7098. text +
  7099. "`" +
  7100. ")\n" +
  7101. " });\n" +
  7102. "}\n" +
  7103. "document.head.appendChild(_js);\n";
  7104. _iframe.contentWindow.document.head.appendChild(_ajs);
  7105. }
  7106. }
  7107. //U.MD.D.I.openClick(str);
  7108. //如果有任务栏信息
  7109. // if (_taskbar) {
  7110. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7111. // }
  7112. }
  7113. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7114. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7115. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7116. _userid = student.userid, //登录用户id
  7117. _username = student.student //用户名字
  7118. let _iframe;
  7119. let _cid = cid,
  7120. _stage = stage,
  7121. _task = task,
  7122. _tool = tool;
  7123. var _jie = $$("div", {
  7124. "style": {
  7125. "position": "absolute",
  7126. "bottom": "50px",
  7127. "right": "50px",
  7128. "zIndex": "9999",
  7129. "backgroundColor": "#2268bc",
  7130. "color": "#fff",
  7131. "padding": "12px 20px",
  7132. "cursor": "pointer",
  7133. "borderRadius": "4px",
  7134. },
  7135. "innerHTML": "提交作业"
  7136. })
  7137. let aTool = ''
  7138. let _loading = document.createElement('div')
  7139. _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;"
  7140. // _loading.id = "";
  7141. let _lchild = document.createElement('div')
  7142. let _limg = document.createElement('img')
  7143. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7144. _limg.style = "width: 26px;margin-right: 10px;"
  7145. _lchild.appendChild(_limg)
  7146. let _lspan = document.createElement('span')
  7147. _lspan.innerHTML = "上传中..."
  7148. _lchild.appendChild(_lspan)
  7149. _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%);"
  7150. _loading.appendChild(_lchild)
  7151. var _box = $$('div', {
  7152. "style": {
  7153. "position": "relative",
  7154. "width": "100%",
  7155. "height": "100%",
  7156. },
  7157. })
  7158. _box.appendChild(_loading)
  7159. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7160. switch (str) {
  7161. case "whiteboard":
  7162. aTool = 1;
  7163. _iframe = $$("iframe", {
  7164. "frameborder": "no",
  7165. "border": "0",
  7166. "scrolling ": "no",
  7167. "style": {
  7168. "cssText": "border:0;width:100%;height:100%"
  7169. },
  7170. "src": "https://beta.iwb.cocorobo.cn/"
  7171. })
  7172. _box.appendChild(_iframe);
  7173. _box.appendChild(_jie);
  7174. _formdiv = new U.UF.UI.form(
  7175. "电子白板-" + _username,
  7176. _box, {
  7177. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7178. "style": {
  7179. "width": "90%",
  7180. "height": "90%",
  7181. "overflow": 'hidden'
  7182. },
  7183. "onresize": function () { }
  7184. }, {
  7185. closecallback: function () { }
  7186. }, {
  7187. "style": {
  7188. "height": "36px"
  7189. }
  7190. }).form; //创建窗体
  7191. _taskbar = {
  7192. "id": str + _formdiv.id,
  7193. "style": {
  7194. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7195. },
  7196. "name": "电子白板",
  7197. "forms": _formdiv,
  7198. "click": function () {
  7199. U.MD.D.I.openApplication(str, obj, info);
  7200. }
  7201. }
  7202. break;
  7203. case "mind":
  7204. aTool = 3;
  7205. _iframe = $$("iframe", {
  7206. "frameborder": "no",
  7207. "border": "0",
  7208. "scrolling ": "no",
  7209. "style": {
  7210. "cssText": "border:0;width:100%;height:100%"
  7211. },
  7212. "src": "/kityminder-editor/dist/index.html"
  7213. })
  7214. _box.appendChild(_iframe);
  7215. _box.appendChild(_jie);
  7216. _formdiv = new U.UF.UI.form(
  7217. "思维导图-" + _username,
  7218. _box, { //"/jsmind/example/demo.html"
  7219. "id": "mind" + cid + stage + task + tool + _userid,
  7220. "style": {
  7221. "width": "90%",
  7222. "height": "90%",
  7223. "overflow": 'hidden'
  7224. },
  7225. "onresize": function () { }
  7226. }, {
  7227. closecallback: function () { }
  7228. }, {
  7229. "style": {
  7230. "height": "36px"
  7231. }
  7232. }).form; //创建窗体
  7233. _taskbar = {
  7234. "id": str + _formdiv.id,
  7235. "style": {
  7236. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7237. },
  7238. "name": "思维导图",
  7239. "forms": _formdiv,
  7240. "click": function () {
  7241. U.MD.D.I.openApplication(str, obj, info);
  7242. }
  7243. }
  7244. break;
  7245. case "MindMap":
  7246. aTool = 3;
  7247. _iframe = $$("iframe", {
  7248. "frameborder": "no",
  7249. "border": "0",
  7250. "scrolling ": "no",
  7251. "style": {
  7252. "cssText": "border:0;width:100%;height:100%"
  7253. },
  7254. "src": "//cloud.cocorobo.cn/mind/"
  7255. })
  7256. _box.appendChild(_iframe);
  7257. _box.appendChild(_jie);
  7258. _formdiv = new U.UF.UI.form(
  7259. "思维导图-" + _username,
  7260. _box, { //"/jsmind/example/demo.html"
  7261. "id": "mind" + cid + stage + task + tool + _userid,
  7262. "style": {
  7263. "width": "90%",
  7264. "height": "90%",
  7265. "overflow": 'hidden'
  7266. },
  7267. "onresize": function () { }
  7268. }, {
  7269. closecallback: function () { }
  7270. }, {
  7271. "style": {
  7272. "height": "36px"
  7273. }
  7274. }).form; //创建窗体
  7275. _taskbar = {
  7276. "id": str + _formdiv.id,
  7277. "style": {
  7278. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7279. },
  7280. "name": "思维导图",
  7281. "forms": _formdiv,
  7282. "click": function () {
  7283. U.MD.D.I.openApplication(str, obj, info);
  7284. }
  7285. }
  7286. break;
  7287. case "doc":
  7288. aTool = 6;
  7289. _iframe = $$("iframe", {
  7290. "frameborder": "no",
  7291. "border": "0",
  7292. "scrolling ": "no",
  7293. "style": {
  7294. "cssText": "border:0;width:100%;height:100%"
  7295. },
  7296. "src": "/Office/Word/WordEditArea.htm"
  7297. })
  7298. _box.appendChild(_iframe);
  7299. _box.appendChild(_jie);
  7300. _formdiv = new U.UF.UI.form(
  7301. "协同文档-" + _username,
  7302. _box, {
  7303. "id": "doc" + cid + stage + task + tool + _userid,
  7304. "style": {
  7305. "width": "90%",
  7306. "height": "90%",
  7307. "overflow": 'hidden'
  7308. },
  7309. "onresize": function () { }
  7310. }, {
  7311. closecallback: function () { }
  7312. }, {
  7313. "style": {
  7314. "height": "36px"
  7315. }
  7316. }).form; //创建窗体
  7317. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7318. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7319. })
  7320. _taskbar = {
  7321. "id": str + _formdiv.id,
  7322. "style": {
  7323. "backgroundImage": "url(/img/icon/doc.png)"
  7324. },
  7325. "name": "协同文档",
  7326. "forms": _formdiv,
  7327. "click": function () {
  7328. U.MD.D.I.openApplication(str, obj, info);
  7329. }
  7330. }
  7331. break;
  7332. case "mindNetwork": //好友打开
  7333. aTool = 7;
  7334. _iframe = $$("iframe", {
  7335. "webkitallowfullscreen": "",
  7336. "mozallowfullscreen": "",
  7337. "allowfullscreen": "",
  7338. "frameborder": "no",
  7339. "border": "0",
  7340. "scrolling ": "no",
  7341. "style": {
  7342. "cssText": "border:0; width:100%; height:100%;"
  7343. },
  7344. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7345. })
  7346. _box.appendChild(_iframe);
  7347. _box.appendChild(_jie);
  7348. _formdiv = new U.UF.UI.form(
  7349. "思维网格-" + _username,
  7350. _box, {
  7351. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7352. "style": {
  7353. "width": "90%",
  7354. "height": "90%",
  7355. "overflow": 'hidden'
  7356. },
  7357. "onresize": function () { }
  7358. }, {
  7359. closecallback: function () { }
  7360. }, {
  7361. "style": {
  7362. "height": "36px"
  7363. }
  7364. }).form; //创建窗体
  7365. _taskbar = {
  7366. "id": str + _formdiv.id,
  7367. "style": {
  7368. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7369. },
  7370. "name": "思维网格",
  7371. "forms": _formdiv,
  7372. "click": function () {
  7373. U.MD.D.I.openApplication(str, obj, info);
  7374. }
  7375. }
  7376. break;
  7377. case "courseDesign":
  7378. _iframe = $$("iframe", {
  7379. "webkitallowfullscreen": "",
  7380. "mozallowfullscreen": "",
  7381. "allowfullscreen": "",
  7382. "frameborder": "no",
  7383. "border": "0",
  7384. "scrolling ": "no",
  7385. "style": {
  7386. "cssText": "border:0; width:100%; height:100%;"
  7387. },
  7388. "src": "/course-design-vue"
  7389. })
  7390. _box.appendChild(_iframe);
  7391. _box.appendChild(_jie);
  7392. _formdiv = new U.UF.UI.form(
  7393. "项目设计-" + _username,
  7394. _box, {
  7395. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7396. "style": {
  7397. "width": "90%",
  7398. "height": "90%",
  7399. "overflow": 'hidden'
  7400. },
  7401. "onresize": function () { }
  7402. }, {
  7403. closecallback: function () { }
  7404. }, {
  7405. "style": {
  7406. "height": "36px"
  7407. }
  7408. }).form; //创建窗体
  7409. _taskbar = {
  7410. "id": str + _formdiv.id,
  7411. "style": {
  7412. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7413. },
  7414. "name": "项目设计",
  7415. "forms": _formdiv,
  7416. "click": function () {
  7417. U.MD.D.I.openApplication(str, obj, info);
  7418. }
  7419. }
  7420. break;
  7421. }
  7422. const script1 = document.createElement("script");
  7423. script1.type = "text/javascript";
  7424. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7425. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7426. const script2 = document.createElement("script");
  7427. script2.type = "text/javascript";
  7428. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7429. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7430. const script3 = document.createElement("script");
  7431. script3.type = "text/javascript";
  7432. script3.charset = "UTF-8";
  7433. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7434. const script4 = document.createElement("script");
  7435. script4.type = "text/javascript";
  7436. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7437. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7438. if (_iframe) {
  7439. if (str == 'doc') {
  7440. _iframe = _formdiv.querySelector('iframe')
  7441. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7442. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7443. _iframe.contentWindow.document.body.appendChild(script1);
  7444. _iframe.contentWindow.document.body.appendChild(script2);
  7445. // _iframe.contentWindow.document.body.appendChild(script3);
  7446. _iframe.contentWindow.document.body.appendChild(script4);
  7447. })
  7448. if (onloadListener) {
  7449. _iframe.contentDocument.location.reload()
  7450. } else {
  7451. _iframe.contentDocument.location.reload()
  7452. }
  7453. } else if (str == 'courseDesign') {
  7454. U.UF.DL.iframeLoad(_iframe, function () {
  7455. // _iframe.contentWindow.U.MD.O.W.load();
  7456. // _iframe.contentWindow.document.body.appendChild(script1);
  7457. _iframe.contentWindow.document.body.appendChild(script2);
  7458. _iframe.contentWindow.document.body.appendChild(script4);
  7459. })
  7460. } else if (str == 'mind') {
  7461. _iframe = _formdiv.querySelector('iframe')
  7462. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7463. //
  7464. _iframe.contentWindow.document.body.appendChild(script1);
  7465. _iframe.contentWindow.document.body.appendChild(script2);
  7466. _iframe.contentWindow.document.body.appendChild(script4);
  7467. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7468. })
  7469. if (onloadListener) {
  7470. _iframe.contentDocument.location.reload()
  7471. } else {
  7472. _iframe.contentDocument.location.reload()
  7473. }
  7474. } else if (str == 'whiteboard') {
  7475. _iframe = _formdiv.querySelector('iframe')
  7476. let onloadListener = _iframe.onload = () => {
  7477. _iframe.contentWindow.document.body.appendChild(script1);
  7478. _iframe.contentWindow.document.body.appendChild(script2);
  7479. _iframe.contentWindow.document.body.appendChild(script4);
  7480. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7481. };
  7482. // if (onloadListener) {
  7483. // try {
  7484. // _iframe.src += "?cocorobo="+new Date().getTime()
  7485. // _iframe.contentWindow.document.location.reload()
  7486. // } catch (error) {
  7487. // }
  7488. // } else {
  7489. // _iframe.contentDocument.location.reload()
  7490. // }
  7491. } else {
  7492. _iframe.onload = () => {
  7493. _iframe.contentWindow.document.body.appendChild(script1);
  7494. _iframe.contentWindow.document.body.appendChild(script2);
  7495. // _iframe.contentWindow.document.body.appendChild(script3);
  7496. _iframe.contentWindow.document.body.appendChild(script4);
  7497. };
  7498. }
  7499. _jie.onclick = async () => {
  7500. let text = ''
  7501. if (aTool == 1) {
  7502. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7503. } else if (aTool == 6) {
  7504. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7505. } else if (aTool == 3) {
  7506. text = await U.MD.D.I.getEditorContent(_iframe);
  7507. }
  7508. _loading.style.display = 'flex'
  7509. console.log(_loading);
  7510. var _ajs = _iframe.contentWindow.document.createElement("script");
  7511. _ajs.type = "text/javascript";
  7512. _ajs.innerHTML =
  7513. // 'console.log(' + _loading + ');\n' +
  7514. 'var _js = document.createElement("script");\n' +
  7515. '_js.type="text/javascript";\n' +
  7516. '_js.charset="UTF-8";\n' +
  7517. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7518. "_js.onload = function(){\n" +
  7519. ' var a = document.getElementsByTagName("img")\n' +
  7520. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7521. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7522. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7523. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7524. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7525. "beforeUpload_shishi(file," +
  7526. "'" +
  7527. _userid +
  7528. "'" +
  7529. ", " +
  7530. "'" +
  7531. _cid +
  7532. "'" +
  7533. ", " +
  7534. "'" +
  7535. _stage +
  7536. "'" +
  7537. ", " +
  7538. "'" +
  7539. _task +
  7540. "'" +
  7541. ", " +
  7542. "'" +
  7543. _tool +
  7544. "'" +
  7545. ", " +
  7546. "'" +
  7547. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7548. "'" +
  7549. ", " +
  7550. "'" +
  7551. aTool +
  7552. "'" +
  7553. ", " +
  7554. "`" +
  7555. text +
  7556. "`" +
  7557. ")\n" +
  7558. " });\n" +
  7559. "}\n" +
  7560. "document.head.appendChild(_js);\n";
  7561. _iframe.contentWindow.document.head.appendChild(_ajs);
  7562. }
  7563. }
  7564. }
  7565. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7566. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7567. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7568. _userid = student.userid, //登录用户id
  7569. _username = student.student //用户名字
  7570. let _iframe;
  7571. let _cid = cid,
  7572. _stage = stage,
  7573. _task = task,
  7574. _tool = tool;
  7575. var _jie = $$("div", {
  7576. "style": {
  7577. "position": "absolute",
  7578. "bottom": "50px",
  7579. "right": "50px",
  7580. "zIndex": "9999",
  7581. "backgroundColor": "#2268bc",
  7582. "color": "#fff",
  7583. "padding": "12px 20px",
  7584. "cursor": "pointer",
  7585. "borderRadius": "4px",
  7586. },
  7587. "innerHTML": "提交作业"
  7588. })
  7589. let aTool = ''
  7590. let _loading = document.createElement('div')
  7591. _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;"
  7592. // _loading.id = "";
  7593. let _lchild = document.createElement('div')
  7594. let _limg = document.createElement('img')
  7595. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7596. _limg.style = "width: 26px;margin-right: 10px;"
  7597. _lchild.appendChild(_limg)
  7598. let _lspan = document.createElement('span')
  7599. _lspan.innerHTML = "上传中..."
  7600. _lchild.appendChild(_lspan)
  7601. _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%);"
  7602. _loading.appendChild(_lchild)
  7603. var _box = $$('div', {
  7604. "style": {
  7605. "position": "relative",
  7606. "width": "100%",
  7607. "height": "100%",
  7608. },
  7609. })
  7610. _box.appendChild(_loading)
  7611. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7612. switch (str) {
  7613. case "whiteboard":
  7614. aTool = 1;
  7615. _iframe = $$("iframe", {
  7616. "frameborder": "no",
  7617. "border": "0",
  7618. "scrolling ": "no",
  7619. "style": {
  7620. "cssText": "border:0;width:100%;height:100%"
  7621. },
  7622. "src": "https://beta.iwb.cocorobo.cn/"
  7623. })
  7624. _box.appendChild(_iframe);
  7625. _box.appendChild(_jie);
  7626. _formdiv = new U.UF.UI.form(
  7627. "电子白板-" + _username,
  7628. _box, {
  7629. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7630. "style": {
  7631. "width": "90%",
  7632. "height": "90%",
  7633. "overflow": 'hidden'
  7634. },
  7635. "onresize": function () { }
  7636. }, {
  7637. closecallback: function () { }
  7638. }, {
  7639. "style": {
  7640. "height": "36px"
  7641. }
  7642. }).form; //创建窗体
  7643. _taskbar = {
  7644. "id": str + _formdiv.id,
  7645. "style": {
  7646. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7647. },
  7648. "name": "电子白板",
  7649. "forms": _formdiv,
  7650. "click": function () {
  7651. U.MD.D.I.openApplication(str, obj, info);
  7652. }
  7653. }
  7654. break;
  7655. case "mind":
  7656. aTool = 3;
  7657. _iframe = $$("iframe", {
  7658. "frameborder": "no",
  7659. "border": "0",
  7660. "scrolling ": "no",
  7661. "style": {
  7662. "cssText": "border:0;width:100%;height:100%"
  7663. },
  7664. "src": "/kityminder-editor/dist/index.html"
  7665. })
  7666. _box.appendChild(_iframe);
  7667. _box.appendChild(_jie);
  7668. _formdiv = new U.UF.UI.form(
  7669. "思维导图-" + _username,
  7670. _box, { //"/jsmind/example/demo.html"
  7671. "id": "mind" + cid + stage + task + tool + _userid,
  7672. "style": {
  7673. "width": "90%",
  7674. "height": "90%",
  7675. "overflow": 'hidden'
  7676. },
  7677. "onresize": function () { }
  7678. }, {
  7679. closecallback: function () { }
  7680. }, {
  7681. "style": {
  7682. "height": "36px"
  7683. }
  7684. }).form; //创建窗体
  7685. _taskbar = {
  7686. "id": str + _formdiv.id,
  7687. "style": {
  7688. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7689. },
  7690. "name": "思维导图",
  7691. "forms": _formdiv,
  7692. "click": function () {
  7693. U.MD.D.I.openApplication(str, obj, info);
  7694. }
  7695. }
  7696. break;
  7697. case "MindMap":
  7698. aTool = 3;
  7699. _iframe = $$("iframe", {
  7700. "frameborder": "no",
  7701. "border": "0",
  7702. "scrolling ": "no",
  7703. "style": {
  7704. "cssText": "border:0;width:100%;height:100%"
  7705. },
  7706. "src": "//cloud.cocorobo.cn/mind/"
  7707. })
  7708. _box.appendChild(_iframe);
  7709. _box.appendChild(_jie);
  7710. _formdiv = new U.UF.UI.form(
  7711. "思维导图-" + _username,
  7712. _box, { //"/jsmind/example/demo.html"
  7713. "id": "mind" + cid + stage + task + tool + _userid,
  7714. "style": {
  7715. "width": "90%",
  7716. "height": "90%",
  7717. "overflow": 'hidden'
  7718. },
  7719. "onresize": function () { }
  7720. }, {
  7721. closecallback: function () { }
  7722. }, {
  7723. "style": {
  7724. "height": "36px"
  7725. }
  7726. }).form; //创建窗体
  7727. _taskbar = {
  7728. "id": str + _formdiv.id,
  7729. "style": {
  7730. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7731. },
  7732. "name": "思维导图",
  7733. "forms": _formdiv,
  7734. "click": function () {
  7735. U.MD.D.I.openApplication(str, obj, info);
  7736. }
  7737. }
  7738. break;
  7739. case "doc":
  7740. aTool = 6;
  7741. _iframe = $$("iframe", {
  7742. "frameborder": "no",
  7743. "border": "0",
  7744. "scrolling ": "no",
  7745. "style": {
  7746. "cssText": "border:0;width:100%;height:100%"
  7747. },
  7748. "src": "/Office/Word/WordEditArea.htm"
  7749. })
  7750. _box.appendChild(_iframe);
  7751. _box.appendChild(_jie);
  7752. _formdiv = new U.UF.UI.form(
  7753. "协同文档-" + _username,
  7754. _box, {
  7755. "id": "doc" + cid + stage + task + tool + _userid,
  7756. "style": {
  7757. "width": "90%",
  7758. "height": "90%",
  7759. "overflow": 'hidden'
  7760. },
  7761. "onresize": function () { }
  7762. }, {
  7763. closecallback: function () { }
  7764. }, {
  7765. "style": {
  7766. "height": "36px"
  7767. }
  7768. }).form; //创建窗体
  7769. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7770. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7771. })
  7772. _taskbar = {
  7773. "id": str + _formdiv.id,
  7774. "style": {
  7775. "backgroundImage": "url(/img/icon/doc.png)"
  7776. },
  7777. "name": "协同文档",
  7778. "forms": _formdiv,
  7779. "click": function () {
  7780. U.MD.D.I.openApplication(str, obj, info);
  7781. }
  7782. }
  7783. break;
  7784. case "mindNetwork": //好友打开
  7785. aTool = 7;
  7786. _iframe = $$("iframe", {
  7787. "webkitallowfullscreen": "",
  7788. "mozallowfullscreen": "",
  7789. "allowfullscreen": "",
  7790. "frameborder": "no",
  7791. "border": "0",
  7792. "scrolling ": "no",
  7793. "style": {
  7794. "cssText": "border:0; width:100%; height:100%;"
  7795. },
  7796. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7797. })
  7798. _box.appendChild(_iframe);
  7799. _box.appendChild(_jie);
  7800. _formdiv = new U.UF.UI.form(
  7801. "思维网格-" + _username,
  7802. _box, {
  7803. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7804. "style": {
  7805. "width": "90%",
  7806. "height": "90%",
  7807. "overflow": 'hidden'
  7808. },
  7809. "onresize": function () { }
  7810. }, {
  7811. closecallback: function () { }
  7812. }, {
  7813. "style": {
  7814. "height": "36px"
  7815. }
  7816. }).form; //创建窗体
  7817. _taskbar = {
  7818. "id": str + _formdiv.id,
  7819. "style": {
  7820. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7821. },
  7822. "name": "思维网格",
  7823. "forms": _formdiv,
  7824. "click": function () {
  7825. U.MD.D.I.openApplication(str, obj, info);
  7826. }
  7827. }
  7828. break;
  7829. case "courseDesign":
  7830. _iframe = $$("iframe", {
  7831. "webkitallowfullscreen": "",
  7832. "mozallowfullscreen": "",
  7833. "allowfullscreen": "",
  7834. "frameborder": "no",
  7835. "border": "0",
  7836. "scrolling ": "no",
  7837. "style": {
  7838. "cssText": "border:0; width:100%; height:100%;"
  7839. },
  7840. "src": "/course-design-vue"
  7841. })
  7842. _box.appendChild(_iframe);
  7843. _box.appendChild(_jie);
  7844. _formdiv = new U.UF.UI.form(
  7845. "项目设计-" + _username,
  7846. _box, {
  7847. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7848. "style": {
  7849. "width": "90%",
  7850. "height": "90%",
  7851. "overflow": 'hidden'
  7852. },
  7853. "onresize": function () { }
  7854. }, {
  7855. closecallback: function () { }
  7856. }, {
  7857. "style": {
  7858. "height": "36px"
  7859. }
  7860. }).form; //创建窗体
  7861. _taskbar = {
  7862. "id": str + _formdiv.id,
  7863. "style": {
  7864. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7865. },
  7866. "name": "项目设计",
  7867. "forms": _formdiv,
  7868. "click": function () {
  7869. U.MD.D.I.openApplication(str, obj, info);
  7870. }
  7871. }
  7872. break;
  7873. }
  7874. const script1 = document.createElement("script");
  7875. script1.type = "text/javascript";
  7876. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7877. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7878. const script2 = document.createElement("script");
  7879. script2.type = "text/javascript";
  7880. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7881. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7882. const script3 = document.createElement("script");
  7883. script3.type = "text/javascript";
  7884. script3.charset = "UTF-8";
  7885. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7886. const script4 = document.createElement("script");
  7887. script4.type = "text/javascript";
  7888. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7889. script4.src = window.origin + "/js/Common/jietu2E.js";
  7890. if (_iframe) {
  7891. if (str == 'doc') {
  7892. _iframe = _formdiv.querySelector('iframe')
  7893. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7894. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7895. _iframe.contentWindow.document.body.appendChild(script1);
  7896. _iframe.contentWindow.document.body.appendChild(script2);
  7897. // _iframe.contentWindow.document.body.appendChild(script3);
  7898. _iframe.contentWindow.document.body.appendChild(script4);
  7899. })
  7900. if (onloadListener) {
  7901. _iframe.contentDocument.location.reload()
  7902. } else {
  7903. _iframe.contentDocument.location.reload()
  7904. }
  7905. } else if (str == 'courseDesign') {
  7906. U.UF.DL.iframeLoad(_iframe, function () {
  7907. // _iframe.contentWindow.U.MD.O.W.load();
  7908. // _iframe.contentWindow.document.body.appendChild(script1);
  7909. _iframe.contentWindow.document.body.appendChild(script2);
  7910. _iframe.contentWindow.document.body.appendChild(script4);
  7911. })
  7912. } else if (str == 'mind') {
  7913. _iframe = _formdiv.querySelector('iframe')
  7914. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7915. //
  7916. _iframe.contentWindow.document.body.appendChild(script1);
  7917. _iframe.contentWindow.document.body.appendChild(script2);
  7918. _iframe.contentWindow.document.body.appendChild(script4);
  7919. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7920. })
  7921. if (onloadListener) {
  7922. _iframe.contentDocument.location.reload()
  7923. } else {
  7924. _iframe.contentDocument.location.reload()
  7925. }
  7926. } else if (str == 'whiteboard') {
  7927. _iframe = _formdiv.querySelector('iframe')
  7928. let onloadListener = _iframe.onload = () => {
  7929. _iframe.contentWindow.document.body.appendChild(script1);
  7930. _iframe.contentWindow.document.body.appendChild(script2);
  7931. _iframe.contentWindow.document.body.appendChild(script4);
  7932. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7933. };
  7934. // if (onloadListener) {
  7935. // try {
  7936. // _iframe.src += "?cocorobo="+new Date().getTime()
  7937. // _iframe.contentWindow.document.location.reload()
  7938. // } catch (error) {
  7939. // }
  7940. // } else {
  7941. // _iframe.contentDocument.location.reload()
  7942. // }
  7943. } else {
  7944. _iframe.onload = () => {
  7945. _iframe.contentWindow.document.body.appendChild(script1);
  7946. _iframe.contentWindow.document.body.appendChild(script2);
  7947. // _iframe.contentWindow.document.body.appendChild(script3);
  7948. _iframe.contentWindow.document.body.appendChild(script4);
  7949. };
  7950. }
  7951. _jie.onclick = async () => {
  7952. let text = ''
  7953. if (aTool == 1) {
  7954. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7955. } else if (aTool == 6) {
  7956. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7957. } else if (aTool == 3) {
  7958. text = await U.MD.D.I.getEditorContent(_iframe);
  7959. }
  7960. _loading.style.display = 'flex'
  7961. console.log(_loading);
  7962. var _ajs = _iframe.contentWindow.document.createElement("script");
  7963. _ajs.type = "text/javascript";
  7964. _ajs.innerHTML =
  7965. // 'console.log(' + _loading + ');\n' +
  7966. 'var _js = document.createElement("script");\n' +
  7967. '_js.type="text/javascript";\n' +
  7968. '_js.charset="UTF-8";\n' +
  7969. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7970. "_js.onload = function(){\n" +
  7971. ' var a = document.getElementsByTagName("img")\n' +
  7972. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7973. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7974. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7975. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7976. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7977. "beforeUpload_shishi(file," +
  7978. "'" +
  7979. _userid +
  7980. "'" +
  7981. ", " +
  7982. "'" +
  7983. _cid +
  7984. "'" +
  7985. ", " +
  7986. "'" +
  7987. _stage +
  7988. "'" +
  7989. ", " +
  7990. "'" +
  7991. _task +
  7992. "'" +
  7993. ", " +
  7994. "'" +
  7995. _tool +
  7996. "'" +
  7997. ", " +
  7998. "'" +
  7999. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8000. "'" +
  8001. ", " +
  8002. "'" +
  8003. aTool +
  8004. "'" +
  8005. ", " +
  8006. "`" +
  8007. text +
  8008. "`" +
  8009. ")\n" +
  8010. " });\n" +
  8011. "}\n" +
  8012. "document.head.appendChild(_js);\n";
  8013. _iframe.contentWindow.document.head.appendChild(_ajs);
  8014. }
  8015. }
  8016. }
  8017. U.MD.D.I.getEditorContent = function (iframe) {
  8018. return new Promise((resolve, reject) => {
  8019. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8020. console.log(content);
  8021. resolve(content)
  8022. });
  8023. });
  8024. }
  8025. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8026. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8027. // if (res.value[0].length > 0) {
  8028. // // resolve(res.value[0][0].text);
  8029. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8030. // $(fileInput).val('');
  8031. // });
  8032. // }
  8033. // }, [], { "type": "GET", "withCredentials": true });
  8034. var xmlhttp;
  8035. var Mac, Sn, DeviceId
  8036. if (window.XMLHttpRequest) {
  8037. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8038. xmlhttp = new XMLHttpRequest();
  8039. } else {
  8040. // IE6, IE5 浏览器执行代码
  8041. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8042. }
  8043. xmlhttp.onreadystatechange = function () {
  8044. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8045. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8046. // resolve(res.value[0][0].text);
  8047. if (type == '2') {
  8048. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8049. } else if (type == '3') {
  8050. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8051. }
  8052. } else {
  8053. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8054. }
  8055. }
  8056. }
  8057. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8058. xmlhttp.send();
  8059. }
  8060. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8061. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8062. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8063. _userinfo = US.userInfo, //登录用户信息
  8064. _userid = US.userInfo.userid //登录用户id
  8065. let _iframe;
  8066. let _cid = cid,
  8067. _stage = stage,
  8068. _task = task,
  8069. _tool = tool;
  8070. var _jie = $$("div", {
  8071. "style": {
  8072. "position": "absolute",
  8073. "bottom": "50px",
  8074. "right": "50px",
  8075. "zIndex": "9999",
  8076. "backgroundColor": "#2268bc",
  8077. "color": "#fff",
  8078. "padding": "12px 20px",
  8079. "cursor": "pointer",
  8080. "borderRadius": "4px",
  8081. },
  8082. "innerHTML": "确认并提交"
  8083. })
  8084. let aTool = ''
  8085. let _loading = document.createElement('div')
  8086. _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;"
  8087. // _loading.id = "";
  8088. let _lchild = document.createElement('div')
  8089. let _limg = document.createElement('img')
  8090. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8091. _limg.style = "width: 26px;margin-right: 10px;"
  8092. _lchild.appendChild(_limg)
  8093. let _lspan = document.createElement('span')
  8094. _lspan.innerHTML = "上传中..."
  8095. _lchild.appendChild(_lspan)
  8096. _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%);"
  8097. _loading.appendChild(_lchild)
  8098. var _box = $$('div', {
  8099. "style": {
  8100. "position": "relative",
  8101. "width": "100%",
  8102. "height": "100%",
  8103. },
  8104. })
  8105. _box.appendChild(_loading)
  8106. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8107. switch (str) {
  8108. case "whiteboard":
  8109. aTool = 1;
  8110. _iframe = $$("iframe", {
  8111. "frameborder": "no",
  8112. "border": "0",
  8113. "scrolling ": "no",
  8114. "style": {
  8115. "cssText": "border:0;width:100%;height:100%"
  8116. },
  8117. "src": "https://beta.iwb.cocorobo.cn/"
  8118. })
  8119. _box.appendChild(_iframe);
  8120. _box.appendChild(_jie);
  8121. _formdiv = new U.UF.UI.form(
  8122. "电子白板",
  8123. _box, {
  8124. "id": "whiteboards" + cid + stage + task + tool,
  8125. "style": {
  8126. "width": "90%",
  8127. "height": "90%",
  8128. "overflow": 'hidden'
  8129. },
  8130. "onresize": function () { }
  8131. }, {
  8132. closecallback: function () { }
  8133. }, {
  8134. "style": {
  8135. "height": "36px"
  8136. }
  8137. }).form; //创建窗体
  8138. _taskbar = {
  8139. "id": str + _formdiv.id,
  8140. "style": {
  8141. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8142. },
  8143. "name": "电子白板",
  8144. "forms": _formdiv,
  8145. "click": function () {
  8146. U.MD.D.I.openApplication(str, obj, info);
  8147. }
  8148. }
  8149. break;
  8150. case "mind":
  8151. aTool = 3;
  8152. _iframe = $$("iframe", {
  8153. "frameborder": "no",
  8154. "border": "0",
  8155. "scrolling ": "no",
  8156. "style": {
  8157. "cssText": "border:0;width:100%;height:100%"
  8158. },
  8159. "src": "/kityminder-editor/dist/index.html"
  8160. });
  8161. _box.appendChild(_iframe);
  8162. _box.appendChild(_jie);
  8163. _formdiv = new U.UF.UI.form(
  8164. "思维导图",
  8165. _box, { //"/jsmind/example/demo.html"
  8166. "id": "minds" + cid + stage + task + tool,
  8167. "style": {
  8168. "width": "90%",
  8169. "height": "90%",
  8170. "overflow": 'hidden'
  8171. },
  8172. "onresize": function () { }
  8173. }, {
  8174. closecallback: function () { }
  8175. }, {
  8176. "style": {
  8177. "height": "36px"
  8178. }
  8179. }).form; //创建窗体
  8180. _taskbar = {
  8181. "id": str + _formdiv.id,
  8182. "style": {
  8183. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8184. },
  8185. "name": "思维导图",
  8186. "forms": _formdiv,
  8187. "click": function () {
  8188. U.MD.D.I.openApplication(str, obj, info);
  8189. }
  8190. }
  8191. break;
  8192. case "doc":
  8193. aTool = 6;
  8194. _iframe = $$("iframe", {
  8195. "frameborder": "no",
  8196. "border": "0",
  8197. "scrolling ": "no",
  8198. "style": {
  8199. "cssText": "border:0;width:100%;height:100%"
  8200. },
  8201. "src": "/Office/Word/WordEditArea.htm"
  8202. })
  8203. _box.appendChild(_iframe);
  8204. _box.appendChild(_jie);
  8205. _formdiv = new U.UF.UI.form(
  8206. "协同文档",
  8207. _box, {
  8208. "id": "docs" + cid + stage + task + tool,
  8209. "style": {
  8210. "width": "90%",
  8211. "height": "90%",
  8212. "overflow": 'hidden'
  8213. },
  8214. "onresize": function () { }
  8215. }, {
  8216. closecallback: function () { }
  8217. }, {
  8218. "style": {
  8219. "height": "36px"
  8220. }
  8221. }).form; //创建窗体
  8222. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8223. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8224. })
  8225. _taskbar = {
  8226. "id": str + _formdiv.id,
  8227. "style": {
  8228. "backgroundImage": "url(/img/icon/doc.png)"
  8229. },
  8230. "name": "协同文档",
  8231. "forms": _formdiv,
  8232. "click": function () {
  8233. U.MD.D.I.openApplication(str, obj, info);
  8234. }
  8235. }
  8236. break;
  8237. }
  8238. const script1 = document.createElement("script");
  8239. script1.type = "text/javascript";
  8240. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8241. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8242. const script2 = document.createElement("script");
  8243. script2.type = "text/javascript";
  8244. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8245. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8246. const script3 = document.createElement("script");
  8247. script3.type = "text/javascript";
  8248. script3.charset = "UTF-8";
  8249. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8250. const script4 = document.createElement("script");
  8251. script4.type = "text/javascript";
  8252. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8253. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8254. if (_iframe) {
  8255. if (str == 'doc') {
  8256. _iframe = _formdiv.querySelector('iframe')
  8257. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8258. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8259. _iframe.contentWindow.document.body.appendChild(script1);
  8260. _iframe.contentWindow.document.body.appendChild(script2);
  8261. // _iframe.contentWindow.document.body.appendChild(script3);
  8262. _iframe.contentWindow.document.body.appendChild(script4);
  8263. })
  8264. if (onloadListener) {
  8265. _iframe.contentDocument.location.reload()
  8266. } else {
  8267. _iframe.contentDocument.location.reload()
  8268. }
  8269. } else if (str == 'mind') {
  8270. _iframe = _formdiv.querySelector('iframe')
  8271. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8272. _iframe.contentWindow.document.body.appendChild(script1);
  8273. _iframe.contentWindow.document.body.appendChild(script2);
  8274. _iframe.contentWindow.document.body.appendChild(script4);
  8275. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8276. })
  8277. if (onloadListener) {
  8278. _iframe.contentDocument.location.reload()
  8279. } else {
  8280. _iframe.contentDocument.location.reload()
  8281. }
  8282. } else {
  8283. _iframe.onload = () => {
  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. }
  8290. _jie.onclick = async () => {
  8291. let text = ''
  8292. if (aTool == 6) {
  8293. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8294. } else if (aTool == 3) {
  8295. text = await U.MD.D.I.getEditorContent(_iframe);
  8296. }
  8297. _loading.style.display = 'flex'
  8298. console.log(_loading);
  8299. var _ajs = _iframe.contentWindow.document.createElement("script");
  8300. _ajs.type = "text/javascript";
  8301. _ajs.innerHTML =
  8302. // 'console.log(' + _loading + ');\n' +
  8303. 'var _js = document.createElement("script");\n' +
  8304. '_js.type="text/javascript";\n' +
  8305. '_js.charset="UTF-8";\n' +
  8306. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8307. "_js.onload = function(){\n" +
  8308. ' var a = document.getElementsByTagName("img")\n' +
  8309. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8310. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8311. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8312. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8313. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8314. "beforeUpload_shishi(file," +
  8315. "'" +
  8316. _userid +
  8317. "'" +
  8318. ", " +
  8319. "'" +
  8320. _cid +
  8321. "'" +
  8322. ", " +
  8323. "'" +
  8324. _stage +
  8325. "'" +
  8326. ", " +
  8327. "'" +
  8328. _task +
  8329. "'" +
  8330. ", " +
  8331. "'" +
  8332. _tool +
  8333. "'" +
  8334. ", " +
  8335. "'" +
  8336. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8337. "'" +
  8338. ", " +
  8339. "'" +
  8340. aTool +
  8341. "'" +
  8342. ", " +
  8343. "`" +
  8344. text +
  8345. "`" +
  8346. ")\n" +
  8347. " });\n" +
  8348. "}\n" +
  8349. "document.head.appendChild(_js);\n";
  8350. _iframe.contentWindow.document.head.appendChild(_ajs);
  8351. }
  8352. }
  8353. //U.MD.D.I.openClick(str);
  8354. //如果有任务栏信息
  8355. // if (_taskbar) {
  8356. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8357. // }
  8358. }
  8359. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8360. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8361. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8362. _userinfo = US.userInfo, //登录用户信息
  8363. _userid = US.userInfo.userid //登录用户id
  8364. let _iframe;
  8365. let _cid = cid,
  8366. _stage = stage,
  8367. _task = task,
  8368. _tool = tool;
  8369. var _jie = $$("div", {
  8370. "style": {
  8371. "position": "absolute",
  8372. "bottom": "50px",
  8373. "right": "50px",
  8374. "zIndex": "9999",
  8375. "backgroundColor": "#2268bc",
  8376. "color": "#fff",
  8377. "padding": "12px 20px",
  8378. "cursor": "pointer",
  8379. "borderRadius": "4px",
  8380. },
  8381. "innerHTML": "确认并提交"
  8382. })
  8383. let aTool = ''
  8384. let _loading = document.createElement('div')
  8385. _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;"
  8386. // _loading.id = "";
  8387. let _lchild = document.createElement('div')
  8388. let _limg = document.createElement('img')
  8389. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8390. _limg.style = "width: 26px;margin-right: 10px;"
  8391. _lchild.appendChild(_limg)
  8392. let _lspan = document.createElement('span')
  8393. _lspan.innerHTML = "上传中..."
  8394. _lchild.appendChild(_lspan)
  8395. _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%);"
  8396. _loading.appendChild(_lchild)
  8397. var _box = $$('div', {
  8398. "style": {
  8399. "position": "relative",
  8400. "width": "100%",
  8401. "height": "100%",
  8402. },
  8403. })
  8404. _box.appendChild(_loading)
  8405. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8406. switch (str) {
  8407. case "whiteboard":
  8408. aTool = 1;
  8409. _iframe = $$("iframe", {
  8410. "frameborder": "no",
  8411. "border": "0",
  8412. "scrolling ": "no",
  8413. "style": {
  8414. "cssText": "border:0;width:100%;height:100%"
  8415. },
  8416. "src": "https://beta.iwb.cocorobo.cn/"
  8417. })
  8418. _box.appendChild(_iframe);
  8419. _box.appendChild(_jie);
  8420. _formdiv = new U.UF.UI.form(
  8421. "电子白板",
  8422. _box, {
  8423. "id": "whiteboards" + cid + stage + task + tool,
  8424. "style": {
  8425. "width": "90%",
  8426. "height": "90%",
  8427. "overflow": 'hidden'
  8428. },
  8429. "onresize": function () { }
  8430. }, {
  8431. closecallback: function () { }
  8432. }, {
  8433. "style": {
  8434. "height": "36px"
  8435. }
  8436. }).form; //创建窗体
  8437. _taskbar = {
  8438. "id": str + _formdiv.id,
  8439. "style": {
  8440. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8441. },
  8442. "name": "电子白板",
  8443. "forms": _formdiv,
  8444. "click": function () {
  8445. U.MD.D.I.openApplication(str, obj, info);
  8446. }
  8447. }
  8448. break;
  8449. case "mind":
  8450. aTool = 3;
  8451. _iframe = $$("iframe", {
  8452. "frameborder": "no",
  8453. "border": "0",
  8454. "scrolling ": "no",
  8455. "style": {
  8456. "cssText": "border:0;width:100%;height:100%"
  8457. },
  8458. "src": "/kityminder-editor/dist/index.html"
  8459. });
  8460. _box.appendChild(_iframe);
  8461. _box.appendChild(_jie);
  8462. _formdiv = new U.UF.UI.form(
  8463. "思维导图",
  8464. _box, { //"/jsmind/example/demo.html"
  8465. "id": "minds" + cid + stage + task + tool,
  8466. "style": {
  8467. "width": "90%",
  8468. "height": "90%",
  8469. "overflow": 'hidden'
  8470. },
  8471. "onresize": function () { }
  8472. }, {
  8473. closecallback: function () { }
  8474. }, {
  8475. "style": {
  8476. "height": "36px"
  8477. }
  8478. }).form; //创建窗体
  8479. _taskbar = {
  8480. "id": str + _formdiv.id,
  8481. "style": {
  8482. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8483. },
  8484. "name": "思维导图",
  8485. "forms": _formdiv,
  8486. "click": function () {
  8487. U.MD.D.I.openApplication(str, obj, info);
  8488. }
  8489. }
  8490. break;
  8491. case "doc":
  8492. aTool = 6;
  8493. _iframe = $$("iframe", {
  8494. "frameborder": "no",
  8495. "border": "0",
  8496. "scrolling ": "no",
  8497. "style": {
  8498. "cssText": "border:0;width:100%;height:100%"
  8499. },
  8500. "src": "/Office/Word/WordEditArea.htm"
  8501. })
  8502. _box.appendChild(_iframe);
  8503. _box.appendChild(_jie);
  8504. _formdiv = new U.UF.UI.form(
  8505. "协同文档",
  8506. _box, {
  8507. "id": "docs" + cid + stage + task + tool,
  8508. "style": {
  8509. "width": "90%",
  8510. "height": "90%",
  8511. "overflow": 'hidden'
  8512. },
  8513. "onresize": function () { }
  8514. }, {
  8515. closecallback: function () { }
  8516. }, {
  8517. "style": {
  8518. "height": "36px"
  8519. }
  8520. }).form; //创建窗体
  8521. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8522. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8523. })
  8524. _taskbar = {
  8525. "id": str + _formdiv.id,
  8526. "style": {
  8527. "backgroundImage": "url(/img/icon/doc.png)"
  8528. },
  8529. "name": "协同文档",
  8530. "forms": _formdiv,
  8531. "click": function () {
  8532. U.MD.D.I.openApplication(str, obj, info);
  8533. }
  8534. }
  8535. break;
  8536. }
  8537. const script1 = document.createElement("script");
  8538. script1.type = "text/javascript";
  8539. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8540. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8541. const script2 = document.createElement("script");
  8542. script2.type = "text/javascript";
  8543. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8544. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8545. const script3 = document.createElement("script");
  8546. script3.type = "text/javascript";
  8547. script3.charset = "UTF-8";
  8548. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8549. const script4 = document.createElement("script");
  8550. script4.type = "text/javascript";
  8551. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8552. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8553. if (_iframe) {
  8554. if (str == 'doc') {
  8555. _iframe = _formdiv.querySelector('iframe')
  8556. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8557. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8558. _iframe.contentWindow.document.body.appendChild(script1);
  8559. _iframe.contentWindow.document.body.appendChild(script2);
  8560. // _iframe.contentWindow.document.body.appendChild(script3);
  8561. _iframe.contentWindow.document.body.appendChild(script4);
  8562. })
  8563. if (onloadListener) {
  8564. _iframe.contentDocument.location.reload()
  8565. } else {
  8566. _iframe.contentDocument.location.reload()
  8567. }
  8568. } else if (str == 'mind') {
  8569. _iframe = _formdiv.querySelector('iframe')
  8570. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8571. _iframe.contentWindow.document.body.appendChild(script1);
  8572. _iframe.contentWindow.document.body.appendChild(script2);
  8573. _iframe.contentWindow.document.body.appendChild(script4);
  8574. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8575. })
  8576. if (onloadListener) {
  8577. _iframe.contentDocument.location.reload()
  8578. } else {
  8579. _iframe.contentDocument.location.reload()
  8580. }
  8581. } else {
  8582. _iframe.onload = () => {
  8583. _iframe.contentWindow.document.body.appendChild(script1);
  8584. _iframe.contentWindow.document.body.appendChild(script2);
  8585. // _iframe.contentWindow.document.body.appendChild(script3);
  8586. _iframe.contentWindow.document.body.appendChild(script4);
  8587. };
  8588. }
  8589. _jie.onclick = async () => {
  8590. let text = ''
  8591. if (aTool == 6) {
  8592. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8593. } else if (aTool == 3) {
  8594. text = await U.MD.D.I.getEditorContent(_iframe);
  8595. }
  8596. _loading.style.display = 'flex'
  8597. console.log(_loading);
  8598. var _ajs = _iframe.contentWindow.document.createElement("script");
  8599. _ajs.type = "text/javascript";
  8600. _ajs.innerHTML =
  8601. // 'console.log(' + _loading + ');\n' +
  8602. 'var _js = document.createElement("script");\n' +
  8603. '_js.type="text/javascript";\n' +
  8604. '_js.charset="UTF-8";\n' +
  8605. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8606. "_js.onload = function(){\n" +
  8607. ' var a = document.getElementsByTagName("img")\n' +
  8608. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8609. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8610. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8611. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8612. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8613. "beforeUpload_shishi(file," +
  8614. "'" +
  8615. _userid +
  8616. "'" +
  8617. ", " +
  8618. "'" +
  8619. _cid +
  8620. "'" +
  8621. ", " +
  8622. "'" +
  8623. _stage +
  8624. "'" +
  8625. ", " +
  8626. "'" +
  8627. _task +
  8628. "'" +
  8629. ", " +
  8630. "'" +
  8631. _tool +
  8632. "'" +
  8633. ", " +
  8634. "'" +
  8635. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8636. "'" +
  8637. ", " +
  8638. "'" +
  8639. aTool +
  8640. "'" +
  8641. ", " +
  8642. "`" +
  8643. text +
  8644. "`" +
  8645. ")\n" +
  8646. " });\n" +
  8647. "}\n" +
  8648. "document.head.appendChild(_js);\n";
  8649. _iframe.contentWindow.document.head.appendChild(_ajs);
  8650. }
  8651. }
  8652. //U.MD.D.I.openClick(str);
  8653. //如果有任务栏信息
  8654. // if (_taskbar) {
  8655. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8656. // }
  8657. }
  8658. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8659. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8660. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8661. _userinfo = US.userInfo, //登录用户信息
  8662. _userid = US.userInfo.userid //登录用户id
  8663. let _iframe;
  8664. let _cid = cid,
  8665. _stage = stage,
  8666. _task = task,
  8667. _tool = tool;
  8668. var _jie = $$("div", {
  8669. "style": {
  8670. "position": "absolute",
  8671. "bottom": "50px",
  8672. "right": "50px",
  8673. "zIndex": "9999",
  8674. "backgroundColor": "#2268bc",
  8675. "color": "#fff",
  8676. "padding": "12px 20px",
  8677. "cursor": "pointer",
  8678. "borderRadius": "4px",
  8679. },
  8680. "innerHTML": "上传模板"
  8681. })
  8682. let aTool = ''
  8683. let _loading = document.createElement('div')
  8684. _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;"
  8685. // _loading.id = "";
  8686. let _lchild = document.createElement('div')
  8687. let _limg = document.createElement('img')
  8688. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8689. _limg.style = "width: 26px;margin-right: 10px;"
  8690. _lchild.appendChild(_limg)
  8691. let _lspan = document.createElement('span')
  8692. _lspan.innerHTML = "上传中..."
  8693. _lchild.appendChild(_lspan)
  8694. _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%);"
  8695. _loading.appendChild(_lchild)
  8696. var _box = $$('div', {
  8697. "style": {
  8698. "position": "relative",
  8699. "width": "100%",
  8700. "height": "100%",
  8701. },
  8702. })
  8703. _box.appendChild(_loading)
  8704. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8705. switch (str) {
  8706. case "whiteboard":
  8707. aTool = 1;
  8708. _iframe = $$("iframe", {
  8709. "frameborder": "no",
  8710. "border": "0",
  8711. "scrolling ": "no",
  8712. "style": {
  8713. "cssText": "border:0;width:100%;height:100%"
  8714. },
  8715. "src": "https://beta.iwb.cocorobo.cn/"
  8716. })
  8717. _box.appendChild(_iframe);
  8718. _box.appendChild(_jie);
  8719. _formdiv = new U.UF.UI.form(
  8720. "电子白板",
  8721. _box, {
  8722. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8723. "style": {
  8724. "width": "90%",
  8725. "height": "90%",
  8726. "overflow": 'hidden'
  8727. },
  8728. "onresize": function () { }
  8729. }, {
  8730. closecallback: function () { }
  8731. }, {
  8732. "style": {
  8733. "height": "36px"
  8734. }
  8735. }).form; //创建窗体
  8736. _taskbar = {
  8737. "id": str + _formdiv.id,
  8738. "style": {
  8739. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8740. },
  8741. "name": "电子白板",
  8742. "forms": _formdiv,
  8743. "click": function () {
  8744. U.MD.D.I.openApplication(str, obj, info);
  8745. }
  8746. }
  8747. break;
  8748. case "mind":
  8749. aTool = 3;
  8750. _iframe = $$("iframe", {
  8751. "frameborder": "no",
  8752. "border": "0",
  8753. "scrolling ": "no",
  8754. "style": {
  8755. "cssText": "border:0;width:100%;height:100%"
  8756. },
  8757. "src": "/kityminder-editor/dist/index.html"
  8758. });
  8759. _box.appendChild(_iframe);
  8760. _box.appendChild(_jie);
  8761. _formdiv = new U.UF.UI.form(
  8762. "思维导图",
  8763. _box, { //"/jsmind/example/demo.html"
  8764. "id": "minds_Yu" + cid + stage + task + tool,
  8765. "style": {
  8766. "width": "90%",
  8767. "height": "90%",
  8768. "overflow": 'hidden'
  8769. },
  8770. "onresize": function () { }
  8771. }, {
  8772. closecallback: function () { }
  8773. }, {
  8774. "style": {
  8775. "height": "36px"
  8776. }
  8777. }).form; //创建窗体
  8778. _taskbar = {
  8779. "id": str + _formdiv.id,
  8780. "style": {
  8781. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8782. },
  8783. "name": "思维导图",
  8784. "forms": _formdiv,
  8785. "click": function () {
  8786. U.MD.D.I.openApplication(str, obj, info);
  8787. }
  8788. }
  8789. break;
  8790. case "doc":
  8791. aTool = 6;
  8792. _iframe = $$("iframe", {
  8793. "frameborder": "no",
  8794. "border": "0",
  8795. "scrolling ": "no",
  8796. "style": {
  8797. "cssText": "border:0;width:100%;height:100%"
  8798. },
  8799. "src": "/Office/Word/WordEditArea.htm"
  8800. })
  8801. _box.appendChild(_iframe);
  8802. _box.appendChild(_jie);
  8803. _formdiv = new U.UF.UI.form(
  8804. "协同文档",
  8805. _box, {
  8806. "id": "docs_Yu" + cid + stage + task + tool,
  8807. "style": {
  8808. "width": "90%",
  8809. "height": "90%",
  8810. "overflow": 'hidden'
  8811. },
  8812. "onresize": function () { }
  8813. }, {
  8814. closecallback: function () { }
  8815. }, {
  8816. "style": {
  8817. "height": "36px"
  8818. }
  8819. }).form; //创建窗体
  8820. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8821. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8822. })
  8823. _taskbar = {
  8824. "id": str + _formdiv.id,
  8825. "style": {
  8826. "backgroundImage": "url(/img/icon/doc.png)"
  8827. },
  8828. "name": "协同文档",
  8829. "forms": _formdiv,
  8830. "click": function () {
  8831. U.MD.D.I.openApplication(str, obj, info);
  8832. }
  8833. }
  8834. break;
  8835. case "CocoPi":
  8836. aTool = 57;
  8837. _iframe = $$("iframe", {
  8838. "allowpaymentrequest": "allowpaymentrequest",
  8839. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8840. "webkitallowfullscreen": "",
  8841. "mozallowfullscreen": "",
  8842. "frameborder": "no",
  8843. "border": "0",
  8844. "scrolling ": "no",
  8845. "style": {
  8846. "cssText": "border:0;width:100%;height:100%"
  8847. },
  8848. "src": "https://pi.cocorobo.cn/"
  8849. })
  8850. _box.appendChild(_iframe);
  8851. _box.appendChild(_jie);
  8852. _formdiv = new U.UF.UI.form(
  8853. "CocoPi",
  8854. _box, {
  8855. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8856. "style": {
  8857. "width": "90%",
  8858. "height": "90%",
  8859. "overflow": 'hidden'
  8860. },
  8861. "onresize": function () { }
  8862. }, {
  8863. closecallback: function () { }
  8864. }, {
  8865. "style": {
  8866. "height": "36px"
  8867. }
  8868. }).form; //创建窗体
  8869. _taskbar = {
  8870. "id": str + _formdiv.id,
  8871. "style": {
  8872. "backgroundImage": "url(/img/icon/cocopi.png)"
  8873. },
  8874. "name": "CocoPi",
  8875. "forms": _formdiv,
  8876. "click": function () {
  8877. U.MD.D.I.openApplication(str, obj, info);
  8878. }
  8879. }
  8880. break;
  8881. }
  8882. if (_iframe) {
  8883. if (str == 'doc') {
  8884. _iframe = _formdiv.querySelector('iframe')
  8885. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8886. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8887. })
  8888. if (onloadListener) {
  8889. _iframe.contentDocument.location.reload()
  8890. } else {
  8891. _iframe.contentDocument.location.reload()
  8892. }
  8893. } else if (str == 'mind') {
  8894. _iframe = _formdiv.querySelector('iframe')
  8895. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8896. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8897. })
  8898. if (onloadListener) {
  8899. _iframe.contentDocument.location.reload()
  8900. } else {
  8901. _iframe.contentDocument.location.reload()
  8902. }
  8903. } else if (str == 'whiteboard') {
  8904. _iframe = _formdiv.querySelector('iframe')
  8905. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8906. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8907. })
  8908. // if (onloadListener) {
  8909. // try {
  8910. // _iframe.src += "?cocorobo="+new Date().getTime()
  8911. // _iframe.contentWindow.document.location.reload()
  8912. // } catch (error) {
  8913. // }
  8914. // } else {
  8915. // _iframe.contentDocument.location.reload()
  8916. // }
  8917. } else if (str == 'CocoPi') {
  8918. _iframe = _formdiv.querySelector('iframe')
  8919. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8920. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8921. })
  8922. if (onloadListener) {
  8923. _iframe.contentDocument.location.reload()
  8924. } else {
  8925. _iframe.contentDocument.location.reload()
  8926. }
  8927. } else {
  8928. _iframe.onload = () => { };
  8929. }
  8930. _jie.onclick = async () => {
  8931. let text = ''
  8932. let type = '2'
  8933. if (aTool == 1) {
  8934. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8935. type = '3'
  8936. } else if (aTool == 6) {
  8937. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8938. type = '1'
  8939. } else if (aTool == 3) {
  8940. text = await U.MD.D.I.getEditorContent(_iframe);
  8941. type = '2'
  8942. } else if (aTool == 57) {
  8943. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8944. type = '4'
  8945. }
  8946. _loading.style.display = 'flex'
  8947. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8948. }
  8949. }
  8950. //U.MD.D.I.openClick(str);
  8951. //如果有任务栏信息
  8952. // if (_taskbar) {
  8953. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8954. // }
  8955. }
  8956. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8957. var xmlhttp;
  8958. var Mac, Sn, DeviceId
  8959. if (window.XMLHttpRequest) {
  8960. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8961. xmlhttp = new XMLHttpRequest();
  8962. } else {
  8963. // IE6, IE5 浏览器执行代码
  8964. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8965. }
  8966. xmlhttp.onreadystatechange = function () {
  8967. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8968. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8969. // resolve(res.value[0][0].text);
  8970. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8971. }
  8972. }
  8973. }
  8974. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8975. xmlhttp.send();
  8976. }
  8977. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8978. var xmlhttp;
  8979. var Mac, Sn, DeviceId
  8980. if (window.XMLHttpRequest) {
  8981. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8982. xmlhttp = new XMLHttpRequest();
  8983. } else {
  8984. // IE6, IE5 浏览器执行代码
  8985. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8986. }
  8987. xmlhttp.onreadystatechange = function () {
  8988. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8989. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8990. // resolve(res.value[0][0].text);
  8991. if (type == '2') {
  8992. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8993. } else if (type == '3') {
  8994. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8995. } else if (type == '4') {
  8996. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8997. }
  8998. } else {
  8999. if (type == '2') {
  9000. iframe.contentWindow.editor.minder.importData('json', '')
  9001. } else if (type == '3') {
  9002. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9003. } else if (type == '4') {
  9004. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9005. }
  9006. }
  9007. }
  9008. }
  9009. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9010. xmlhttp.send();
  9011. }
  9012. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9013. var xmlhttp;
  9014. var Mac, Sn, DeviceId
  9015. if (window.XMLHttpRequest) {
  9016. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9017. xmlhttp = new XMLHttpRequest();
  9018. } else {
  9019. // IE6, IE5 浏览器执行代码
  9020. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9021. }
  9022. xmlhttp.onreadystatechange = function () {
  9023. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9024. if (xmlhttp.response) {
  9025. // resolve(res.value[0][0].text);
  9026. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9027. // $(fileInput).val('');
  9028. // });
  9029. span.innerHTML = '上传成功'
  9030. setTimeout(() => {
  9031. loading.style.display = 'none'
  9032. }, 1000);
  9033. }
  9034. }
  9035. }
  9036. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9037. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9038. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9039. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9040. // 设置请求头,表示请求体的编码格式
  9041. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9042. // 设置请求体,使用url-encoded格式的数据
  9043. }
  9044. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9045. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9046. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9047. _userinfo = US.userInfo, //登录用户信息
  9048. _userid = US.userInfo.userid //登录用户id
  9049. let _iframe;
  9050. let _cid = cid,
  9051. _stage = stage,
  9052. _task = task,
  9053. _tool = tool;
  9054. var _jie = $$("div", {
  9055. "style": {
  9056. "position": "absolute",
  9057. "bottom": "50px",
  9058. "right": "50px",
  9059. "zIndex": "9999",
  9060. "backgroundColor": "#2268bc",
  9061. "color": "#fff",
  9062. "padding": "12px 20px",
  9063. "cursor": "pointer",
  9064. "borderRadius": "4px",
  9065. },
  9066. "innerHTML": "提交作业"
  9067. })
  9068. let aTool = ''
  9069. let _loading = document.createElement('div')
  9070. _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;"
  9071. // _loading.id = "";
  9072. let _lchild = document.createElement('div')
  9073. let _limg = document.createElement('img')
  9074. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9075. _limg.style = "width: 26px;margin-right: 10px;"
  9076. _lchild.appendChild(_limg)
  9077. let _lspan = document.createElement('span')
  9078. _lspan.innerHTML = "上传中..."
  9079. _lchild.appendChild(_lspan)
  9080. _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%);"
  9081. _loading.appendChild(_lchild)
  9082. var _box = $$('div', {
  9083. "style": {
  9084. "position": "relative",
  9085. "width": "100%",
  9086. "height": "100%",
  9087. },
  9088. })
  9089. _box.appendChild(_loading)
  9090. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9091. switch (str) {
  9092. case "CocoPi":
  9093. aTool = 57;
  9094. _iframe = $$("iframe", {
  9095. "allowpaymentrequest": "allowpaymentrequest",
  9096. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9097. "webkitallowfullscreen": "",
  9098. "mozallowfullscreen": "",
  9099. "frameborder": "no",
  9100. "border": "0",
  9101. "scrolling ": "no",
  9102. "style": {
  9103. "cssText": "border:0;width:100%;height:100%"
  9104. },
  9105. "src": "https://pi.cocorobo.cn/"
  9106. })
  9107. _box.appendChild(_iframe);
  9108. _box.appendChild(_jie);
  9109. _formdiv = new U.UF.UI.form(
  9110. "CocoPi",
  9111. _box, {
  9112. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9113. "style": {
  9114. "width": "90%",
  9115. "height": "90%",
  9116. "overflow": 'hidden'
  9117. },
  9118. "onresize": function () { }
  9119. }, {
  9120. closecallback: function () { }
  9121. }, {
  9122. "style": {
  9123. "height": "36px"
  9124. }
  9125. }).form; //创建窗体
  9126. _taskbar = {
  9127. "id": str + _formdiv.id,
  9128. "style": {
  9129. "backgroundImage": "url(/img/icon/cocopi.png)"
  9130. },
  9131. "name": "CocoPi",
  9132. "forms": _formdiv,
  9133. "click": function () {
  9134. U.MD.D.I.openApplication(str, obj, info);
  9135. }
  9136. }
  9137. break;
  9138. }
  9139. if (_iframe) {
  9140. if (str == 'CocoPi') {
  9141. _iframe = _formdiv.querySelector('iframe')
  9142. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9143. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9144. })
  9145. if (onloadListener) {
  9146. _iframe.contentDocument.location.reload()
  9147. } else {
  9148. _iframe.contentDocument.location.reload()
  9149. }
  9150. }
  9151. _jie.onclick = async () => {
  9152. let text = ''
  9153. if (aTool == 57) {
  9154. text = _iframe.contentWindow.getLoadXmlStr()
  9155. }
  9156. _loading.style.display = 'flex'
  9157. console.log(_loading);
  9158. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9159. _loading.style.display = 'none'
  9160. let _div = document.createElement('div')
  9161. _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;"
  9162. let _inner = document.createElement('div')
  9163. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9164. _inner.innerHTML = "上传成功"
  9165. _div.appendChild(_inner)
  9166. _iframe.contentWindow.window.document.body.appendChild(_div)
  9167. _div.onclick = () => {
  9168. _iframe.contentWindow.window.document.body.removeChild(_div)
  9169. }
  9170. setTimeout(() => {
  9171. _iframe.contentWindow.window.document.body.removeChild(_div)
  9172. }, 1000);
  9173. }, [], { "type": "POST", "withCredentials": true });
  9174. }
  9175. }
  9176. }
  9177. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9178. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9179. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9180. _userid = student.userid, //登录用户id
  9181. _username = student.student //用户名字
  9182. let _iframe;
  9183. let _cid = cid,
  9184. _stage = stage,
  9185. _task = task,
  9186. _tool = tool;
  9187. var _jie = $$("div", {
  9188. "style": {
  9189. "position": "absolute",
  9190. "bottom": "50px",
  9191. "right": "50px",
  9192. "zIndex": "9999",
  9193. "backgroundColor": "#2268bc",
  9194. "color": "#fff",
  9195. "padding": "12px 20px",
  9196. "cursor": "pointer",
  9197. "borderRadius": "4px",
  9198. },
  9199. "innerHTML": "提交作业"
  9200. })
  9201. let aTool = ''
  9202. let _loading = document.createElement('div')
  9203. _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;"
  9204. // _loading.id = "";
  9205. let _lchild = document.createElement('div')
  9206. let _limg = document.createElement('img')
  9207. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9208. _limg.style = "width: 26px;margin-right: 10px;"
  9209. _lchild.appendChild(_limg)
  9210. let _lspan = document.createElement('span')
  9211. _lspan.innerHTML = "上传中..."
  9212. _lchild.appendChild(_lspan)
  9213. _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%);"
  9214. _loading.appendChild(_lchild)
  9215. var _box = $$('div', {
  9216. "style": {
  9217. "position": "relative",
  9218. "width": "100%",
  9219. "height": "100%",
  9220. },
  9221. })
  9222. _box.appendChild(_loading)
  9223. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9224. switch (str) {
  9225. case "CocoPi":
  9226. aTool = 57;
  9227. _iframe = $$("iframe", {
  9228. "allowpaymentrequest": "allowpaymentrequest",
  9229. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9230. "webkitallowfullscreen": "",
  9231. "mozallowfullscreen": "",
  9232. "frameborder": "no",
  9233. "border": "0",
  9234. "scrolling ": "no",
  9235. "style": {
  9236. "cssText": "border:0;width:100%;height:100%"
  9237. },
  9238. "src": "https://pi.cocorobo.cn/"
  9239. })
  9240. _box.appendChild(_iframe);
  9241. _box.appendChild(_jie);
  9242. _formdiv = new U.UF.UI.form(
  9243. "CocoPi-" + _username,
  9244. _box, {
  9245. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9246. "style": {
  9247. "width": "90%",
  9248. "height": "90%",
  9249. "overflow": 'hidden'
  9250. },
  9251. "onresize": function () { }
  9252. }, {
  9253. closecallback: function () { }
  9254. }, {
  9255. "style": {
  9256. "height": "36px"
  9257. }
  9258. }).form; //创建窗体
  9259. _taskbar = {
  9260. "id": str + _formdiv.id,
  9261. "style": {
  9262. "backgroundImage": "url(/img/icon/cocopi.png)"
  9263. },
  9264. "name": "CocoPi",
  9265. "forms": _formdiv,
  9266. "click": function () {
  9267. U.MD.D.I.openApplication(str, obj, info);
  9268. }
  9269. }
  9270. break;
  9271. }
  9272. if (_iframe) {
  9273. if (str == 'CocoPi') {
  9274. _iframe = _formdiv.querySelector('iframe')
  9275. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9276. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9277. })
  9278. if (onloadListener) {
  9279. _iframe.contentDocument.location.reload()
  9280. } else {
  9281. _iframe.contentDocument.location.reload()
  9282. }
  9283. }
  9284. _jie.onclick = async () => {
  9285. let text = ''
  9286. if (aTool == 57) {
  9287. text = _iframe.contentWindow.getLoadXmlStr()
  9288. }
  9289. _loading.style.display = 'flex'
  9290. console.log(_loading);
  9291. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9292. _loading.style.display = 'none'
  9293. let _div = document.createElement('div')
  9294. _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;"
  9295. let _inner = document.createElement('div')
  9296. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9297. _inner.innerHTML = "上传成功"
  9298. _div.appendChild(_inner)
  9299. _iframe.contentWindow.window.document.body.appendChild(_div)
  9300. _div.onclick = () => {
  9301. _iframe.contentWindow.window.document.body.removeChild(_div)
  9302. }
  9303. setTimeout(() => {
  9304. _iframe.contentWindow.window.document.body.removeChild(_div)
  9305. }, 1000);
  9306. }, [], { "type": "POST", "withCredentials": true });
  9307. }
  9308. }
  9309. }
  9310. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9311. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9312. if (res.value[0].length > 0) {
  9313. if (atool == 57) {
  9314. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9315. }
  9316. } else {
  9317. if (atool == 57) {
  9318. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9319. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9320. }
  9321. }
  9322. }, [], { "type": "POST", "withCredentials": true });
  9323. }