DeskTop.js 589 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590
  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. //#region 桌面初始化a
  1453. /**
  1454. * 初始化桌面的起始函数
  1455. *
  1456. */
  1457. U.MD.D.I.init = function () {
  1458. if ($("#U_MD_D_K")[0]) {
  1459. //初始化桌面图标
  1460. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1461. // var clickUrl = ':12588/requestIp.php';
  1462. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1463. // U.MD.D.I.Ip = data;
  1464. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1465. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1466. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1467. // })
  1468. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1469. // })
  1470. }
  1471. }
  1472. /**
  1473. * 模式切换
  1474. *
  1475. */
  1476. U.MD.D.I.ModeCheck = function (type) {
  1477. if (US.Config.type == type) {
  1478. return
  1479. }
  1480. US.Config.type = type
  1481. $('.U_PBL_Check .active')[0].className = ''
  1482. if (type == 1) {
  1483. $('.U_PBL_Check div')[0].className = 'active'
  1484. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1485. } else {
  1486. $('.U_PBL_Check div')[1].className = 'active'
  1487. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1488. }
  1489. //初始化桌面图标
  1490. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1491. if (type == 2) {
  1492. U.MD.D.I.openApplication("project")
  1493. }
  1494. }
  1495. /**
  1496. * 隐藏任务栏
  1497. *
  1498. * @param {element} 桌面元素
  1499. */
  1500. U.MD.D.I.hiddenTaskbar = function (el) {
  1501. //任务栏位置变小
  1502. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1503. //桌面的位置变大
  1504. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1505. }
  1506. /**
  1507. * 隐藏任务栏
  1508. *
  1509. * @param {element} 桌面元素
  1510. */
  1511. U.MD.D.I.hiddenTaskbarout = function (el) {
  1512. //任务栏位置变小
  1513. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1514. //任务栏位置变化
  1515. U.selectEl(el).css({ "bottom": "-60px" });
  1516. //桌面的位置变大
  1517. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1518. }
  1519. }
  1520. /**
  1521. * 初始化打印桌面图标
  1522. *
  1523. * @param {element} 桌面元素
  1524. */
  1525. U.MD.D.I.initDesktopIcons = function (el, type) {
  1526. var i, //用于循环
  1527. _content, //桌面图标元素
  1528. _iconcontent, //桌面图标元素
  1529. _frag = $$("frag"), //定义一个碎片元素
  1530. _type = US.userInfo.type,
  1531. _org = US.userInfo.org,
  1532. _oid = US.userInfo.organizeid,
  1533. _role = US.userInfo.role,
  1534. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1535. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1536. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1537. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1538. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1539. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1540. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1541. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1542. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1543. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1544. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1545. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1546. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1547. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1548. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1549. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1550. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1551. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1552. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1553. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1554. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1555. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1556. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1557. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1558. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1559. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1560. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1561. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1562. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1563. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1564. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1565. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1566. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1567. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1568. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1569. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1570. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1571. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1572. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1573. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1574. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1575. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1576. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1577. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1578. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1579. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1580. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1581. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1582. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1583. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1584. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1585. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1586. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1587. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1588. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1589. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1590. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1591. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1592. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1593. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1594. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1595. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1596. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1597. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1598. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1599. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1600. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1601. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1602. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1603. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1604. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1605. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1606. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1607. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1608. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1609. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1610. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1611. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1612. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1613. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1614. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1615. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1616. 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'];
  1617. 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'];
  1618. //清楚桌面图标
  1619. el.innerHTML = "";
  1620. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1621. _teacherDesktopIconInfo.push(
  1622. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1623. { "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)" } },
  1624. )
  1625. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1626. }
  1627. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1628. _teacherDesktopIconInfo.push(
  1629. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1630. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1631. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1632. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1633. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1634. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1635. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1636. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1637. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1638. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1639. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1640. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1641. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1642. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1643. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1644. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1645. )
  1646. }
  1647. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1648. _teacherDesktopIconInfo.push(
  1649. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1650. )
  1651. }
  1652. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1653. // _teacherDesktopIconInfo.push(
  1654. // )
  1655. // }
  1656. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1657. _teacherDesktopIconInfo.push(
  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. )
  1661. }
  1662. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1663. _teacherDesktopIconInfo.push(
  1664. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1666. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1667. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1668. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1669. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1670. )
  1671. _studentDesktopIconInfo.push(
  1672. )
  1673. }
  1674. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1675. _teacherDesktopIconInfo.push(
  1676. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1677. )
  1678. _studentDesktopIconInfo.push(
  1679. )
  1680. }
  1681. //010606 组织
  1682. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1683. _teacherDesktopIconInfo.push(
  1684. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1685. )
  1686. _studentDesktopIconInfo.push(
  1687. )
  1688. }
  1689. //麒麟二中 和 民新小学
  1690. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1691. _teacherDesktopIconInfo.push(
  1692. )
  1693. }
  1694. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1695. _teacherDesktopIconInfo.push(
  1696. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1697. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1698. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1699. )
  1700. }
  1701. //北师大附中(010601)
  1702. if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1703. _teacherDesktopIconInfo.push(
  1704. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1705. )
  1706. _studentDesktopIconInfo.push(
  1707. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1708. )
  1709. }
  1710. //樂善堂余近卿中學
  1711. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1712. _teacherDesktopIconInfo.push(
  1713. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1714. )
  1715. }
  1716. // Education Artificial Intelligence
  1717. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1718. _teacherDesktopIconInfo.push(
  1719. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1720. )
  1721. }
  1722. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1723. _teacherDesktopIconInfo.push(
  1724. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1725. )
  1726. }
  1727. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1728. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1729. _teacherDesktopIconInfo.push(
  1730. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1731. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1732. )
  1733. }
  1734. //麒麟二中
  1735. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1736. _studentDesktopIconInfo.push(
  1737. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1738. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1739. )
  1740. }
  1741. //万科双语
  1742. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1743. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1744. if (el.Name == '项目管理') {
  1745. el.Name = 'PBL项目'
  1746. }
  1747. return el
  1748. })
  1749. _studentDesktopIconInfo3.push(
  1750. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1751. )
  1752. }
  1753. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1754. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1755. return el.Name != '魔盒识字' && el.Name != '24点'
  1756. })
  1757. }
  1758. 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) {
  1759. _studentDesktopIconInfo.push(
  1760. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1761. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1762. )
  1763. }
  1764. //循环创建桌面图标
  1765. if (type == 1) {
  1766. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1767. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1768. _content = $$("div", {
  1769. className: "U_MD_D_KO",
  1770. "onmousedown": U.UF.C.closure(function (obj) {
  1771. //防止拖动图标即打开了桌面应用
  1772. U.MD.D.click(this, obj);
  1773. }, [_studentDesktopIconInfo[i]]),
  1774. "onclick": U.UF.C.closure(function (obj) {
  1775. //防止拖动图标即打开了桌面应用
  1776. U.MD.D.click(this, obj);
  1777. }, [_studentDesktopIconInfo[i]])
  1778. }, _frag); //
  1779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1782. }
  1783. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1784. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1785. _content = $$("div", {
  1786. className: "U_MD_D_KO",
  1787. "onmousedown": U.UF.C.closure(function (obj) {
  1788. //防止拖动图标即打开了桌面应用
  1789. U.MD.D.click(this, obj);
  1790. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1791. "onclick": U.UF.C.closure(function (obj) {
  1792. //防止拖动图标即打开了桌面应用
  1793. U.MD.D.click(this, obj);
  1794. }, [_hkZJLSStudentDeskIconInfo[i]])
  1795. }, _frag); //
  1796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1799. } //
  1800. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1801. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1802. _content = $$("div", {
  1803. className: "U_MD_D_KO",
  1804. "onmousedown": U.UF.C.closure(function (obj) {
  1805. //防止拖动图标即打开了桌面应用
  1806. U.MD.D.click(this, obj);
  1807. }, [_ytyStudentDeskIconInfo[i]]),
  1808. "onclick": U.UF.C.closure(function (obj) {
  1809. //防止拖动图标即打开了桌面应用
  1810. U.MD.D.click(this, obj);
  1811. }, [_ytyStudentDeskIconInfo[i]])
  1812. }, _frag); //
  1813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1816. } //
  1817. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1818. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1819. _content = $$("div", {
  1820. className: "U_MD_D_KO",
  1821. "onmousedown": U.UF.C.closure(function (obj) {
  1822. //防止拖动图标即打开了桌面应用
  1823. U.MD.D.click(this, obj);
  1824. }, [_jccssylStudentDeskIconInfo[i]]),
  1825. "onclick": U.UF.C.closure(function (obj) {
  1826. //防止拖动图标即打开了桌面应用
  1827. U.MD.D.click(this, obj);
  1828. }, [_jccssylStudentDeskIconInfo[i]])
  1829. }, _frag); //
  1830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1833. }
  1834. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1835. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1836. _content = $$("div", {
  1837. className: "U_MD_D_KO",
  1838. "onmousedown": U.UF.C.closure(function (obj) {
  1839. //防止拖动图标即打开了桌面应用
  1840. U.MD.D.click(this, obj);
  1841. }, [_scnuaiStudentDeskIconInfo[i]]),
  1842. "onclick": U.UF.C.closure(function (obj) {
  1843. //防止拖动图标即打开了桌面应用
  1844. U.MD.D.click(this, obj);
  1845. }, [_scnuaiStudentDeskIconInfo[i]])
  1846. }, _frag); //
  1847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1850. }
  1851. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1852. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1853. _content = $$("div", {
  1854. className: "U_MD_D_KO",
  1855. "onmousedown": U.UF.C.closure(function (obj) {
  1856. //防止拖动图标即打开了桌面应用
  1857. U.MD.D.click(this, obj);
  1858. }, [_caleStudentDeskIconInfo[i]]),
  1859. "onclick": U.UF.C.closure(function (obj) {
  1860. //防止拖动图标即打开了桌面应用
  1861. U.MD.D.click(this, obj);
  1862. }, [_caleStudentDeskIconInfo[i]])
  1863. }, _frag); //
  1864. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1865. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1866. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1867. }
  1868. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1869. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1870. _content = $$("div", {
  1871. className: "U_MD_D_KO",
  1872. "onmousedown": U.UF.C.closure(function (obj) {
  1873. //防止拖动图标即打开了桌面应用
  1874. U.MD.D.click(this, obj);
  1875. }, [_thuioeStudentDeskIconInfo[i]]),
  1876. "onclick": U.UF.C.closure(function (obj) {
  1877. //防止拖动图标即打开了桌面应用
  1878. U.MD.D.click(this, obj);
  1879. }, [_thuioeStudentDeskIconInfo[i]])
  1880. }, _frag); //
  1881. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1882. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1883. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1884. }
  1885. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1886. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1887. _content = $$("div", {
  1888. className: "U_MD_D_KO",
  1889. "onmousedown": U.UF.C.closure(function (obj) {
  1890. //防止拖动图标即打开了桌面应用
  1891. U.MD.D.click(this, obj);
  1892. }, [_tpcStudentDeskIconInfo[i]]),
  1893. "onclick": U.UF.C.closure(function (obj) {
  1894. //防止拖动图标即打开了桌面应用
  1895. U.MD.D.click(this, obj);
  1896. }, [_tpcStudentDeskIconInfo[i]])
  1897. }, _frag); //
  1898. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1899. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1900. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1901. } //
  1902. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1903. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1904. _content = $$("div", {
  1905. className: "U_MD_D_KO",
  1906. "onmousedown": U.UF.C.closure(function (obj) {
  1907. //防止拖动图标即打开了桌面应用
  1908. U.MD.D.click(this, obj);
  1909. }, [_chjyjStudentDeskIconInfo[i]]),
  1910. "onclick": U.UF.C.closure(function (obj) {
  1911. //防止拖动图标即打开了桌面应用
  1912. U.MD.D.click(this, obj);
  1913. }, [_chjyjStudentDeskIconInfo[i]])
  1914. }, _frag); //
  1915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1918. }
  1919. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1920. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1921. _content = $$("div", {
  1922. className: "U_MD_D_KO",
  1923. "onmousedown": U.UF.C.closure(function (obj) {
  1924. //防止拖动图标即打开了桌面应用
  1925. U.MD.D.click(this, obj);
  1926. }, [_szjkyStudentDeskIconInfo[i]]),
  1927. "onclick": U.UF.C.closure(function (obj) {
  1928. //防止拖动图标即打开了桌面应用
  1929. U.MD.D.click(this, obj);
  1930. }, [_szjkyStudentDeskIconInfo[i]])
  1931. }, _frag); //
  1932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1935. }
  1936. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1937. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1938. _content = $$("div", {
  1939. className: "U_MD_D_KO",
  1940. "onmousedown": U.UF.C.closure(function (obj) {
  1941. //防止拖动图标即打开了桌面应用
  1942. U.MD.D.click(this, obj);
  1943. }, [_dseiStudentDeskIconInfo[i]]),
  1944. "onclick": U.UF.C.closure(function (obj) {
  1945. //防止拖动图标即打开了桌面应用
  1946. U.MD.D.click(this, obj);
  1947. }, [_dseiStudentDeskIconInfo[i]])
  1948. }, _frag); //
  1949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1952. }
  1953. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1954. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1955. _content = $$("div", {
  1956. className: "U_MD_D_KO",
  1957. "onmousedown": U.UF.C.closure(function (obj) {
  1958. //防止拖动图标即打开了桌面应用
  1959. U.MD.D.click(this, obj);
  1960. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1961. "onclick": U.UF.C.closure(function (obj) {
  1962. //防止拖动图标即打开了桌面应用
  1963. U.MD.D.click(this, obj);
  1964. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1965. }, _frag); //
  1966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1969. }
  1970. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  1971. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  1972. _content = $$("div", {
  1973. className: "U_MD_D_KO",
  1974. "onmousedown": U.UF.C.closure(function (obj) {
  1975. //防止拖动图标即打开了桌面应用
  1976. U.MD.D.click(this, obj);
  1977. }, [_nsfxStudentDeskIconInfo[i]]),
  1978. "onclick": U.UF.C.closure(function (obj) {
  1979. //防止拖动图标即打开了桌面应用
  1980. U.MD.D.click(this, obj);
  1981. }, [_nsfxStudentDeskIconInfo[i]])
  1982. }, _frag); //
  1983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  1985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  1986. }
  1987. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  1988. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  1989. _content = $$("div", {
  1990. className: "U_MD_D_KO",
  1991. "onmousedown": U.UF.C.closure(function (obj) {
  1992. //防止拖动图标即打开了桌面应用
  1993. U.MD.D.click(this, obj);
  1994. }, [_stiaStudentDeskIconInfo[i]]),
  1995. "onclick": U.UF.C.closure(function (obj) {
  1996. //防止拖动图标即打开了桌面应用
  1997. U.MD.D.click(this, obj);
  1998. }, [_stiaStudentDeskIconInfo[i]])
  1999. }, _frag); //
  2000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2003. }
  2004. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2005. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2006. _content = $$("div", {
  2007. className: "U_MD_D_KO",
  2008. "onmousedown": U.UF.C.closure(function (obj) {
  2009. //防止拖动图标即打开了桌面应用
  2010. U.MD.D.click(this, obj);
  2011. }, [_szdjgStudentDeskIconInfo[i]]),
  2012. "onclick": U.UF.C.closure(function (obj) {
  2013. //防止拖动图标即打开了桌面应用
  2014. U.MD.D.click(this, obj);
  2015. }, [_szdjgStudentDeskIconInfo[i]])
  2016. }, _frag); //
  2017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2020. }
  2021. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2022. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2023. _content = $$("div", {
  2024. className: "U_MD_D_KO",
  2025. "onmousedown": U.UF.C.closure(function (obj) {
  2026. //防止拖动图标即打开了桌面应用
  2027. U.MD.D.click(this, obj);
  2028. }, [_siesStudentDeskIconInfo[i]]),
  2029. "onclick": U.UF.C.closure(function (obj) {
  2030. //防止拖动图标即打开了桌面应用
  2031. U.MD.D.click(this, obj);
  2032. }, [_siesStudentDeskIconInfo[i]])
  2033. }, _frag); //
  2034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2037. }
  2038. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2039. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2040. _content = $$("div", {
  2041. className: "U_MD_D_KO",
  2042. "onmousedown": U.UF.C.closure(function (obj) {
  2043. //防止拖动图标即打开了桌面应用
  2044. U.MD.D.click(this, obj);
  2045. }, [_guzmsStudentDeskIconInfo[i]]),
  2046. "onclick": U.UF.C.closure(function (obj) {
  2047. //防止拖动图标即打开了桌面应用
  2048. U.MD.D.click(this, obj);
  2049. }, [_guzmsStudentDeskIconInfo[i]])
  2050. }, _frag); //
  2051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2054. }
  2055. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2056. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2057. _content = $$("div", {
  2058. className: "U_MD_D_KO",
  2059. "onmousedown": U.UF.C.closure(function (obj) {
  2060. //防止拖动图标即打开了桌面应用
  2061. U.MD.D.click(this, obj);
  2062. }, [_hkStudentDeskIconInfo[i]]),
  2063. "onclick": U.UF.C.closure(function (obj) {
  2064. //防止拖动图标即打开了桌面应用
  2065. U.MD.D.click(this, obj);
  2066. }, [_hkStudentDeskIconInfo[i]])
  2067. }, _frag); //
  2068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2071. }
  2072. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2073. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2074. _content = $$("div", {
  2075. className: "U_MD_D_KO",
  2076. "onmousedown": U.UF.C.closure(function (obj) {
  2077. //防止拖动图标即打开了桌面应用
  2078. U.MD.D.click(this, obj);
  2079. }, [_hkaceStudentDeskIconInfo[i]]),
  2080. "onclick": U.UF.C.closure(function (obj) {
  2081. //防止拖动图标即打开了桌面应用
  2082. U.MD.D.click(this, obj);
  2083. }, [_hkaceStudentDeskIconInfo[i]])
  2084. }, _frag); //
  2085. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2086. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2087. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2088. }
  2089. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2090. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2091. _content = $$("div", {
  2092. className: "U_MD_D_KO",
  2093. "onmousedown": U.UF.C.closure(function (obj) {
  2094. //防止拖动图标即打开了桌面应用
  2095. U.MD.D.click(this, obj);
  2096. }, [_cocobizStudentDeskIconInfo[i]]),
  2097. "onclick": U.UF.C.closure(function (obj) {
  2098. //防止拖动图标即打开了桌面应用
  2099. U.MD.D.click(this, obj);
  2100. }, [_cocobizStudentDeskIconInfo[i]])
  2101. }, _frag); //
  2102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2105. }
  2106. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2107. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2108. _content = $$("div", {
  2109. className: "U_MD_D_KO",
  2110. "onmousedown": U.UF.C.closure(function (obj) {
  2111. //防止拖动图标即打开了桌面应用
  2112. U.MD.D.click(this, obj);
  2113. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2114. "onclick": U.UF.C.closure(function (obj) {
  2115. //防止拖动图标即打开了桌面应用
  2116. U.MD.D.click(this, obj);
  2117. }, [_xxzjkyStudentDeskIconInfo[i]])
  2118. }, _frag); //
  2119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2122. }
  2123. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2124. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2125. _content = $$("div", {
  2126. className: "U_MD_D_KO",
  2127. "onmousedown": U.UF.C.closure(function (obj) {
  2128. //防止拖动图标即打开了桌面应用
  2129. U.MD.D.click(this, obj);
  2130. }, [_studentDesktopIconInfo[i]]),
  2131. "onclick": U.UF.C.closure(function (obj) {
  2132. //防止拖动图标即打开了桌面应用
  2133. U.MD.D.click(this, obj);
  2134. }, [_studentDesktopIconInfo[i]])
  2135. }, _frag); //
  2136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2139. }
  2140. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2141. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2142. _content = $$("div", {
  2143. className: "U_MD_D_KO",
  2144. "onmousedown": U.UF.C.closure(function (obj) {
  2145. //防止拖动图标即打开了桌面应用
  2146. U.MD.D.click(this, obj);
  2147. }, [_tcStudentDeskIconInfo[i]]),
  2148. "onclick": U.UF.C.closure(function (obj) {
  2149. //防止拖动图标即打开了桌面应用
  2150. U.MD.D.click(this, obj);
  2151. }, [_tcStudentDeskIconInfo[i]])
  2152. }, _frag); //
  2153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2156. }
  2157. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2158. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2159. _content = $$("div", {
  2160. className: "U_MD_D_KO",
  2161. "onmousedown": U.UF.C.closure(function (obj) {
  2162. //防止拖动图标即打开了桌面应用
  2163. U.MD.D.click(this, obj);
  2164. }, [_szscStudentDeskIconInfo[i]]),
  2165. "onclick": U.UF.C.closure(function (obj) {
  2166. //防止拖动图标即打开了桌面应用
  2167. U.MD.D.click(this, obj);
  2168. }, [_szscStudentDeskIconInfo[i]])
  2169. }, _frag); //
  2170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2173. }
  2174. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2175. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2176. _content = $$("div", {
  2177. className: "U_MD_D_KO",
  2178. "onmousedown": U.UF.C.closure(function (obj) {
  2179. //防止拖动图标即打开了桌面应用
  2180. U.MD.D.click(this, obj);
  2181. }, [_studentDesktopIconInfo3[i]]),
  2182. "onclick": U.UF.C.closure(function (obj) {
  2183. //防止拖动图标即打开了桌面应用
  2184. U.MD.D.click(this, obj);
  2185. }, [_studentDesktopIconInfo3[i]])
  2186. }, _frag); //
  2187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2190. }
  2191. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2192. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2193. _content = $$("div", {
  2194. className: "U_MD_D_KO",
  2195. "onmousedown": U.UF.C.closure(function (obj) {
  2196. //防止拖动图标即打开了桌面应用
  2197. U.MD.D.click(this, obj);
  2198. }, [_studentDesktopIconInfo2[i]]),
  2199. "onclick": U.UF.C.closure(function (obj) {
  2200. //防止拖动图标即打开了桌面应用
  2201. U.MD.D.click(this, obj);
  2202. }, [_studentDesktopIconInfo2[i]])
  2203. }, _frag); //
  2204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2207. }
  2208. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2209. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2210. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2211. continue
  2212. }
  2213. _content = $$("div", {
  2214. className: "U_MD_D_KO",
  2215. "onmousedown": U.UF.C.closure(function (obj) {
  2216. //防止拖动图标即打开了桌面应用
  2217. U.MD.D.click(this, obj);
  2218. }, [_wanketeacherDesktopIconInfo[i]]),
  2219. "onclick": U.UF.C.closure(function (obj) {
  2220. //防止拖动图标即打开了桌面应用
  2221. U.MD.D.click(this, obj);
  2222. }, [_wanketeacherDesktopIconInfo[i]])
  2223. }, _frag); //
  2224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2227. }
  2228. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2229. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2230. _content = $$("div", {
  2231. className: "U_MD_D_KO",
  2232. "onmousedown": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_wankeAdminDesktopIconInfo[i]]),
  2236. "onclick": U.UF.C.closure(function (obj) {
  2237. //防止拖动图标即打开了桌面应用
  2238. U.MD.D.click(this, obj);
  2239. }, [_wankeAdminDesktopIconInfo[i]])
  2240. }, _frag); //
  2241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2244. }
  2245. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2246. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2247. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2248. continue
  2249. }
  2250. _content = $$("div", {
  2251. className: "U_MD_D_KO",
  2252. "onmousedown": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2256. "onclick": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_scnuaiTeacherDeskIconInfo[i]])
  2260. }, _frag); //
  2261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2264. }
  2265. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2266. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2267. _content = $$("div", {
  2268. className: "U_MD_D_KO",
  2269. "onmousedown": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_scnuaiAdminDeskIconInfo[i]]),
  2273. "onclick": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_scnuaiAdminDeskIconInfo[i]])
  2277. }, _frag); //
  2278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2281. }
  2282. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2283. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2284. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2285. continue
  2286. }
  2287. _content = $$("div", {
  2288. className: "U_MD_D_KO",
  2289. "onmousedown": U.UF.C.closure(function (obj) {
  2290. //防止拖动图标即打开了桌面应用
  2291. U.MD.D.click(this, obj);
  2292. }, [_jccssylTeacherDeskIconInfo[i]]),
  2293. "onclick": U.UF.C.closure(function (obj) {
  2294. //防止拖动图标即打开了桌面应用
  2295. U.MD.D.click(this, obj);
  2296. }, [_jccssylTeacherDeskIconInfo[i]])
  2297. }, _frag); //
  2298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2301. }
  2302. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2303. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2304. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2305. continue
  2306. }
  2307. _content = $$("div", {
  2308. className: "U_MD_D_KO",
  2309. "onmousedown": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_caleTeacherDeskIconInfo[i]]),
  2313. "onclick": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_caleTeacherDeskIconInfo[i]])
  2317. }, _frag); //
  2318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2321. }
  2322. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2323. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2324. _content = $$("div", {
  2325. className: "U_MD_D_KO",
  2326. "onmousedown": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_tpcOrganizerDeskIconInfo[i]]),
  2330. "onclick": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_tpcOrganizerDeskIconInfo[i]])
  2334. }, _frag); //
  2335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2338. }
  2339. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2340. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2341. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2342. continue
  2343. }
  2344. _content = $$("div", {
  2345. className: "U_MD_D_KO",
  2346. "onmousedown": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_tpcTeacherDeskIconInfo[i]]),
  2350. "onclick": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_tpcTeacherDeskIconInfo[i]])
  2354. }, _frag); //
  2355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2358. }
  2359. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2360. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2361. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2362. continue
  2363. }
  2364. _content = $$("div", {
  2365. className: "U_MD_D_KO",
  2366. "onmousedown": U.UF.C.closure(function (obj) {
  2367. //防止拖动图标即打开了桌面应用
  2368. U.MD.D.click(this, obj);
  2369. }, [_teacherDesktopIconInfo2[i]]),
  2370. "onclick": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_teacherDesktopIconInfo2[i]])
  2374. }, _frag); //
  2375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2378. }
  2379. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2380. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2381. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2382. continue
  2383. }
  2384. _content = $$("div", {
  2385. className: "U_MD_D_KO",
  2386. "onmousedown": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_thuioeTeacherDeskIconInfo[i]]),
  2390. "onclick": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_thuioeTeacherDeskIconInfo[i]])
  2394. }, _frag); //
  2395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2398. }
  2399. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2400. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2401. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2402. continue
  2403. }
  2404. _content = $$("div", {
  2405. className: "U_MD_D_KO",
  2406. "onmousedown": U.UF.C.closure(function (obj) {
  2407. //防止拖动图标即打开了桌面应用
  2408. U.MD.D.click(this, obj);
  2409. }, [_lotechTeacherDeskIconInfo[i]]),
  2410. "onclick": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_lotechTeacherDeskIconInfo[i]])
  2414. }, _frag); //
  2415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2418. }//
  2419. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2420. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2421. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2422. continue
  2423. }
  2424. _content = $$("div", {
  2425. className: "U_MD_D_KO",
  2426. "onmousedown": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2430. "onclick": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2434. }, _frag); //
  2435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2438. }
  2439. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2440. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2441. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2442. continue
  2443. }
  2444. _content = $$("div", {
  2445. className: "U_MD_D_KO",
  2446. "onmousedown": U.UF.C.closure(function (obj) {
  2447. //防止拖动图标即打开了桌面应用
  2448. U.MD.D.click(this, obj);
  2449. }, [_siesTeacherDeskIconInfo[i]]),
  2450. "onclick": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_siesTeacherDeskIconInfo[i]])
  2454. }, _frag); //
  2455. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2456. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2457. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2458. }
  2459. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2460. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2461. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2462. continue
  2463. }
  2464. _content = $$("div", {
  2465. className: "U_MD_D_KO",
  2466. "onmousedown": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_guzmsTeacherDeskIconInfo[i]]),
  2470. "onclick": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_guzmsTeacherDeskIconInfo[i]])
  2474. }, _frag); //
  2475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2478. }
  2479. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2480. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2481. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2482. continue
  2483. }
  2484. _content = $$("div", {
  2485. className: "U_MD_D_KO",
  2486. "onmousedown": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_longhuaTeacherDeskIconInfo[i]]),
  2490. "onclick": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_longhuaTeacherDeskIconInfo[i]])
  2494. }, _frag); //
  2495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2498. }
  2499. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2500. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2501. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2502. continue
  2503. }
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_ytyTeacherDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_ytyTeacherDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2518. }
  2519. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2520. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2521. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2522. continue
  2523. }
  2524. _content = $$("div", {
  2525. className: "U_MD_D_KO",
  2526. "onmousedown": U.UF.C.closure(function (obj) {
  2527. //防止拖动图标即打开了桌面应用
  2528. U.MD.D.click(this, obj);
  2529. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2530. "onclick": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_yunhaiTeacherDeskIconInfo[i]])
  2534. }, _frag); //
  2535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2538. } //_hkStudentDeskIconInfo
  2539. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2540. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2541. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2542. continue
  2543. }
  2544. _content = $$("div", {
  2545. className: "U_MD_D_KO",
  2546. "onmousedown": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2550. "onclick": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2554. }, _frag); //
  2555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2558. }
  2559. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2560. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2561. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2562. continue
  2563. }
  2564. _content = $$("div", {
  2565. className: "U_MD_D_KO",
  2566. "onmousedown": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_hkTeacherDeskIconInfo[i]]),
  2570. "onclick": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_hkTeacherDeskIconInfo[i]])
  2574. }, _frag); //
  2575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2578. }
  2579. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2580. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2581. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2582. continue
  2583. }
  2584. _content = $$("div", {
  2585. className: "U_MD_D_KO",
  2586. "onmousedown": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_hkaceTeacherDeskIconInfo[i]]),
  2590. "onclick": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_hkaceTeacherDeskIconInfo[i]])
  2594. }, _frag); //
  2595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2598. }
  2599. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2600. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2601. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2602. continue
  2603. }
  2604. _content = $$("div", {
  2605. className: "U_MD_D_KO",
  2606. "onmousedown": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_cocobizTeacherDeskIconInfo[i]]),
  2610. "onclick": U.UF.C.closure(function (obj) {
  2611. //防止拖动图标即打开了桌面应用
  2612. U.MD.D.click(this, obj);
  2613. }, [_cocobizTeacherDeskIconInfo[i]])
  2614. }, _frag); //
  2615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2618. }
  2619. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2620. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2621. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2622. continue
  2623. }
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. "onmousedown": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2630. "onclick": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2634. }, _frag); //
  2635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2638. }
  2639. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2640. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2641. _content = $$("div", {
  2642. className: "U_MD_D_KO",
  2643. "onmousedown": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_gdjgAdminDeskIconInfo[i]]),
  2647. "onclick": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_gdjgAdminDeskIconInfo[i]])
  2651. }, _frag); //
  2652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2655. }
  2656. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2657. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2658. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2659. continue
  2660. }
  2661. _content = $$("div", {
  2662. className: "U_MD_D_KO",
  2663. "onmousedown": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_gdjgTeacherDeskIconInfo[i]]),
  2667. "onclick": U.UF.C.closure(function (obj) {
  2668. //防止拖动图标即打开了桌面应用
  2669. U.MD.D.click(this, obj);
  2670. }, [_gdjgTeacherDeskIconInfo[i]])
  2671. }, _frag); //
  2672. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2673. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2674. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2675. }
  2676. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2677. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2678. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2679. continue
  2680. }
  2681. _content = $$("div", {
  2682. className: "U_MD_D_KO",
  2683. "onmousedown": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_szherTeacherDeskIconInfo[i]]),
  2687. "onclick": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_szherTeacherDeskIconInfo[i]])
  2691. }, _frag); //
  2692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2695. }
  2696. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2697. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2698. _content = $$("div", {
  2699. className: "U_MD_D_KO",
  2700. "onmousedown": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_heyuannAdminDeskIconInfo[i]]),
  2704. "onclick": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_heyuannAdminDeskIconInfo[i]])
  2708. }, _frag); //
  2709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2712. }
  2713. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2714. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2715. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2716. continue
  2717. }
  2718. _content = $$("div", {
  2719. className: "U_MD_D_KO",
  2720. "onmousedown": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_heyuanTeacherDeskIconInfo[i]]),
  2724. "onclick": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_heyuanTeacherDeskIconInfo[i]])
  2728. }, _frag); //
  2729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2732. } //
  2733. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2734. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2735. _content = $$("div", {
  2736. className: "U_MD_D_KO",
  2737. "onmousedown": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_dseiAdminDeskIconInfo[i]]),
  2741. "onclick": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_dseiAdminDeskIconInfo[i]])
  2745. }, _frag); //
  2746. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2747. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2748. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2749. }
  2750. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2751. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2752. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2753. continue
  2754. }
  2755. _content = $$("div", {
  2756. className: "U_MD_D_KO",
  2757. "onmousedown": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_dseiTeacherDeskIconInfo[i]]),
  2761. "onclick": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_dseiTeacherDeskIconInfo[i]])
  2765. }, _frag); //
  2766. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2767. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2768. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2769. } //
  2770. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2771. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2772. _content = $$("div", {
  2773. className: "U_MD_D_KO",
  2774. "onmousedown": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_chjyjAdminDeskIconInfo[i]]),
  2778. "onclick": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_chjyjAdminDeskIconInfo[i]])
  2782. }, _frag); //
  2783. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2784. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2785. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2786. }//
  2787. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2788. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2789. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2790. continue
  2791. }
  2792. _content = $$("div", {
  2793. className: "U_MD_D_KO",
  2794. "onmousedown": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_chjyjTeacherDeskIconInfo[i]]),
  2798. "onclick": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_chjyjTeacherDeskIconInfo[i]])
  2802. }, _frag); //
  2803. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2804. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2805. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2806. }
  2807. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2808. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2809. _content = $$("div", {
  2810. className: "U_MD_D_KO",
  2811. "onmousedown": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_szjkyAdminDeskIconInfo[i]]),
  2815. "onclick": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_szjkyAdminDeskIconInfo[i]])
  2819. }, _frag); //
  2820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2823. }//
  2824. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2825. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2826. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2827. continue
  2828. }
  2829. _content = $$("div", {
  2830. className: "U_MD_D_KO",
  2831. "onmousedown": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_szjkyTeacherDeskIconInfo[i]]),
  2835. "onclick": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_szjkyTeacherDeskIconInfo[i]])
  2839. }, _frag); //
  2840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2843. }
  2844. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2845. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2846. _content = $$("div", {
  2847. className: "U_MD_D_KO",
  2848. "onmousedown": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_futianAdminDeskIconInfo[i]]),
  2852. "onclick": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_futianAdminDeskIconInfo[i]])
  2856. }, _frag); //
  2857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2860. }
  2861. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2862. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2863. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2864. continue
  2865. }
  2866. _content = $$("div", {
  2867. className: "U_MD_D_KO",
  2868. "onmousedown": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_futianTeacherDeskIconInfo[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_futianTeacherDeskIconInfo[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2880. }
  2881. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2882. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2883. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2884. continue
  2885. }
  2886. _content = $$("div", {
  2887. className: "U_MD_D_KO",
  2888. "onmousedown": U.UF.C.closure(function (obj) {
  2889. //防止拖动图标即打开了桌面应用
  2890. U.MD.D.click(this, obj);
  2891. }, [_MingdeTeacherDeskIcon[i]]),
  2892. "onclick": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_MingdeTeacherDeskIcon[i]])
  2896. }, _frag); //
  2897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2900. }
  2901. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2902. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2903. _content = $$("div", {
  2904. className: "U_MD_D_KO",
  2905. "onmousedown": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_lhsAdminDesktopIconInfo[i]]),
  2909. "onclick": U.UF.C.closure(function (obj) {
  2910. //防止拖动图标即打开了桌面应用
  2911. U.MD.D.click(this, obj);
  2912. }, [_lhsAdminDesktopIconInfo[i]])
  2913. }, _frag); //
  2914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2917. }
  2918. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2919. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2920. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2921. continue
  2922. }
  2923. _content = $$("div", {
  2924. className: "U_MD_D_KO",
  2925. "onmousedown": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_lhsteacherDesktopIconInfo[i]]),
  2929. "onclick": U.UF.C.closure(function (obj) {
  2930. //防止拖动图标即打开了桌面应用
  2931. U.MD.D.click(this, obj);
  2932. }, [_lhsteacherDesktopIconInfo[i]])
  2933. }, _frag); //
  2934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2937. }
  2938. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2939. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2940. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2941. continue
  2942. }
  2943. _content = $$("div", {
  2944. className: "U_MD_D_KO",
  2945. "onmousedown": U.UF.C.closure(function (obj) {
  2946. //防止拖动图标即打开了桌面应用
  2947. U.MD.D.click(this, obj);
  2948. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2949. "onclick": U.UF.C.closure(function (obj) {
  2950. //防止拖动图标即打开了桌面应用
  2951. U.MD.D.click(this, obj);
  2952. }, [_zhoujiateacherDesktopIconInfo[i]])
  2953. }, _frag); //
  2954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2957. }
  2958. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2959. for (i = 0; i < _hanDeskIcon.length; i++) {
  2960. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2961. continue
  2962. }
  2963. _content = $$("div", {
  2964. className: "U_MD_D_KO",
  2965. "onmousedown": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_hanDeskIcon[i]]),
  2969. "onclick": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_hanDeskIcon[i]])
  2973. }, _frag); //
  2974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2977. }
  2978. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2979. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2980. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2981. continue
  2982. }
  2983. _content = $$("div", {
  2984. className: "U_MD_D_KO",
  2985. "onmousedown": U.UF.C.closure(function (obj) {
  2986. //防止拖动图标即打开了桌面应用
  2987. U.MD.D.click(this, obj);
  2988. }, [_orgStemDeskIcon[i]]),
  2989. "onclick": U.UF.C.closure(function (obj) {
  2990. //防止拖动图标即打开了桌面应用
  2991. U.MD.D.click(this, obj);
  2992. }, [_orgStemDeskIcon[i]])
  2993. }, _frag); //
  2994. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2995. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2996. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2997. }
  2998. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2999. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3000. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3001. continue
  3002. }
  3003. _content = $$("div", {
  3004. className: "U_MD_D_KO",
  3005. "onmousedown": U.UF.C.closure(function (obj) {
  3006. //防止拖动图标即打开了桌面应用
  3007. U.MD.D.click(this, obj);
  3008. }, [_szulsDeskIcon[i]]),
  3009. "onclick": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_szulsDeskIcon[i]])
  3013. }, _frag); //
  3014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3017. }
  3018. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3019. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3020. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3021. continue
  3022. }
  3023. _content = $$("div", {
  3024. className: "U_MD_D_KO",
  3025. "onmousedown": U.UF.C.closure(function (obj) {
  3026. //防止拖动图标即打开了桌面应用
  3027. U.MD.D.click(this, obj);
  3028. }, [_orgDesktopIconInfo[i]]),
  3029. "onclick": U.UF.C.closure(function (obj) {
  3030. //防止拖动图标即打开了桌面应用
  3031. U.MD.D.click(this, obj);
  3032. }, [_orgDesktopIconInfo[i]])
  3033. }, _frag); //
  3034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3037. }
  3038. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3039. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3040. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3041. continue
  3042. }
  3043. _content = $$("div", {
  3044. className: "U_MD_D_KO",
  3045. "onmousedown": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_schoolDesktopIconInfo[i]]),
  3049. "onclick": U.UF.C.closure(function (obj) {
  3050. //防止拖动图标即打开了桌面应用
  3051. U.MD.D.click(this, obj);
  3052. }, [_schoolDesktopIconInfo[i]])
  3053. }, _frag); //
  3054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3057. }
  3058. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3059. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3060. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3061. continue
  3062. }
  3063. _content = $$("div", {
  3064. className: "U_MD_D_KO",
  3065. "onmousedown": U.UF.C.closure(function (obj) {
  3066. //防止拖动图标即打开了桌面应用
  3067. U.MD.D.click(this, obj);
  3068. }, [_GMteacherDesktopIconInfo[i]]),
  3069. "onclick": U.UF.C.closure(function (obj) {
  3070. //防止拖动图标即打开了桌面应用
  3071. U.MD.D.click(this, obj);
  3072. }, [_GMteacherDesktopIconInfo[i]])
  3073. }, _frag); //
  3074. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3075. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3076. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3077. }
  3078. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3079. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3080. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3081. continue
  3082. }
  3083. _content = $$("div", {
  3084. className: "U_MD_D_KO",
  3085. "onmousedown": U.UF.C.closure(function (obj) {
  3086. //防止拖动图标即打开了桌面应用
  3087. U.MD.D.click(this, obj);
  3088. }, [_SONGteacherDesktopIconInfo[i]]),
  3089. "onclick": U.UF.C.closure(function (obj) {
  3090. //防止拖动图标即打开了桌面应用
  3091. U.MD.D.click(this, obj);
  3092. }, [_SONGteacherDesktopIconInfo[i]])
  3093. }, _frag); //
  3094. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3095. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3096. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3097. }
  3098. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3099. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3100. _content = $$("div", {
  3101. className: "U_MD_D_KO",
  3102. "onmousedown": U.UF.C.closure(function (obj) {
  3103. //防止拖动图标即打开了桌面应用
  3104. U.MD.D.click(this, obj);
  3105. }, [_GMstudentDesktopIconInfo[i]]),
  3106. "onclick": U.UF.C.closure(function (obj) {
  3107. //防止拖动图标即打开了桌面应用
  3108. U.MD.D.click(this, obj);
  3109. }, [_GMstudentDesktopIconInfo[i]])
  3110. }, _frag); //
  3111. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3112. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3113. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3114. }
  3115. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3116. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3117. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3118. continue
  3119. }
  3120. _content = $$("div", {
  3121. className: "U_MD_D_KO",
  3122. "onmousedown": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_tcTeacherDeskIconInfo[i]]),
  3126. "onclick": U.UF.C.closure(function (obj) {
  3127. //防止拖动图标即打开了桌面应用
  3128. U.MD.D.click(this, obj);
  3129. }, [_tcTeacherDeskIconInfo[i]])
  3130. }, _frag); //
  3131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3134. }
  3135. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3136. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3137. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3138. continue
  3139. }
  3140. _content = $$("div", {
  3141. className: "U_MD_D_KO",
  3142. "onmousedown": U.UF.C.closure(function (obj) {
  3143. //防止拖动图标即打开了桌面应用
  3144. U.MD.D.click(this, obj);
  3145. }, [_tcOrganizerDeskIconInfo[i]]),
  3146. "onclick": U.UF.C.closure(function (obj) {
  3147. //防止拖动图标即打开了桌面应用
  3148. U.MD.D.click(this, obj);
  3149. }, [_tcOrganizerDeskIconInfo[i]])
  3150. }, _frag); //
  3151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3154. }
  3155. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3156. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3157. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3158. continue
  3159. }
  3160. _content = $$("div", {
  3161. className: "U_MD_D_KO",
  3162. "onmousedown": U.UF.C.closure(function (obj) {
  3163. //防止拖动图标即打开了桌面应用
  3164. U.MD.D.click(this, obj);
  3165. }, [_szscTeacherDeskIconInfo[i]]),
  3166. "onclick": U.UF.C.closure(function (obj) {
  3167. //防止拖动图标即打开了桌面应用
  3168. U.MD.D.click(this, obj);
  3169. }, [_szscTeacherDeskIconInfo[i]])
  3170. }, _frag); //
  3171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3174. }
  3175. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3176. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3177. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3178. continue
  3179. }
  3180. _content = $$("div", {
  3181. className: "U_MD_D_KO",
  3182. "onmousedown": U.UF.C.closure(function (obj) {
  3183. //防止拖动图标即打开了桌面应用
  3184. U.MD.D.click(this, obj);
  3185. }, [_szscOrganizerDeskIconInfo[i]]),
  3186. "onclick": U.UF.C.closure(function (obj) {
  3187. //防止拖动图标即打开了桌面应用
  3188. U.MD.D.click(this, obj);
  3189. }, [_szscOrganizerDeskIconInfo[i]])
  3190. }, _frag); //
  3191. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3192. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3193. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3194. }
  3195. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3196. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3197. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3198. continue
  3199. }
  3200. _content = $$("div", {
  3201. className: "U_MD_D_KO",
  3202. "onmousedown": U.UF.C.closure(function (obj) {
  3203. //防止拖动图标即打开了桌面应用
  3204. U.MD.D.click(this, obj);
  3205. }, [_nsfxTeacherDeskIconInfo[i]]),
  3206. "onclick": U.UF.C.closure(function (obj) {
  3207. //防止拖动图标即打开了桌面应用
  3208. U.MD.D.click(this, obj);
  3209. }, [_nsfxTeacherDeskIconInfo[i]])
  3210. }, _frag); //
  3211. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3212. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3213. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3214. }
  3215. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3216. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3217. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3218. continue
  3219. }
  3220. _content = $$("div", {
  3221. className: "U_MD_D_KO",
  3222. "onmousedown": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_stiaTeacherDeskIconInfo[i]]),
  3226. "onclick": U.UF.C.closure(function (obj) {
  3227. //防止拖动图标即打开了桌面应用
  3228. U.MD.D.click(this, obj);
  3229. }, [_stiaTeacherDeskIconInfo[i]])
  3230. }, _frag); //
  3231. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3232. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3233. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3234. }
  3235. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3236. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3237. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3238. continue
  3239. }
  3240. _content = $$("div", {
  3241. className: "U_MD_D_KO",
  3242. "onmousedown": U.UF.C.closure(function (obj) {
  3243. //防止拖动图标即打开了桌面应用
  3244. U.MD.D.click(this, obj);
  3245. }, [_szdjgTeacherDeskIconInfo[i]]),
  3246. "onclick": U.UF.C.closure(function (obj) {
  3247. //防止拖动图标即打开了桌面应用
  3248. U.MD.D.click(this, obj);
  3249. }, [_szdjgTeacherDeskIconInfo[i]])
  3250. }, _frag); //
  3251. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3252. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3253. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3254. }
  3255. } else {
  3256. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3257. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3258. continue
  3259. }
  3260. _content = $$("div", {
  3261. className: "U_MD_D_KO",
  3262. "onmousedown": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_teacherDesktopIconInfo[i]]),
  3266. "onclick": U.UF.C.closure(function (obj) {
  3267. //防止拖动图标即打开了桌面应用
  3268. U.MD.D.click(this, obj);
  3269. }, [_teacherDesktopIconInfo[i]])
  3270. }, _frag); //
  3271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3274. }
  3275. }
  3276. } else {
  3277. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3278. _content = $$("div", {
  3279. className: "U_MD_D_KO",
  3280. style: { 'width': '124px', 'height': '145px' },
  3281. "onmousedown": U.UF.C.closure(function (obj) {
  3282. //防止拖动图标即打开了桌面应用
  3283. U.MD.D.click(this, obj);
  3284. }, [_easyDesktopIconInfo[i]]),
  3285. "onclick": U.UF.C.closure(function (obj) {
  3286. //防止拖动图标即打开了桌面应用
  3287. U.MD.D.click(this, obj);
  3288. }, [_easyDesktopIconInfo[i]])
  3289. }, _frag); //
  3290. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3293. }
  3294. }
  3295. if (type == 1) {
  3296. //加载好后给图标定位
  3297. U.MD.D.iconPostion($(_frag).Child());
  3298. } else {
  3299. //加载好后给图标定位
  3300. U.MD.D.iconPostion2($(_frag).Child());
  3301. }
  3302. //把图标加载到页面
  3303. el.appendChild(_frag);
  3304. }
  3305. /**
  3306. * 显示任务栏
  3307. *
  3308. * @param {element} 桌面元素
  3309. */
  3310. U.MD.D.I.displayTaskbar = function (el) {
  3311. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3312. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3313. //任务栏位置变化
  3314. U.selectEl(el).css({ "bottom": "0px" });
  3315. //桌面位置变话
  3316. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3317. }
  3318. }
  3319. //#region 桌面图标拖动逻辑
  3320. /**
  3321. * 桌面排列图标
  3322. *
  3323. * @param {element} 桌面元素
  3324. * @param {object} 上下相距的距离
  3325. * @param {object} 左右相距的距离
  3326. * @return {object} 命名空间
  3327. */
  3328. U.MD.D.iconPostion = function (childs, top, left) {
  3329. var i; //用于循环处理
  3330. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3331. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3332. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3333. for (i = 0; i < childs.length; i++) {
  3334. //如果竖排top超过了范围处理
  3335. if (top + 95 > US.height - 10) {
  3336. //left超过了页面范围处理,则向上重叠打印处理
  3337. if ((left + 180) > US.width) {
  3338. top -= 110;
  3339. left -= 90;
  3340. }
  3341. //没有超过范围,那么left+90添加到下一个竖排打印
  3342. else {
  3343. left += 90;
  3344. top = 15;
  3345. };
  3346. }
  3347. //给图标的位置赋值
  3348. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3349. if (i < childs.length - 1) {
  3350. //页面图标每次向下加95
  3351. top += 95;
  3352. }
  3353. }
  3354. //返回最后调用的图标的位置
  3355. return [top, left];
  3356. }
  3357. /**
  3358. * 桌面排列图标
  3359. *
  3360. * @param {element} 桌面元素
  3361. * @param {object} 上下相距的距离
  3362. * @param {object} 左右相距的距离
  3363. * @return {object} 命名空间
  3364. */
  3365. U.MD.D.iconPostion2 = function (childs, top, left) {
  3366. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3367. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3368. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3369. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3370. for (i = 0; i < childs.length; i++) {
  3371. //如果竖排top超过了范围处理
  3372. if (left + 150 > US.width - 10) {
  3373. //left超过了页面范围处理,则向上重叠打印处理
  3374. if ((top + 180) > US.Height) {
  3375. top -= 150;
  3376. left -= 150;
  3377. }
  3378. //没有超过范围,那么left+90添加到下一个竖排打印
  3379. else {
  3380. top += 150;
  3381. left = ol;
  3382. };
  3383. }
  3384. //给图标的位置赋值
  3385. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3386. if (i < childs.length - 1) {
  3387. //页面图标每次向下加95
  3388. left += 150;
  3389. }
  3390. }
  3391. //返回最后调用的图标的位置
  3392. return [top, left];
  3393. }
  3394. /**
  3395. * 桌面点击事件逻辑
  3396. *
  3397. * @param {element} 桌面元素
  3398. * @param {object} 上下相距的距离
  3399. * @param {object} 左右相距的距离
  3400. * @return {object} 命名空间
  3401. */
  3402. U.MD.D.click = function (el, obj) {
  3403. var _buttonnumber = event.button; //点击的按钮的事件值
  3404. var _userinfo = US.userInfo;
  3405. U.UF.EV.stopBubble(); //阻止向上冒泡
  3406. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3407. if (_buttonnumber < 2) {
  3408. //如果是click事件的处理
  3409. if (event.type == "click") {
  3410. //如果元素在mousemove事件中没有移动则出发click事件
  3411. if (!U.MD.D.I.IsDrag) {
  3412. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3413. U.alert("请先登录您的账号!");
  3414. setTimeout(() => {
  3415. U.MD.U.L.login();
  3416. }, 2000);
  3417. } else {
  3418. //打开应用处理
  3419. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3420. }
  3421. }
  3422. }
  3423. //如果是mouse事件的处理
  3424. else {
  3425. if (US.Config.type == '1') {
  3426. //拖动处理,添加拖动和拖动结束事件
  3427. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3428. }
  3429. }
  3430. U.MD.D.I.IsDrag = false;
  3431. }
  3432. }
  3433. /**
  3434. * 拖动的处理
  3435. *
  3436. */
  3437. U.MD.D.iconMove = function () {
  3438. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3439. U.MD.D.I.IsDrag = true;
  3440. }
  3441. /**
  3442. * 拖动结束后,这里是定位处理,以网状的形式定位
  3443. *
  3444. * @param {element} 拖动的元素
  3445. * @return {object} 命名空间
  3446. */
  3447. U.MD.D.iconUp = function (el) {
  3448. var _top = 15,
  3449. _left = 20,
  3450. _margin,
  3451. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3452. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3453. if (_positioninfo["OT"] > 15) {
  3454. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3455. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3456. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3457. }
  3458. if (_positioninfo["OL"] > 20) {
  3459. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3460. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3461. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3462. }
  3463. //while循环判断么一个重叠的元素
  3464. do {
  3465. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3466. _top = _positioninfo[0] + 95; //得到定位后的top
  3467. _left = _positioninfo[1]; //得到定位后的left
  3468. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3469. }
  3470. /**
  3471. * 判断拖动后图标是否重叠
  3472. *
  3473. * @param {element} 拖动的元素
  3474. * @param {element} 桌面所有的元素
  3475. * @param {array} 拖动元素的位置
  3476. ----------[0] 上 top
  3477. ----------[1] 左 left
  3478. * @return {object} 命名空间
  3479. */
  3480. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3481. //循环所有的图标
  3482. for (var i = 0; i < childs.length; i++) {
  3483. //判断有没有和该图标诶子重叠的元素
  3484. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3485. return childs[i]; //如果有返回
  3486. }
  3487. }
  3488. }
  3489. //#endregion
  3490. //#endregion
  3491. //#region 桌面应用
  3492. /**
  3493. * 打开应用
  3494. *
  3495. * @param {string} 类型
  3496. -----------------Disk 网盘系统
  3497. -----------------PDisk 学习系统网盘
  3498. -----------------Poto 图片
  3499. -----------------Video 视频
  3500. -----------------Music 音乐
  3501. -----------------Word word
  3502. -----------------Excel excel
  3503. -----------------Txt 记事本
  3504. -----------------PB 学习系统
  3505. -----------------Blog 朋友圈系统
  3506. -----------------FTP ftp系统
  3507. -----------------Group 好友群
  3508. -----------------SY 首页系统
  3509. -----------------Set 个人设置
  3510. -----------------XSet 系统设置
  3511. -----------------App 我们所有的app
  3512. -----------------BC c.1473.cn 平台
  3513. -----------------CWeb d.1473.cn 变成平台
  3514. -----------------其他的外联系统 我们统一用iframe打开
  3515. * @param {array} 类型
  3516. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3517. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3518. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3519. 如果第一个参数为其他,则无第二个参数
  3520. * @returns {array}
  3521. */
  3522. window.addEventListener('message', function (e) { // 监听 message 事件
  3523. // alert(e.data.type);
  3524. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3525. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3526. //3是展示全部阶段 2学生 1老师 4专家
  3527. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3528. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3529. //3是展示全部阶段 2学生 1老师 4专家
  3530. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3531. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3532. //3是展示全部阶段 2学生 1老师 4专家
  3533. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3534. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3535. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3536. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3537. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3538. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3539. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3540. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3541. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3542. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3543. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3544. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3545. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3546. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3547. //3是展示全部阶段 2学生 1老师 4专家
  3548. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3549. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3550. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3551. U.MD.D.I.selectUser();
  3552. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3553. var _formel = document.getElementById("study");
  3554. U.UF.F.windowZooming(_formel);
  3555. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3556. var _formel = document.getElementById("studyDetail");
  3557. U.UF.F.windowZooming(_formel);
  3558. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3559. var _formel = document.getElementById("studyDetail");
  3560. U.UF.F.windowZooming(_formel);
  3561. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3562. var _formel = document.getElementById("studentStudy");
  3563. U.UF.F.windowZooming(_formel);
  3564. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3565. // var _formel = document.getElementById("study");
  3566. //如果最大化了,那么就把他缩小
  3567. // if (_formel.ismaximize) {
  3568. // return;
  3569. // }
  3570. // U.UF.F.windowZooming(_formel);
  3571. // U.UF.F.topWindow(_formel);
  3572. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3573. // var _formel = document.getElementById("studyDetail");
  3574. //如果最大化了,那么就把他缩小
  3575. // if (_formel.ismaximize) {
  3576. // return;
  3577. // }
  3578. // U.UF.F.windowZooming(_formel);
  3579. // U.UF.F.topWindow(_formel);
  3580. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3581. // var _formel = document.getElementById("studentStudy");
  3582. // if (_formel.ismaximize) {
  3583. // return;
  3584. // }
  3585. // U.UF.F.windowZooming(_formel);
  3586. // U.UF.F.topWindow(_formel);
  3587. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3588. var _formel = document.getElementById("study");
  3589. // if (_formel.ismaximize) {
  3590. // return;
  3591. // }
  3592. // U.UF.F.windowZooming(_formel);
  3593. U.UF.F.topWindow(_formel);
  3594. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3595. var _formel = document.getElementById("studentIndex");
  3596. U.UF.F.windowZooming(_formel);
  3597. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3598. var _formel = document.getElementById("studyDetailS");
  3599. U.UF.F.windowZooming(_formel);
  3600. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3601. var _formel = document.getElementById("studioIndex");
  3602. U.UF.F.windowZooming(_formel);
  3603. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3604. var _formel = document.getElementById("studyDetailStudio");
  3605. U.UF.F.windowZooming(_formel);
  3606. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3607. var _formel = document.getElementById("studyDetailStudio");
  3608. U.UF.F.windowZooming(_formel);
  3609. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3610. var _formel = document.getElementById("studyDetailNT");
  3611. U.UF.F.windowZooming(_formel);
  3612. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3613. var _formel = document.getElementById("studyDetailS");
  3614. U.UF.F.windowZooming(_formel);
  3615. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3616. var _formel = document.getElementById("studyDetailS");
  3617. U.UF.F.topWindow(_formel);
  3618. } else if (e.data.tools && e.data.tools == "1") {
  3619. // U.MD.D.I.openApplication("whiteboard")
  3620. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3621. } else if (e.data.tools && e.data.tools == "2") {
  3622. U.MD.D.I.openApplication("note")
  3623. } else if (e.data.tools && e.data.tools == "3") {
  3624. // U.MD.D.I.openApplication("mind")
  3625. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3626. } else if (e.data.tools && e.data.tools == "4") {
  3627. U.MD.D.I.openApplication("investigation")
  3628. } else if (e.data.tools && e.data.tools == "6") {
  3629. // U.MD.D.I.openApplication("doc")
  3630. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3631. } else if (e.data.tools && e.data.tools == "7") {
  3632. // U.MD.D.I.openApplication("mindNetwork")
  3633. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3634. } else if (e.data.tools && e.data.tools == "8") {
  3635. U.MD.D.I.openApplication("library")
  3636. } else if (e.data.tools && e.data.tools == "17") {
  3637. U.MD.D.I.openApplication("stuLibrary")
  3638. } else if (e.data.tools && e.data.tools == "18") {
  3639. U.MD.D.I.openApplication("train")
  3640. } else if (e.data.tools && e.data.tools == "21") {
  3641. U.MD.D.I.openApplication("program")
  3642. } else if (e.data.tools && e.data.tools == "22") {
  3643. U.MD.D.I.openApplication("AIprogram2")
  3644. } else if (e.data.tools && e.data.tools == "23") {
  3645. U.MD.D.I.openApplication("Pythonprogram")
  3646. } else if (e.data.tools && e.data.tools == "24") {
  3647. U.MD.D.I.openApplication("AIprogram")
  3648. } else if (e.data.tools && e.data.tools == "25") {
  3649. U.MD.D.I.openApplication("sys")
  3650. } else if (e.data.tools && e.data.tools == "26") {
  3651. // U.MD.D.I.openApplication("courseDesign")
  3652. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3653. } else if (e.data.tools && e.data.tools == "31") {
  3654. U.MD.D.I.openApplication("netWorkPanel")
  3655. } else if (e.data.tools && e.data.tools == "32") {
  3656. U.MD.D.I.openApplication("codeEdit")
  3657. } else if (e.data.tools && e.data.tools == "57") {
  3658. U.MD.D.I.openApplication("CocoPi")
  3659. } else if (e.data.tools && e.data.tools == "63") {
  3660. U.MD.D.I.openApplication("Wood")
  3661. } else if (e.data.tools && e.data.tools == "58") {
  3662. U.MD.D.I.openApplication("car")
  3663. } else if (e.data.tools && e.data.tools == "59") {
  3664. U.MD.D.I.openApplication("lineSearch")
  3665. } else if (e.data.tools && e.data.tools == "60") {
  3666. U.MD.D.I.openApplication("deepLearning")
  3667. } else if (e.data.tools && e.data.tools == "61") {
  3668. U.MD.D.I.openApplication("allHistory")
  3669. } else if (e.data.tools && e.data.tools == "28") {
  3670. U.MD.D.I.openApplication("translation")
  3671. } else if (e.data.tools && e.data.tools == "37") {
  3672. U.MD.D.I.openApplication("mohe")
  3673. } else if (e.data.tools && e.data.tools == "38") {
  3674. U.MD.D.I.openApplication("24game")
  3675. } else if (e.data.tools && e.data.tools == "39") {
  3676. U.MD.D.I.openApplication("GeoGebra")
  3677. } else if (e.data.tools && e.data.tools == "43") {
  3678. U.MD.D.I.openApplication("studentEvaluate")
  3679. } else if (e.data.tools && e.data.tools == "44") {
  3680. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3681. } else if (e.data.tools && e.data.tools == "46") {
  3682. U.MD.D.I.openApplication("project")
  3683. } else if (e.data.tools && e.data.tools == "71") {
  3684. U.MD.D.I.openApplication("aigptCourse")
  3685. } else if (e.data.tools && e.data.tools == "1s") {
  3686. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3687. } else if (e.data.tools && e.data.tools == "3s") {
  3688. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3689. } else if (e.data.tools && e.data.tools == "6s") {
  3690. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3691. } else if (e.data.tools && e.data.tools == "1studio") {
  3692. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3693. } else if (e.data.tools && e.data.tools == "3studio") {
  3694. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3695. } else if (e.data.tools && e.data.tools == "6studio") {
  3696. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3697. } else if (e.data.tools && e.data.tools == "3y") {
  3698. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3699. } else if (e.data.tools && e.data.tools == "1y") {
  3700. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3701. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3702. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3703. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3704. U.MD.D.I.openApplication("AIAnalyse")
  3705. } else if (e.data.tools && e.data.tools == "1teacher") {
  3706. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3707. } else if (e.data.tools && e.data.tools == "3teacher") {
  3708. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3709. } else if (e.data.tools && e.data.tools == "7teacher") {
  3710. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3711. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3712. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3713. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3714. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3715. } else if (e.data.tools && e.data.tools == "1E") {
  3716. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3717. } else if (e.data.tools && e.data.tools == "3E") {
  3718. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3719. } else if (e.data.tools && e.data.tools == "57y") {
  3720. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3721. } else if (e.data.tools && e.data.tools == "57u") {
  3722. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3723. } else if (e.data.tools && e.data.tools == "57teacher") {
  3724. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3725. } else if (e.data.tools && e.data.tools == "64") {
  3726. U.MD.D.I.openApplication("AIChat")
  3727. } else if (e.data.tools && e.data.tools == "66") {
  3728. U.MD.D.I.openApplication("formulaEdi")
  3729. } else if (e.data.tools && e.data.tools == "67") {
  3730. U.MD.D.I.openApplication("molStr")
  3731. } else if (e.data.tools && e.data.tools == "68") {
  3732. U.MD.D.I.openApplication("timeAxis")
  3733. } else if (e.data.tools && e.data.tools == "openCourse") {
  3734. let _data = {
  3735. typea: e.data.typea || '',
  3736. typeb: e.data.typeb || '',
  3737. typed: e.data.typed || '',
  3738. }
  3739. U.MD.D.I.openInApplication("index", _data)
  3740. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3741. let _data = {
  3742. classid: e.data.classid || '',
  3743. }
  3744. U.MD.D.I.openInApplication("dataClass", _data)
  3745. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3746. let _data = {
  3747. cid: e.data.cid || '',
  3748. gid: e.data.gid || '',
  3749. }
  3750. U.MD.D.I.openInApplication("opencCscl", _data)
  3751. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3752. U.MD.D.I.openApplication("dataBoardTest")
  3753. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3754. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3755. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3756. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3757. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3758. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3759. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3760. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3761. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3762. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3763. }else if (e.data.tools && e.data.tools == "loginSz") {
  3764. U.MD.D.I.openInApplication("loginSz")
  3765. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3766. if($('#classroom_observation_board')[0]){
  3767. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3768. }
  3769. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3770. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3771. if($('#classroom_observation_ob_comment')[0]){
  3772. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3773. }
  3774. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3775. }
  3776. });
  3777. U.MD.D.I.selectUser = function () {
  3778. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3779. if (res.value[0].length > 0) {
  3780. US.userInfo = res.value[0][0];
  3781. $(".userName")[0].innerHTML = US.userInfo.username;
  3782. }
  3783. }, [], { "type": "GET", "withCredentials": true });
  3784. }
  3785. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3786. var _userinfo = US.userInfo, //登录用户信息
  3787. _userid = US.userInfo.userid, //登录用户id
  3788. _oid = _userinfo.organizeid,
  3789. _type = US.userInfo.type,
  3790. _org = US.userInfo.org,
  3791. _role = US.userInfo.role,
  3792. _classId = US.userInfo.classid;
  3793. if (_type == 4) {
  3794. tType = 4
  3795. }
  3796. switch (str) {
  3797. case "studyDetailNT": //无终端模式
  3798. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3799. setTimeout(() => {
  3800. U.MD.U.L.login();
  3801. }, 2000);
  3802. } else {
  3803. _formdiv = new U.UF.UI.form(
  3804. "课程详情",
  3805. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3806. "id": "studyDetailNT",
  3807. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3808. "onresize": function () { }
  3809. }, {
  3810. closecallback: function () { }
  3811. }, { "style": { "height": "36px" } }).form; //创建窗体
  3812. _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); } }
  3813. break;
  3814. }
  3815. case "studyDetail":
  3816. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3817. setTimeout(() => {
  3818. U.MD.U.L.login();
  3819. }, 2000);
  3820. } else {
  3821. _formdiv = new U.UF.UI.form(
  3822. "课程详情",
  3823. $$("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 }), {
  3824. "id": "studyDetail",
  3825. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3826. "onresize": function () { }
  3827. }, {
  3828. closecallback: function () { }
  3829. }, { "style": { "height": "36px" } }).form; //创建窗体
  3830. _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); } }
  3831. break;
  3832. }
  3833. case "studyDetailTrain":
  3834. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3835. setTimeout(() => {
  3836. U.MD.U.L.login();
  3837. }, 2000);
  3838. } else {
  3839. _formdiv = new U.UF.UI.form(
  3840. "培训详情",
  3841. $$("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 }), {
  3842. "id": "studyDetailTrain",
  3843. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3844. "onresize": function () { }
  3845. }, {
  3846. closecallback: function () { }
  3847. }, { "style": { "height": "36px" } }).form; //创建窗体
  3848. _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); } }
  3849. break;
  3850. }
  3851. case "studyDetailS":
  3852. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3853. setTimeout(() => {
  3854. U.MD.U.L.login();
  3855. }, 2000);
  3856. } else {
  3857. _formdiv = new U.UF.UI.form(
  3858. "项目详情",
  3859. $$("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 }), {
  3860. "id": "studyDetailS",
  3861. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3862. "onresize": function () { }
  3863. }, {
  3864. closecallback: function () { }
  3865. }, { "style": { "height": "36px" } }).form; //创建窗体
  3866. _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); } }
  3867. break;
  3868. }
  3869. case "studyDetailStudio":
  3870. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3871. setTimeout(() => {
  3872. U.MD.U.L.login();
  3873. }, 2000);
  3874. } else {
  3875. _formdiv = new U.UF.UI.form(
  3876. "工作详情",
  3877. $$("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 }), {
  3878. "id": "studyDetailStudio",
  3879. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3880. "onresize": function () { }
  3881. }, {
  3882. closecallback: function () { }
  3883. }, { "style": { "height": "36px" } }).form; //创建窗体
  3884. _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); } }
  3885. break;
  3886. }
  3887. case "studyDetailS5":
  3888. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3889. setTimeout(() => {
  3890. U.MD.U.L.login();
  3891. }, 2000);
  3892. } else {
  3893. _formdiv = new U.UF.UI.form(
  3894. "项目详情",
  3895. $$("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 }), {
  3896. "id": "studyDetailS",
  3897. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3898. "onresize": function () { }
  3899. }, {
  3900. closecallback: function () { }
  3901. }, { "style": { "height": "36px" } }).form; //创建窗体
  3902. _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); } }
  3903. break;
  3904. }
  3905. case "studyDetailGM":
  3906. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3907. setTimeout(() => {
  3908. U.MD.U.L.login();
  3909. }, 2000);
  3910. } else {
  3911. _formdiv = new U.UF.UI.form(
  3912. "课程详情",
  3913. $$("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 }), {
  3914. "id": "studyDetail",
  3915. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3916. "onresize": function () { }
  3917. }, {
  3918. closecallback: function () { }
  3919. }, { "style": { "height": "36px" } }).form; //创建窗体
  3920. _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); } }
  3921. break;
  3922. }
  3923. case "hanUrl":
  3924. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3925. setTimeout(() => {
  3926. U.MD.U.L.login();
  3927. }, 2000);
  3928. } else {
  3929. _formdiv = new U.UF.UI.form(
  3930. "汉字宫",
  3931. $$("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" }), {
  3932. "id": "hanUrl",
  3933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3934. "onresize": function () { }
  3935. }, {
  3936. closecallback: function () { }
  3937. }, { "style": { "height": "36px" } }).form; //创建窗体
  3938. _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); } }
  3939. break;
  3940. }
  3941. case "index":
  3942. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3943. setTimeout(() => {
  3944. U.MD.U.L.login();
  3945. }, 2000);
  3946. } else {
  3947. _formdiv = new U.UF.UI.form(
  3948. "课程中心",
  3949. $$("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 }), {
  3950. "id": "study",
  3951. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3952. "onresize": function () { }
  3953. }, {
  3954. closecallback: function () { }
  3955. }, { "style": { "height": "36px" } }).form; //创建窗体
  3956. _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); } }
  3957. break;
  3958. }
  3959. case "dataClass":
  3960. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3961. setTimeout(() => {
  3962. U.MD.U.L.login();
  3963. }, 2000);
  3964. } else {
  3965. _formdiv = new U.UF.UI.form(
  3966. "数据报告",
  3967. $$("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 }), {
  3968. "id": "dataClass",
  3969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3970. "onresize": function () { }
  3971. }, {
  3972. closecallback: function () { }
  3973. }, { "style": { "height": "36px" } }).form; //创建窗体
  3974. _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); } }
  3975. break;
  3976. }
  3977. case "opencCscl":
  3978. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3979. setTimeout(() => {
  3980. U.MD.U.L.login();
  3981. }, 2000);
  3982. } else {
  3983. _formdiv = new U.UF.UI.form(
  3984. "协同建构",
  3985. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  3986. "id": "futureClass",
  3987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3988. "onresize": function () { }
  3989. }, {
  3990. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3991. }, { "style": { "height": "36px" } }).form; //创建窗体
  3992. _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); } }
  3993. break;
  3994. }
  3995. case "openCourseUpdate":
  3996. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3997. setTimeout(() => {
  3998. U.MD.U.L.login();
  3999. }, 2000);
  4000. } else {
  4001. _formdiv = new U.UF.UI.form(
  4002. "课程管理",
  4003. $$("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 }), {
  4004. "id": "openCourseUpdate",
  4005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4006. "onresize": function () { }
  4007. }, {
  4008. closecallback: function () { }
  4009. }, { "style": { "height": "36px" } }).form; //创建窗体
  4010. break;
  4011. }
  4012. case "openNewCourseUpdate":
  4013. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4014. setTimeout(() => {
  4015. U.MD.U.L.login();
  4016. }, 2000);
  4017. } else {
  4018. _formdiv = new U.UF.UI.form(
  4019. "课程管理",
  4020. $$("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 }), {
  4021. "id": "openCourseUpdate",
  4022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4023. "onresize": function () { }
  4024. }, {
  4025. closecallback: function () { }
  4026. }, { "style": { "height": "36px" } }).form; //创建窗体
  4027. break;
  4028. }
  4029. case "openCourseEUpdate":
  4030. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4031. setTimeout(() => {
  4032. U.MD.U.L.login();
  4033. }, 2000);
  4034. } else {
  4035. _formdiv = new U.UF.UI.form(
  4036. "课程管理",
  4037. $$("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 }), {
  4038. "id": "openCourseUpdate",
  4039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4040. "onresize": function () { }
  4041. }, {
  4042. closecallback: function () { }
  4043. }, { "style": { "height": "36px" } }).form; //创建窗体
  4044. break;
  4045. }
  4046. case "openCourseAiUpdate":
  4047. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4048. setTimeout(() => {
  4049. U.MD.U.L.login();
  4050. }, 2000);
  4051. } else {
  4052. _formdiv = new U.UF.UI.form(
  4053. "课程管理",
  4054. $$("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 }), {
  4055. "id": "openCourseUpdate",
  4056. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4057. "onresize": function () { }
  4058. }, {
  4059. closecallback: function () { }
  4060. }, { "style": { "height": "36px" } }).form; //创建窗体
  4061. break;
  4062. }
  4063. case "openCourseNewUpdate":
  4064. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4065. setTimeout(() => {
  4066. U.MD.U.L.login();
  4067. }, 2000);
  4068. } else {
  4069. _formdiv = new U.UF.UI.form(
  4070. "课程管理",
  4071. $$("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 }), {
  4072. "id": "openCourseUpdate",
  4073. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4074. "onresize": function () { }
  4075. }, {
  4076. closecallback: function () { }
  4077. }, { "style": { "height": "36px" } }).form; //创建窗体
  4078. break;
  4079. }
  4080. case "inviteLoginSz":
  4081. _formdiv = new U.UF.UI.form(
  4082. "随机码登录",
  4083. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  4084. "id": "loginSz",
  4085. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4086. "onresize": function () { }
  4087. }, {
  4088. closecallback: function () { }
  4089. }, { "style": { "height": "36px" } }).form; //创建窗体
  4090. break;
  4091. case "loginSz":
  4092. _formdiv = new U.UF.UI.form(
  4093. "教师登录",
  4094. $$("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" }), {
  4095. "id": "loginSz",
  4096. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4097. "onresize": function () { }
  4098. }, {
  4099. closecallback: function () { }
  4100. }, { "style": { "height": "36px" } }).form; //创建窗体
  4101. break;
  4102. case "teacher":
  4103. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4104. setTimeout(() => {
  4105. U.MD.U.L.login();
  4106. }, 2000);
  4107. } else {
  4108. _formdiv = new U.UF.UI.form(
  4109. "教师管理",
  4110. $$("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 }), {
  4111. "id": "teacher",
  4112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4113. "onresize": function () { }
  4114. }, {
  4115. closecallback: function () { }
  4116. }, { "style": { "height": "36px" } }).form; //创建窗体
  4117. break;
  4118. }
  4119. case "dataBoardSZArea":
  4120. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4121. setTimeout(() => {
  4122. U.MD.U.L.login();
  4123. }, 2000);
  4124. } else {
  4125. _formdiv = new U.UF.UI.form(
  4126. "综合数据看板",
  4127. $$("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 }), {
  4128. "id": "dataBoardSZArea",
  4129. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4130. "onresize": function () { }
  4131. }, {
  4132. closecallback: function () { }
  4133. }, { "style": { "height": "36px" } }).form; //创建窗体
  4134. break;
  4135. }
  4136. case "dataBoardSZCity":
  4137. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4138. setTimeout(() => {
  4139. U.MD.U.L.login();
  4140. }, 2000);
  4141. } else {
  4142. _formdiv = new U.UF.UI.form(
  4143. "综合数据看板",
  4144. $$("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 }), {
  4145. "id": "dataBoardSZCity",
  4146. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4147. "onresize": function () { }
  4148. }, {
  4149. closecallback: function () { }
  4150. }, { "style": { "height": "36px" } }).form; //创建窗体
  4151. break;
  4152. }
  4153. case "classroom_observation_board":
  4154. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4155. setTimeout(() => {
  4156. U.MD.U.L.login();
  4157. }, 2000);
  4158. } else {
  4159. _formdiv = new U.UF.UI.form(
  4160. "课堂观察",
  4161. $$("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 }), {
  4162. "id": "classroom_observation_board",
  4163. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4164. "onresize": function () { }
  4165. }, {
  4166. closecallback: function () { }
  4167. }, { "style": { "height": "36px" } }).form; //创建窗体
  4168. break;
  4169. }
  4170. case "classroom_observation_ob_comment":
  4171. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4172. setTimeout(() => {
  4173. U.MD.U.L.login();
  4174. }, 2000);
  4175. } else {
  4176. _formdiv = new U.UF.UI.form(
  4177. "课堂审核",
  4178. $$("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 }), {
  4179. "id": "classroom_observation_ob_comment",
  4180. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4181. "onresize": function () { }
  4182. }, {
  4183. closecallback: function () { }
  4184. }, { "style": { "height": "36px" } }).form; //创建窗体
  4185. break;
  4186. }
  4187. }
  4188. }
  4189. U.MD.D.I.openApplication = function (str, obj, info) {
  4190. obj = obj || {};
  4191. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4192. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4193. _userinfo = US.userInfo, //登录用户信息
  4194. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4195. _oid = obj.organizeid || _userinfo.organizeid,
  4196. _type = US.userInfo.type,
  4197. _org = US.userInfo.org,
  4198. _role = US.userInfo.role,
  4199. _classId = US.userInfo.classid,
  4200. _TscreenType = 1
  4201. _screenType = 2,
  4202. _SscreenType = 3;
  4203. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4204. return;
  4205. }
  4206. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4207. switch (str) {
  4208. case "studnetProject": //好友打开
  4209. _formdiv = new U.UF.UI.form(
  4210. "我的项目",
  4211. $$("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 }), {
  4212. "id": "studnetProject",
  4213. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4214. "onresize": function () { }
  4215. }, {
  4216. closecallback: function () { }
  4217. }, { "style": { "height": "36px" } }).form; //创建窗体
  4218. _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); } }
  4219. break;
  4220. case "studentEvaluate": //好友打开
  4221. _formdiv = new U.UF.UI.form(
  4222. "我的评价",
  4223. $$("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 }), {
  4224. "id": "studentEvaluate",
  4225. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4226. "onresize": function () { }
  4227. }, {
  4228. closecallback: function () { }
  4229. }, { "style": { "height": "36px" } }).form; //创建窗体
  4230. _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); } }
  4231. break;
  4232. case "my":
  4233. _formdiv = new U.UF.UI.form(
  4234. "我的资料",
  4235. $$("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 }), {
  4236. "id": "my",
  4237. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4238. "onresize": function () { }
  4239. }, {
  4240. closecallback: function () { }
  4241. }, { "style": { "height": "36px" } }).form; //创建窗体
  4242. _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); } }
  4243. break;
  4244. case "program":
  4245. _formdiv = new U.UF.UI.form(
  4246. "编程平台",
  4247. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4248. "id": "program",
  4249. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4250. "onresize": function () { }
  4251. }, {
  4252. closecallback: function () { }
  4253. }, { "style": { "height": "36px" } }).form; //创建窗体
  4254. _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); } }
  4255. break;
  4256. case "library":
  4257. _formdiv = new U.UF.UI.form(
  4258. "素材库",
  4259. $$("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 }), {
  4260. "id": "library",
  4261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4262. "onresize": function () { }
  4263. }, {
  4264. closecallback: function () { }
  4265. }, { "style": { "height": "36px" } }).form; //创建窗体
  4266. _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); } }
  4267. break;
  4268. case "whiteboard":
  4269. _formdiv = new U.UF.UI.form(
  4270. "电子白板",
  4271. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4272. "id": "whiteboard",
  4273. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4274. "onresize": function () { }
  4275. }, {
  4276. closecallback: function () { }
  4277. }, { "style": { "height": "36px" } }).form; //创建窗体
  4278. _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); } }
  4279. break;
  4280. case "investigation":
  4281. _formdiv = new U.UF.UI.form(
  4282. "问卷调查",
  4283. $$("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 }), {
  4284. "id": "investigation",
  4285. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4286. "onresize": function () { }
  4287. }, {
  4288. closecallback: function () { }
  4289. }, { "style": { "height": "36px" } }).form; //创建窗体
  4290. _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); } }
  4291. break;
  4292. case "note":
  4293. _formdiv = new U.UF.UI.form(
  4294. "便签分类",
  4295. $$("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 }), {
  4296. "id": "note",
  4297. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4298. "onresize": function () { }
  4299. }, {
  4300. closecallback: function () { }
  4301. }, { "style": { "height": "36px" } }).form; //创建窗体
  4302. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4303. break;
  4304. // case "score":
  4305. // _formdiv = new U.UF.UI.form(
  4306. // "量规评分",
  4307. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4308. // "id": "score",
  4309. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4310. // "onresize": function() {}
  4311. // }, {
  4312. // closecallback: function() {}
  4313. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4314. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4315. // break;
  4316. case "mind":
  4317. _formdiv = new U.UF.UI.form(
  4318. "思维导图",
  4319. $$("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"
  4320. "id": "mind",
  4321. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4322. "onresize": function () { }
  4323. }, {
  4324. closecallback: function () { }
  4325. }, { "style": { "height": "36px" } }).form; //创建窗体
  4326. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4327. break;
  4328. case "doc":
  4329. // U.MD.D.I.isRoom();
  4330. _formdiv = new U.UF.UI.form(
  4331. "协同文档",
  4332. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4333. "id": "doc",
  4334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4335. "onresize": function () { }
  4336. }, {
  4337. closecallback: function () { }
  4338. }, { "style": { "height": "36px" } }).form; //创建窗体
  4339. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4340. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4341. // })
  4342. _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); } }
  4343. break;
  4344. case "studentStudy":
  4345. _formdiv = new U.UF.UI.form(
  4346. "课程中心",
  4347. $$("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
  4348. "id": "studentStudy",
  4349. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4355. break;
  4356. case "train": //好友打开
  4357. _formdiv = new U.UF.UI.form(
  4358. "训练平台",
  4359. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4360. "id": "train",
  4361. "style": { "width": "90%", "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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4367. break;
  4368. case "mindNetwork": //好友打开
  4369. _formdiv = new U.UF.UI.form(
  4370. "思维网格",
  4371. $$("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 }), {
  4372. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4379. break;
  4380. case "studentClassRoom": //好友打开
  4381. _formdiv = new U.UF.UI.form(
  4382. "实时课堂",
  4383. $$("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 }), {
  4384. "id": "studentClassRoom",
  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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4391. setTimeout(() => {
  4392. U.UF.F.windowZooming(_formdiv)
  4393. }, 0);
  4394. break;
  4395. }
  4396. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4397. switch (str) {
  4398. case "studnetProject": //好友打开
  4399. _formdiv = new U.UF.UI.form(
  4400. "我的项目",
  4401. $$("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 }), {
  4402. "id": "studnetProject",
  4403. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4404. "onresize": function () { }
  4405. }, {
  4406. closecallback: function () { }
  4407. }, { "style": { "height": "36px" } }).form; //创建窗体
  4408. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4409. break;
  4410. case "studentEvaluate": //好友打开
  4411. _formdiv = new U.UF.UI.form(
  4412. "我的评价",
  4413. $$("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 }), {
  4414. "id": "studentEvaluate",
  4415. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4416. "onresize": function () { }
  4417. }, {
  4418. closecallback: function () { }
  4419. }, { "style": { "height": "36px" } }).form; //创建窗体
  4420. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4421. break;
  4422. case "my":
  4423. _formdiv = new U.UF.UI.form(
  4424. "我的资料",
  4425. $$("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 }), {
  4426. "id": "my",
  4427. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4428. "onresize": function () { }
  4429. }, {
  4430. closecallback: function () { }
  4431. }, { "style": { "height": "36px" } }).form; //创建窗体
  4432. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4433. break;
  4434. case "program":
  4435. _formdiv = new U.UF.UI.form(
  4436. "编程平台",
  4437. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4438. "id": "program",
  4439. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4440. "onresize": function () { }
  4441. }, {
  4442. closecallback: function () { }
  4443. }, { "style": { "height": "36px" } }).form; //创建窗体
  4444. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4445. break;
  4446. case "library":
  4447. _formdiv = new U.UF.UI.form(
  4448. "素材库",
  4449. $$("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 }), {
  4450. "id": "library",
  4451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4452. "onresize": function () { }
  4453. }, {
  4454. closecallback: function () { }
  4455. }, { "style": { "height": "36px" } }).form; //创建窗体
  4456. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4457. break;
  4458. case "whiteboard":
  4459. _formdiv = new U.UF.UI.form(
  4460. "电子白板",
  4461. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4462. "id": "whiteboard",
  4463. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4464. "onresize": function () { }
  4465. }, {
  4466. closecallback: function () { }
  4467. }, { "style": { "height": "36px" } }).form; //创建窗体
  4468. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4469. break;
  4470. case "investigation":
  4471. _formdiv = new U.UF.UI.form(
  4472. "问卷调查",
  4473. $$("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 }), {
  4474. "id": "investigation",
  4475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4476. "onresize": function () { }
  4477. }, {
  4478. closecallback: function () { }
  4479. }, { "style": { "height": "36px" } }).form; //创建窗体
  4480. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4481. break;
  4482. case "note":
  4483. _formdiv = new U.UF.UI.form(
  4484. "便签分类",
  4485. $$("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 }), {
  4486. "id": "note",
  4487. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4488. "onresize": function () { }
  4489. }, {
  4490. closecallback: function () { }
  4491. }, { "style": { "height": "36px" } }).form; //创建窗体
  4492. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4493. break;
  4494. // case "score":
  4495. // _formdiv = new U.UF.UI.form(
  4496. // "量规评分",
  4497. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4498. // "id": "score",
  4499. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4500. // "onresize": function() {}
  4501. // }, {
  4502. // closecallback: function() {}
  4503. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4504. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4505. // break;
  4506. case "mind":
  4507. _formdiv = new U.UF.UI.form(
  4508. "思维导图",
  4509. $$("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"
  4510. "id": "mind",
  4511. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4512. "onresize": function () { }
  4513. }, {
  4514. closecallback: function () { }
  4515. }, { "style": { "height": "36px" } }).form; //创建窗体
  4516. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4517. break;
  4518. case "doc":
  4519. // U.MD.D.I.isRoom();
  4520. _formdiv = new U.UF.UI.form(
  4521. "协同文档",
  4522. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4523. "id": "doc",
  4524. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4525. "onresize": function () { }
  4526. }, {
  4527. closecallback: function () { }
  4528. }, { "style": { "height": "36px" } }).form; //创建窗体
  4529. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4530. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4531. })
  4532. _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); } }
  4533. break;
  4534. case "train": //好友打开
  4535. _formdiv = new U.UF.UI.form(
  4536. "训练平台",
  4537. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4538. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4545. break;
  4546. case "studentStudy":
  4547. _formdiv = new U.UF.UI.form(
  4548. "课程中心",
  4549. $$("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
  4550. "id": "studentStudy",
  4551. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4557. break;
  4558. case "mindNetwork": //好友打开
  4559. _formdiv = new U.UF.UI.form(
  4560. "思维网格",
  4561. $$("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 }), {
  4562. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4569. break;
  4570. case "studentClassRoom": //好友打开
  4571. _formdiv = new U.UF.UI.form(
  4572. "实时课堂",
  4573. $$("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 }), {
  4574. "id": "studentClassRoom",
  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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4581. setTimeout(() => {
  4582. U.UF.F.windowZooming(_formdiv)
  4583. }, 0);
  4584. break;
  4585. }
  4586. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4587. //选择应用处理
  4588. switch (str) {
  4589. case "project": //好友打开
  4590. _formdiv = new U.UF.UI.form(
  4591. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4592. $$("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 }), {
  4593. "id": "project",
  4594. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4595. "onresize": function () { }
  4596. }, {
  4597. closecallback: function () { }
  4598. }, { "style": { "height": "36px" } }).form; //创建窗体
  4599. _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); } }
  4600. break;
  4601. case "student":
  4602. _formdiv = new U.UF.UI.form(
  4603. "学生管理",
  4604. $$("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 }), {
  4605. "id": "student",
  4606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4607. "onresize": function () { }
  4608. }, {
  4609. closecallback: function () { }
  4610. }, { "style": { "height": "36px" } }).form; //创建窗体
  4611. _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); } }
  4612. break;
  4613. case "evaluate":
  4614. _formdiv = new U.UF.UI.form(
  4615. "学生评价",
  4616. $$("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 }), {
  4617. "id": "evaluate",
  4618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4619. "onresize": function () { }
  4620. }, {
  4621. closecallback: function () { }
  4622. }, { "style": { "height": "36px" } }).form; //创建窗体
  4623. _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); } }
  4624. break;
  4625. case "sys":
  4626. _formdiv = new U.UF.UI.form(
  4627. "目标管理",
  4628. $$("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 }), {
  4629. "id": "sys",
  4630. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4631. "onresize": function () { }
  4632. }, {
  4633. closecallback: function () { }
  4634. }, { "style": { "height": "36px" } }).form; //创建窗体
  4635. _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); } }
  4636. break;
  4637. case "courseDesign":
  4638. _formdiv = new U.UF.UI.form(
  4639. "项目设计",
  4640. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4641. "id": "courseDesign",
  4642. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4643. "onresize": function () { }
  4644. }, {
  4645. closecallback: function () { }
  4646. }, { "style": { "height": "36px" } }).form; //创建窗体
  4647. _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); } }
  4648. break;
  4649. case "program":
  4650. _formdiv = new U.UF.UI.form(
  4651. "编程平台",
  4652. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4653. "id": "program",
  4654. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4655. "onresize": function () { }
  4656. }, {
  4657. closecallback: function () { }
  4658. }, { "style": { "height": "36px" } }).form; //创建窗体
  4659. _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); } }
  4660. break;
  4661. case "class":
  4662. _formdiv = new U.UF.UI.form(
  4663. "班级管理",
  4664. $$("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 }), {
  4665. "id": "class",
  4666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4667. "onresize": function () { }
  4668. }, {
  4669. closecallback: function () { }
  4670. }, { "style": { "height": "36px" } }).form; //创建窗体
  4671. _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); } }
  4672. break;
  4673. case "Grade":
  4674. _formdiv = new U.UF.UI.form(
  4675. "年级管理",
  4676. $$("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 }), {
  4677. "id": "Grade",
  4678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4679. "onresize": function () { }
  4680. }, {
  4681. closecallback: function () { }
  4682. }, { "style": { "height": "36px" } }).form; //创建窗体
  4683. _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); } }
  4684. break;
  4685. case "teacherOffice":
  4686. _formdiv = new U.UF.UI.form(
  4687. "教研室",
  4688. $$("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 }), {
  4689. "id": "teacherOffice",
  4690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4691. "onresize": function () { }
  4692. }, {
  4693. closecallback: function () { }
  4694. }, { "style": { "height": "36px" } }).form; //创建窗体
  4695. _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); } }
  4696. break;
  4697. case "my":
  4698. _formdiv = new U.UF.UI.form(
  4699. "我的资料",
  4700. $$("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 }), {
  4701. "id": "my",
  4702. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4703. "onresize": function () { }
  4704. }, {
  4705. closecallback: function () { }
  4706. }, { "style": { "height": "36px" } }).form; //创建窗体
  4707. _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); } }
  4708. break;
  4709. case "notice":
  4710. _formdiv = new U.UF.UI.form(
  4711. "通知公告",
  4712. $$("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 }), {
  4713. "id": "notice",
  4714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4715. "onresize": function () { }
  4716. }, {
  4717. closecallback: function () { }
  4718. }, { "style": { "height": "36px" } }).form; //创建窗体
  4719. _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); } }
  4720. break;
  4721. case "library":
  4722. _formdiv = new U.UF.UI.form(
  4723. "素材库",
  4724. $$("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 }), {
  4725. "id": "library",
  4726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4727. "onresize": function () { }
  4728. }, {
  4729. closecallback: function () { }
  4730. }, { "style": { "height": "36px" } }).form; //创建窗体
  4731. _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); } }
  4732. break;
  4733. case "whiteboard":
  4734. _formdiv = new U.UF.UI.form(
  4735. "电子白板",
  4736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4737. "id": "whiteboard",
  4738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4739. "onresize": function () { }
  4740. }, {
  4741. closecallback: function () { }
  4742. }, { "style": { "height": "36px" } }).form; //创建窗体
  4743. _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); } }
  4744. break;
  4745. case "investigation":
  4746. _formdiv = new U.UF.UI.form(
  4747. "问卷调查",
  4748. $$("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 }), {
  4749. "id": "investigation",
  4750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4751. "onresize": function () { }
  4752. }, {
  4753. closecallback: function () { }
  4754. }, { "style": { "height": "36px" } }).form; //创建窗体
  4755. _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); } }
  4756. break;
  4757. case "note":
  4758. _formdiv = new U.UF.UI.form(
  4759. "便签分类",
  4760. $$("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 }), {
  4761. "id": "note",
  4762. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4763. "onresize": function () { }
  4764. }, {
  4765. closecallback: function () { }
  4766. }, { "style": { "height": "36px" } }).form; //创建窗体
  4767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4768. break;
  4769. // case "score":
  4770. // _formdiv = new U.UF.UI.form(
  4771. // "量规评分",
  4772. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4773. // "id": "score",
  4774. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4775. // "onresize": function() {}
  4776. // }, {
  4777. // closecallback: function() {}
  4778. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4779. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4780. // break;
  4781. case "mind":
  4782. _formdiv = new U.UF.UI.form(
  4783. "思维导图",
  4784. $$("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"
  4785. "id": "mind",
  4786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4787. "onresize": function () { }
  4788. }, {
  4789. closecallback: function () { }
  4790. }, { "style": { "height": "36px" } }).form; //创建窗体
  4791. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4792. break;
  4793. case "doc":
  4794. // U.MD.D.I.isRoom();
  4795. _formdiv = new U.UF.UI.form(
  4796. "协同文档",
  4797. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4798. "id": "doc",
  4799. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4800. "onresize": function () { }
  4801. }, {
  4802. closecallback: function () { }
  4803. }, { "style": { "height": "36px" } }).form; //创建窗体
  4804. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4805. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4806. })
  4807. _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); } }
  4808. break;
  4809. case "study":
  4810. _formdiv = new U.UF.UI.form(
  4811. "课程中心",
  4812. $$("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
  4813. "id": "study",
  4814. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4820. break;
  4821. case "mindNetwork": //好友打开
  4822. _formdiv = new U.UF.UI.form(
  4823. "思维网格",
  4824. $$("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 }), {
  4825. "id": "mindNetwork",
  4826. "style": { "width": "90%", "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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4832. break;
  4833. case "train": //好友打开
  4834. _formdiv = new U.UF.UI.form(
  4835. "训练平台",
  4836. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4837. "id": "mindNetwork",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4844. break;
  4845. case "teacherClassRoom": //好友打开
  4846. _formdiv = new U.UF.UI.form(
  4847. "实时课堂",
  4848. $$("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 }), {
  4849. "id": "teacherClassRoom",
  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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4856. setTimeout(() => {
  4857. U.UF.F.windowZooming(_formdiv)
  4858. }, 0);
  4859. break;
  4860. }
  4861. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4862. switch (str) {
  4863. case "project": //好友打开
  4864. _formdiv = new U.UF.UI.form(
  4865. "课程管理",
  4866. $$("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 }), {
  4867. "id": "project",
  4868. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4869. "onresize": function () { }
  4870. }, {
  4871. closecallback: function () { }
  4872. }, { "style": { "height": "36px" } }).form; //创建窗体
  4873. _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); } }
  4874. break;
  4875. case "evaluate":
  4876. _formdiv = new U.UF.UI.form(
  4877. "学生评价",
  4878. $$("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 }), {
  4879. "id": "evaluate",
  4880. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4881. "onresize": function () { }
  4882. }, {
  4883. closecallback: function () { }
  4884. }, { "style": { "height": "36px" } }).form; //创建窗体
  4885. _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); } }
  4886. break;
  4887. case "notice":
  4888. _formdiv = new U.UF.UI.form(
  4889. "通知公告",
  4890. $$("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 }), {
  4891. "id": "notice",
  4892. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4893. "onresize": function () { }
  4894. }, {
  4895. closecallback: function () { }
  4896. }, { "style": { "height": "36px" } }).form; //创建窗体
  4897. _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); } }
  4898. break;
  4899. case "stuLibrary":
  4900. _formdiv = new U.UF.UI.form(
  4901. "学习资料",
  4902. $$("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 }), {
  4903. "id": "stuLibrary",
  4904. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4905. "onresize": function () { }
  4906. }, {
  4907. closecallback: function () { }
  4908. }, { "style": { "height": "36px" } }).form; //创建窗体
  4909. _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); } }
  4910. break;
  4911. case "program":
  4912. _formdiv = new U.UF.UI.form(
  4913. "编程平台",
  4914. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4915. "id": "program",
  4916. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4917. "onresize": function () { }
  4918. }, {
  4919. closecallback: function () { }
  4920. }, { "style": { "height": "36px" } }).form; //创建窗体
  4921. _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); } }
  4922. break;
  4923. case "whiteboard":
  4924. _formdiv = new U.UF.UI.form(
  4925. "电子白板",
  4926. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4927. "id": "whiteboard",
  4928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4929. "onresize": function () { }
  4930. }, {
  4931. closecallback: function () { }
  4932. }, { "style": { "height": "36px" } }).form; //创建窗体
  4933. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4934. break;
  4935. case "investigation":
  4936. _formdiv = new U.UF.UI.form(
  4937. "问卷调查",
  4938. $$("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 }), {
  4939. "id": "investigation",
  4940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4941. "onresize": function () { }
  4942. }, {
  4943. closecallback: function () { }
  4944. }, { "style": { "height": "36px" } }).form; //创建窗体
  4945. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4946. break;
  4947. case "mind":
  4948. _formdiv = new U.UF.UI.form(
  4949. "思维导图",
  4950. $$("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"
  4951. "id": "mind",
  4952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4953. "onresize": function () { }
  4954. }, {
  4955. closecallback: function () { }
  4956. }, { "style": { "height": "36px" } }).form; //创建窗体
  4957. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4958. break;
  4959. case "doc":
  4960. // U.MD.D.I.isRoom();
  4961. _formdiv = new U.UF.UI.form(
  4962. "协同文档",
  4963. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4964. "id": "doc",
  4965. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4966. "onresize": function () { }
  4967. }, {
  4968. closecallback: function () { }
  4969. }, { "style": { "height": "36px" } }).form; //创建窗体
  4970. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4971. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4972. })
  4973. _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); } }
  4974. break;
  4975. case "study":
  4976. _formdiv = new U.UF.UI.form(
  4977. "课程中心",
  4978. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": 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
  4979. "id": "study",
  4980. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4981. "onresize": function () { }
  4982. }, {
  4983. closecallback: function () { }
  4984. }, { "style": { "height": "36px" } }).form; //创建窗体
  4985. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4986. break;
  4987. case "mindNetwork": //好友打开
  4988. _formdiv = new U.UF.UI.form(
  4989. "思维网格",
  4990. $$("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 }), {
  4991. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4998. break;
  4999. case "train": //好友打开
  5000. _formdiv = new U.UF.UI.form(
  5001. "训练平台",
  5002. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5003. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5010. break;
  5011. case "sys":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5015. "id": "sys",
  5016. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5022. break;
  5023. case "courseDesign":
  5024. _formdiv = new U.UF.UI.form(
  5025. "项目设计",
  5026. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5027. "id": "courseDesign",
  5028. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5029. "onresize": function () { }
  5030. }, {
  5031. closecallback: function () { }
  5032. }, { "style": { "height": "36px" } }).form; //创建窗体
  5033. _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); } }
  5034. break;
  5035. }
  5036. } else if (!_type) {
  5037. switch (str) {
  5038. case "my":
  5039. _formdiv = new U.UF.UI.form(
  5040. "我的资料",
  5041. $$("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 }), {
  5042. "id": "my",
  5043. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5044. "onresize": function () { }
  5045. }, {
  5046. closecallback: function () { }
  5047. }, { "style": { "height": "36px" } }).form; //创建窗体
  5048. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5049. break;
  5050. }
  5051. }
  5052. switch (str) {
  5053. // AIprogram2 AI体验 aihub.cocorobo.cn
  5054. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5055. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5056. case "formulaEdi": //公式编辑
  5057. _formdiv = new U.UF.UI.form(
  5058. "公式编辑",
  5059. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5060. "id": "formulaEdi",
  5061. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5062. "onresize": function () { }
  5063. }, {
  5064. closecallback: function () { }
  5065. }, { "style": { "height": "36px" } }).form; //创建窗体
  5066. _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); } }
  5067. break;
  5068. case "molStr": //分子结构
  5069. _formdiv = new U.UF.UI.form(
  5070. "分子结构",
  5071. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5072. "id": "molStr",
  5073. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5074. "onresize": function () { }
  5075. }, {
  5076. closecallback: function () { }
  5077. }, { "style": { "height": "36px" } }).form; //创建窗体
  5078. _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); } }
  5079. break;
  5080. case "timeAxis": //时间轴
  5081. _formdiv = new U.UF.UI.form(
  5082. "时间轴",
  5083. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5084. "id": "timeAxis",
  5085. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5086. "onresize": function () { }
  5087. }, {
  5088. closecallback: function () { }
  5089. }, { "style": { "height": "36px" } }).form; //创建窗体
  5090. _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); } }
  5091. break;
  5092. case "AIprogram2": //AI体验
  5093. _formdiv = new U.UF.UI.form(
  5094. "AI体验",
  5095. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5096. "id": "AIprogram2",
  5097. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5098. "onresize": function () { }
  5099. }, {
  5100. closecallback: function () { }
  5101. }, { "style": { "height": "36px" } }).form; //创建窗体
  5102. _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); } }
  5103. break;
  5104. case "Pythonprogram": //python编程
  5105. _formdiv = new U.UF.UI.form(
  5106. "Python编程",
  5107. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5108. "id": "Pythonprogram",
  5109. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5110. "onresize": function () { }
  5111. }, {
  5112. closecallback: function () { }
  5113. }, { "style": { "height": "36px" } }).form; //创建窗体
  5114. _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); } }
  5115. break;
  5116. case "AIprogram": //ai编程
  5117. _formdiv = new U.UF.UI.form(
  5118. "AI编程平台",
  5119. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5120. "id": "AIprogram",
  5121. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5122. "onresize": function () { }
  5123. }, {
  5124. closecallback: function () { }
  5125. }, { "style": { "height": "36px" } }).form; //创建窗体
  5126. _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); } }
  5127. break;
  5128. case "CocoPi": //CocoPi
  5129. _formdiv = new U.UF.UI.form(
  5130. "CocoPi",
  5131. $$("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" }), {
  5132. "id": "CocoPi",
  5133. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5134. "onresize": function () { }
  5135. }, {
  5136. closecallback: function () { }
  5137. }, { "style": { "height": "36px" } }).form; //创建窗体
  5138. _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); } }
  5139. break;
  5140. case "Wood": //Wood
  5141. _formdiv = new U.UF.UI.form(
  5142. "海龟编程",
  5143. $$("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/" }), {
  5144. "id": "Wood",
  5145. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5146. "onresize": function () { }
  5147. }, {
  5148. closecallback: function () { }
  5149. }, { "style": { "height": "36px" } }).form; //创建窗体
  5150. _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); } }
  5151. break;
  5152. case "car": //模拟驾驶
  5153. _formdiv = new U.UF.UI.form(
  5154. "模拟驾驶",
  5155. $$("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/" }), {
  5156. "id": "car",
  5157. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5158. "onresize": function () { }
  5159. }, {
  5160. closecallback: function () { }
  5161. }, { "style": { "height": "36px" } }).form; //创建窗体
  5162. _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); } }
  5163. break;
  5164. case "lineSearch": //路径搜索
  5165. _formdiv = new U.UF.UI.form(
  5166. "路径搜索",
  5167. $$("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/" }), {
  5168. "id": "lineSearch",
  5169. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5170. "onresize": function () { }
  5171. }, {
  5172. closecallback: function () { }
  5173. }, { "style": { "height": "36px" } }).form; //创建窗体
  5174. _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); } }
  5175. break;
  5176. case "deepLearning": //深度学习
  5177. _formdiv = new U.UF.UI.form(
  5178. "深度学习",
  5179. $$("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/#" }), {
  5180. "id": "deepLearning",
  5181. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5182. "onresize": function () { }
  5183. }, {
  5184. closecallback: function () { }
  5185. }, { "style": { "height": "36px" } }).form; //创建窗体
  5186. _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); } }
  5187. break;
  5188. case "allHistory": //深度学习
  5189. _formdiv = new U.UF.UI.form(
  5190. "全历史",
  5191. $$("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/" }), {
  5192. "id": "allHistory",
  5193. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5194. "onresize": function () { }
  5195. }, {
  5196. closecallback: function () { }
  5197. }, { "style": { "height": "36px" } }).form; //创建窗体
  5198. _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); } }
  5199. break;
  5200. case "chatPDF": //ai编程
  5201. _formdiv = new U.UF.UI.form(
  5202. "chatPDF",
  5203. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5204. "id": "chatPDF",
  5205. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5206. "onresize": function () { }
  5207. }, {
  5208. closecallback: function () { }
  5209. }, { "style": { "height": "36px" } }).form; //创建窗体
  5210. _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); } }
  5211. break;
  5212. case "resources": //国家教育
  5213. _formdiv = new U.UF.UI.form(
  5214. "国家教育",
  5215. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5216. "id": "resources",
  5217. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5218. "onresize": function () { }
  5219. }, {
  5220. closecallback: function () { }
  5221. }, { "style": { "height": "36px" } }).form; //创建窗体
  5222. _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); } }
  5223. break;
  5224. case "codeEdit": //源码编辑
  5225. _formdiv = new U.UF.UI.form(
  5226. "源码编辑",
  5227. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5228. "id": "codeEdit",
  5229. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5230. "onresize": function () { }
  5231. }, {
  5232. closecallback: function () { }
  5233. }, { "style": { "height": "36px" } }).form; //创建窗体
  5234. _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); } }
  5235. break; //
  5236. case "MindMap": //MindMap
  5237. _formdiv = new U.UF.UI.form(
  5238. "MindMap",
  5239. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5240. "id": "MindMap",
  5241. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5242. "onresize": function () { }
  5243. }, {
  5244. closecallback: function () { }
  5245. }, { "style": { "height": "36px" } }).form; //创建窗体
  5246. _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); } }
  5247. break;
  5248. case "netWorkPanel": //netWorkPanel
  5249. _formdiv = new U.UF.UI.form(
  5250. "netWorkPanel",
  5251. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5252. "id": "netWorkPanel",
  5253. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5254. "onresize": function () { }
  5255. }, {
  5256. closecallback: function () { }
  5257. }, { "style": { "height": "36px" } }).form; //创建窗体
  5258. _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); } }
  5259. break;
  5260. case "GeoGebra": //GeoGebra
  5261. _formdiv = new U.UF.UI.form(
  5262. "GeoGebra",
  5263. $$("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" }), {
  5264. "id": "GeoGebra",
  5265. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5266. "onresize": function () { }
  5267. }, {
  5268. closecallback: function () { }
  5269. }, { "style": { "height": "36px" } }).form; //创建窗体
  5270. _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); } }
  5271. break;
  5272. case "translation": //翻译
  5273. _formdiv = new U.UF.UI.form(
  5274. "翻译",
  5275. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5276. "id": "translation",
  5277. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5278. "onresize": function () { }
  5279. }, {
  5280. closecallback: function () { }
  5281. }, { "style": { "height": "36px" } }).form; //创建窗体
  5282. _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); } }
  5283. break;
  5284. case "mohe": //魔盒
  5285. _formdiv = new U.UF.UI.form(
  5286. "魔盒识字",
  5287. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5288. "id": "mohe",
  5289. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5290. "onresize": function () { }
  5291. }, {
  5292. closecallback: function () { }
  5293. }, { "style": { "height": "36px" } }).form; //创建窗体
  5294. _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); } }
  5295. break;
  5296. case "24game": //24点
  5297. _formdiv = new U.UF.UI.form(
  5298. "24点",
  5299. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5300. "id": "24game",
  5301. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5302. "onresize": function () { }
  5303. }, {
  5304. closecallback: function () { }
  5305. }, { "style": { "height": "36px" } }).form; //创建窗体
  5306. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5307. break;
  5308. case "case":
  5309. _formdiv = new U.UF.UI.form(
  5310. "课程进展",
  5311. $$("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 }), {
  5312. "id": "case",
  5313. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5314. "onresize": function () { }
  5315. }, {
  5316. closecallback: function () { }
  5317. }, { "style": { "height": "36px" } }).form; //创建窗体
  5318. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5319. break;
  5320. case "snf":
  5321. _formdiv = new U.UF.UI.form(
  5322. "赛诺梵",
  5323. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  5324. "id": "snf",
  5325. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5326. "onresize": function () { }
  5327. }, {
  5328. closecallback: function () { }
  5329. }, { "style": { "height": "36px" } }).form; //创建窗体
  5330. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5331. break;
  5332. case "hanFamily":
  5333. _formdiv = new U.UF.UI.form(
  5334. "汉字家族",
  5335. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5336. "id": "hanFamily",
  5337. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5338. "onresize": function () { }
  5339. }, {
  5340. closecallback: function () { }
  5341. }, { "style": { "height": "36px" } }).form; //创建窗体
  5342. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5343. break;
  5344. case "hanClassics":
  5345. _formdiv = new U.UF.UI.form(
  5346. "国学经典",
  5347. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5348. "id": "hanClassics",
  5349. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5350. "onresize": function () { }
  5351. }, {
  5352. closecallback: function () { }
  5353. }, { "style": { "height": "36px" } }).form; //创建窗体
  5354. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5355. break;
  5356. case "hanTraining":
  5357. _formdiv = new U.UF.UI.form(
  5358. "笔画训练",
  5359. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5360. "id": "hanTraining",
  5361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5362. "onresize": function () { }
  5363. }, {
  5364. closecallback: function () { }
  5365. }, { "style": { "height": "36px" } }).form; //创建窗体
  5366. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5367. break;
  5368. case "hanClass":
  5369. _formdiv = new U.UF.UI.form(
  5370. "书法课堂",
  5371. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5372. "id": "hanClass",
  5373. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5374. "onresize": function () { }
  5375. }, {
  5376. closecallback: function () { }
  5377. }, { "style": { "height": "36px" } }).form; //创建窗体
  5378. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5379. break;
  5380. case "han":
  5381. _formdiv = new U.UF.UI.form(
  5382. "汉字宫",
  5383. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5384. "id": "han",
  5385. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5386. "onresize": function () { }
  5387. }, {
  5388. closecallback: function () { }
  5389. }, { "style": { "height": "36px" } }).form; //创建窗体
  5390. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5391. break;
  5392. case "projectGM": //课程管理
  5393. _formdiv = new U.UF.UI.form(
  5394. "课程管理",
  5395. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5396. "id": "projectGM",
  5397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5398. "onresize": function () { }
  5399. }, {
  5400. closecallback: function () { }
  5401. }, { "style": { "height": "36px" } }).form; //创建窗体
  5402. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5403. break;
  5404. case "studyGM": //课程中心
  5405. _formdiv = new U.UF.UI.form(
  5406. "课程中心",
  5407. $$("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
  5408. "id": "study",
  5409. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5415. break;
  5416. // studentGM
  5417. case "studentGM": //学生管理
  5418. _formdiv = new U.UF.UI.form(
  5419. "学生管理",
  5420. $$("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 }), {
  5421. "id": "studentGM",
  5422. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5423. "onresize": function () { }
  5424. }, {
  5425. closecallback: function () { }
  5426. }, { "style": { "height": "36px" } }).form; //创建窗体
  5427. _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); } }
  5428. break;
  5429. case "evaluateGM": //学生评价
  5430. _formdiv = new U.UF.UI.form(
  5431. "学生评价",
  5432. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5433. "id": "evaluateGM",
  5434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, { "style": { "height": "36px" } }).form; //创建窗体
  5439. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5440. break;
  5441. // classGM
  5442. case "classGM": //班级管理
  5443. _formdiv = new U.UF.UI.form(
  5444. "班级管理",
  5445. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5446. "id": "classGM",
  5447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //创建窗体
  5452. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5453. break;
  5454. // dataGM
  5455. case "dataGM":
  5456. _formdiv = new U.UF.UI.form(
  5457. "我的资料",
  5458. $$("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 }), {
  5459. "id": "dataGM",
  5460. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5461. "onresize": function () { }
  5462. }, {
  5463. closecallback: function () { }
  5464. }, { "style": { "height": "36px" } }).form; //创建窗体
  5465. _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); } }
  5466. break;
  5467. // caseGM
  5468. case "caseGM": //课程进展
  5469. _formdiv = new U.UF.UI.form(
  5470. "课程进展",
  5471. $$("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 }), {
  5472. "id": "caseGM",
  5473. "style": { "width": "90%", "height": "90%", "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/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5479. break;
  5480. // meterialGM
  5481. case "meterialGM": //素材库
  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/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  5485. "id": "meterialGM",
  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/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5492. break;
  5493. // evaluateSGM
  5494. case "evaluateSGM": //我的评价
  5495. _formdiv = new U.UF.UI.form(
  5496. "我的评价",
  5497. $$("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 }), {
  5498. "id": "evaluateSGM",
  5499. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5500. "onresize": function () { }
  5501. }, {
  5502. closecallback: function () { }
  5503. }, { "style": { "height": "36px" } }).form; //创建窗体
  5504. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5505. break;
  5506. case "jupyter": //jupyter
  5507. _formdiv = new U.UF.UI.form(
  5508. "jupyter",
  5509. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5510. "id": "jupyter",
  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/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5517. break;
  5518. case "number": //数字实验室
  5519. _formdiv = new U.UF.UI.form(
  5520. "数字实验室",
  5521. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5522. "id": "number",
  5523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5524. "onresize": function () { }
  5525. }, {
  5526. closecallback: function () { }
  5527. }, { "style": { "height": "36px" } }).form; //创建窗体
  5528. _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); } }
  5529. break;
  5530. case "studentCourse": //项目管理 学生
  5531. _formdiv = new U.UF.UI.form(
  5532. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5533. $$("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 }), {
  5534. "id": "studentCourse",
  5535. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5536. "onresize": function () { }
  5537. }, {
  5538. closecallback: function () { }
  5539. }, { "style": { "height": "36px" } }).form; //创建窗体
  5540. _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); } }
  5541. break;
  5542. case "studentCourseS": //项目管理 老师
  5543. _formdiv = new U.UF.UI.form(
  5544. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5545. $$("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 }), {
  5546. "id": "studentCourseS",
  5547. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5548. "onresize": function () { }
  5549. }, {
  5550. closecallback: function () { }
  5551. }, { "style": { "height": "36px" } }).form; //创建窗体
  5552. _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); } }
  5553. break;
  5554. case "studentIndex": //项目中心
  5555. _formdiv = new U.UF.UI.form(
  5556. "项目中心",
  5557. $$("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 }), {
  5558. "id": "studentIndex",
  5559. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5560. "onresize": function () { }
  5561. }, {
  5562. closecallback: function () { }
  5563. }, { "style": { "height": "36px" } }).form; //创建窗体
  5564. _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); } }
  5565. break;
  5566. case "CaseDesignS":
  5567. _formdiv = new U.UF.UI.form(
  5568. "项目进展",
  5569. $$("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 }), {
  5570. "id": "case",
  5571. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5572. "onresize": function () { }
  5573. }, {
  5574. closecallback: function () { }
  5575. }, { "style": { "height": "36px" } }).form; //创建窗体
  5576. _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); } }
  5577. break;
  5578. case "tcStudent": //腾讯学生管理
  5579. _formdiv = new U.UF.UI.form(
  5580. "学生管理",
  5581. $$("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 }), {
  5582. "id": "tcStudent",
  5583. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5584. "onresize": function () { }
  5585. }, {
  5586. closecallback: function () { }
  5587. }, { "style": { "height": "36px" } }).form; //创建窗体
  5588. _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); } }
  5589. break;
  5590. case "tcSchool": //腾讯学校管理
  5591. _formdiv = new U.UF.UI.form(
  5592. "学校管理",
  5593. $$("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 }), {
  5594. "id": "tcSchool",
  5595. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5596. "onresize": function () { }
  5597. }, {
  5598. closecallback: function () { }
  5599. }, { "style": { "height": "36px" } }).form; //创建窗体
  5600. _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); } }
  5601. break;
  5602. case "tcTeacher": //腾讯学校管理
  5603. _formdiv = new U.UF.UI.form(
  5604. "教师管理",
  5605. $$("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 }), {
  5606. "id": "tcTeacher",
  5607. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5608. "onresize": function () { }
  5609. }, {
  5610. closecallback: function () { }
  5611. }, { "style": { "height": "36px" } }).form; //创建窗体
  5612. _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); } }
  5613. break;
  5614. case "tcData": //腾讯我的资料
  5615. _formdiv = new U.UF.UI.form(
  5616. "我的资料",
  5617. $$("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 }), {
  5618. "id": "tcData",
  5619. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5620. "onresize": function () { }
  5621. }, {
  5622. closecallback: function () { }
  5623. }, { "style": { "height": "36px" } }).form; //创建窗体
  5624. _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); } }
  5625. break;
  5626. case "tcNotice": //腾讯消息通知
  5627. _formdiv = new U.UF.UI.form(
  5628. "消息通知",
  5629. $$("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 }), {
  5630. "id": "tcNotice",
  5631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5632. "onresize": function () { }
  5633. }, {
  5634. closecallback: function () { }
  5635. }, { "style": { "height": "36px" } }).form; //创建窗体
  5636. _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); } }
  5637. break;
  5638. case "myReport": //好友打开
  5639. _formdiv = new U.UF.UI.form(
  5640. "我的评价",
  5641. $$("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 }), {
  5642. "id": "myReport",
  5643. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5644. "onresize": function () { }
  5645. }, {
  5646. closecallback: function () { }
  5647. }, { "style": { "height": "36px" } }).form; //创建窗体
  5648. _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); } }
  5649. break;
  5650. case "learnAna": //好友打开
  5651. _formdiv = new U.UF.UI.form(
  5652. "学习分析",
  5653. $$("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 }), {
  5654. "id": "learnAna",
  5655. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5656. "onresize": function () { }
  5657. }, {
  5658. closecallback: function () { }
  5659. }, { "style": { "height": "36px" } }).form; //创建窗体
  5660. _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); } }
  5661. break;
  5662. case "AIChat": //AI共创
  5663. _formdiv = new U.UF.UI.form(
  5664. "AI共创",
  5665. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5666. "id": "AIChat",
  5667. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5668. "onresize": function () { }
  5669. }, {
  5670. istop: true,
  5671. closecallback: function () { $("#aichat_icon").remove(); },
  5672. narrowcallback: function () {
  5673. if (!$("#aichat_icon")[0]) {
  5674. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5675. }
  5676. },
  5677. }, { "style": { "height": "36px" } }).form; //创建窗体
  5678. _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); } }
  5679. break;
  5680. case "ainew": //AI共创
  5681. _formdiv = new U.UF.UI.form(
  5682. "AI协同",
  5683. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5684. "id": "ainew",
  5685. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5686. "onresize": function () { }
  5687. }, {
  5688. closecallback: function () { }
  5689. }, { "style": { "height": "36px" } }).form; //创建窗体
  5690. _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); } }
  5691. break;
  5692. case "gpt4": //gpt4
  5693. _formdiv = new U.UF.UI.form(
  5694. "AI助手",
  5695. $$("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 }), {
  5696. "id": "gpt4",
  5697. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5698. "onresize": function () { }
  5699. }, {
  5700. closecallback: function () { }
  5701. }, { "style": { "height": "36px" } }).form; //创建窗体
  5702. _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); } }
  5703. break;
  5704. case "aigpt": //gpt4
  5705. _formdiv = new U.UF.UI.form(
  5706. "AI助手+",
  5707. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5708. "id": "aigpt",
  5709. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5710. "onresize": function () { }
  5711. }, {
  5712. closecallback: function () { }
  5713. }, { "style": { "height": "36px" } }).form; //创建窗体
  5714. _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); } }
  5715. break;
  5716. case "aiKnowledge": //aiKnowledge
  5717. _formdiv = new U.UF.UI.form(
  5718. "知识建构",
  5719. $$("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://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  5720. "id": "aiKnowledge",
  5721. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5722. "onresize": function () { }
  5723. }, {
  5724. closecallback: function () { }
  5725. }, { "style": { "height": "36px" } }).form; //创建窗体
  5726. _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); } }
  5727. break;
  5728. case "futureClass": //AI共创
  5729. _formdiv = new U.UF.UI.form(
  5730. "协同建构",
  5731. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  5732. "id": "synergyCourse",
  5733. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5734. "onresize": function () { }
  5735. }, {
  5736. closecallback: function () {
  5737. $("iframe", _formdiv)[0].contentWindow.loginout();
  5738. }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. _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); } }
  5741. break;
  5742. case "aiagent": //ai agent
  5743. _formdiv = new U.UF.UI.form(
  5744. "AI Agent",
  5745. $$("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" }), {
  5746. "id": "AIAgent",
  5747. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5748. "onresize": function () { }
  5749. }, {
  5750. closecallback: function () { }
  5751. }, { "style": { "height": "36px" } }).form; //创建窗体
  5752. _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); } }
  5753. break;
  5754. case "dataBoard": //数据看板
  5755. _formdiv = new U.UF.UI.form(
  5756. "数据看板",
  5757. $$("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 }), {
  5758. "id": "dataBoard",
  5759. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5760. "onresize": function () { }
  5761. }, {
  5762. closecallback: function () { }
  5763. }, { "style": { "height": "36px" } }).form; //创建窗体
  5764. _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); } }
  5765. break;
  5766. case "dataBoardSies": //数据融合
  5767. _formdiv = new U.UF.UI.form(
  5768. "数据融合",
  5769. $$("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 }), {
  5770. "id": "dataBoardSies",
  5771. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5772. "onresize": function () { }
  5773. }, {
  5774. closecallback: function () { }
  5775. }, { "style": { "height": "36px" } }).form; //创建窗体
  5776. _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); } }
  5777. break;
  5778. case "dataBoardNew": //数据看板
  5779. _formdiv = new U.UF.UI.form(
  5780. "综合看板",
  5781. $$("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 }), {
  5782. "id": "dataBoardNew",
  5783. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5784. "onresize": function () { }
  5785. }, {
  5786. closecallback: function () { }
  5787. }, { "style": { "height": "36px" } }).form; //创建窗体
  5788. _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); } }
  5789. break;
  5790. case "dataBoardTest": //数据看板
  5791. _formdiv = new U.UF.UI.form(
  5792. "评测看板",
  5793. $$("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 }), {
  5794. "id": "dataBoardTest",
  5795. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5796. "onresize": function () { }
  5797. }, {
  5798. closecallback: function () { }
  5799. }, { "style": { "height": "36px" } }).form; //创建窗体
  5800. _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); } }
  5801. break;
  5802. case "AIAnalyse": //AI共创
  5803. _formdiv = new U.UF.UI.form(
  5804. "AI分析",
  5805. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5806. "id": "AIAnalyse",
  5807. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5808. "onresize": function () { }
  5809. }, {
  5810. closecallback: function () { }
  5811. }, { "style": { "height": "36px" } }).form; //创建窗体
  5812. _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); } }
  5813. break;
  5814. case "studioCourse": //AI共创
  5815. _formdiv = new U.UF.UI.form(
  5816. "工作管理",
  5817. $$("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 }), {
  5818. "id": "studioCourse",
  5819. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5820. "onresize": function () { }
  5821. }, {
  5822. closecallback: function () { }
  5823. }, { "style": { "height": "36px" } }).form; //创建窗体
  5824. _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); } }
  5825. break;
  5826. case "studioIndex": //AI共创
  5827. _formdiv = new U.UF.UI.form(
  5828. "工作中心",
  5829. $$("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 }), {
  5830. "id": "studioIndex",
  5831. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5832. "onresize": function () { }
  5833. }, {
  5834. closecallback: function () { }
  5835. }, { "style": { "height": "36px" } }).form; //创建窗体
  5836. _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); } }
  5837. break;
  5838. case "source":
  5839. _formdiv = new U.UF.UI.form(
  5840. "教学资源",
  5841. $$("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 }), {
  5842. "id": "source",
  5843. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5844. "onresize": function () { }
  5845. }, {
  5846. closecallback: function () { }
  5847. }, { "style": { "height": "36px" } }).form; //创建窗体
  5848. _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); } }
  5849. break;
  5850. case "testTeacher":
  5851. _formdiv = new U.UF.UI.form(
  5852. "教师管理",
  5853. $$("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 }), {
  5854. "id": "testTeacher",
  5855. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { }
  5859. }, { "style": { "height": "36px" } }).form; //创建窗体
  5860. _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); } }
  5861. break;
  5862. case "testStudent":
  5863. _formdiv = new U.UF.UI.form(
  5864. "教师中心",
  5865. $$("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 }), {
  5866. "id": "testStudent",
  5867. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5868. "onresize": function () { }
  5869. }, {
  5870. closecallback: function () { }
  5871. }, { "style": { "height": "36px" } }).form; //创建窗体
  5872. _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); } }
  5873. break;
  5874. case "testTeacherSies":
  5875. _formdiv = new U.UF.UI.form(
  5876. "教师管理",
  5877. $$("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 }), {
  5878. "id": "testTeacherSies",
  5879. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5880. "onresize": function () { }
  5881. }, {
  5882. closecallback: function () { }
  5883. }, { "style": { "height": "36px" } }).form; //创建窗体
  5884. _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); } }
  5885. break;
  5886. case "testStudentSies":
  5887. _formdiv = new U.UF.UI.form(
  5888. "教师中心",
  5889. $$("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 }), {
  5890. "id": "testStudentSies",
  5891. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5892. "onresize": function () { }
  5893. }, {
  5894. closecallback: function () { }
  5895. }, { "style": { "height": "36px" } }).form; //创建窗体
  5896. _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); } }
  5897. break;
  5898. case "ytpbl": //消息通知
  5899. _formdiv = new U.UF.UI.form(
  5900. "案例征集",
  5901. $$("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 }), {
  5902. "id": "ytpbl",
  5903. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5904. "onresize": function () { }
  5905. }, {
  5906. closecallback: function () { }
  5907. }, { "style": { "height": "36px" } }).form; //创建窗体
  5908. _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); } }
  5909. // 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");
  5910. break;
  5911. case "aiCourseResource": //人工智能窗体
  5912. _formdiv = new U.UF.UI.form(
  5913. false,
  5914. $$("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 }), {
  5915. "id": "aiCourseResource",
  5916. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5917. "onresize": function () { },
  5918. "isdrag": false,
  5919. }, {
  5920. closecallback: function () { }
  5921. }, { "style": { "height": "36px" } }).form; //创建窗体
  5922. _taskbar = ''
  5923. break;
  5924. case "szdjgCocooroboX": //图形化编程
  5925. _formdiv = new U.UF.UI.form(
  5926. "图形化编程",
  5927. $$("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" }), {
  5928. "id": "szdjgCocooroboX",
  5929. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5930. "onresize": function () { }
  5931. }, {
  5932. closecallback: function () { }
  5933. }, { "style": { "height": "36px" } }).form; //创建窗体
  5934. _taskbar = ''
  5935. break;
  5936. case "szdjgPython": //python编程
  5937. _formdiv = new U.UF.UI.form(
  5938. "Python编程",
  5939. $$("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" }), {
  5940. "id": "szdjgPython",
  5941. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5942. "onresize": function () { }
  5943. }, {
  5944. closecallback: function () { }
  5945. }, { "style": { "height": "36px" } }).form; //创建窗体
  5946. _taskbar = ''
  5947. break;
  5948. case "Record":
  5949. _formdiv = new U.UF.UI.form(
  5950. "观察记录",
  5951. $$("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 }), {
  5952. "id": "Record",
  5953. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5954. "onresize": function () { }
  5955. }, {
  5956. closecallback: function () { }
  5957. }, { "style": { "height": "36px" } }).form; //创建窗体
  5958. _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); } }
  5959. break;
  5960. case "aigptCourse":
  5961. _formdiv = new U.UF.UI.form(
  5962. "AI智能体",
  5963. $$("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' }), {
  5964. "id": "aigptCourse",
  5965. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5966. "onresize": function () { }
  5967. }, {
  5968. closecallback: function () { }
  5969. }, { "style": { "height": "36px" } }).form; //创建窗体
  5970. _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); } }
  5971. break;
  5972. case "classroomObservation":
  5973. _formdiv = new U.UF.UI.form(
  5974. "课堂观察",
  5975. $$("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 }), {
  5976. "id": "classroomObservation",
  5977. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5978. "onresize": function () { }
  5979. }, {
  5980. closecallback: function () { }
  5981. }, { "style": { "height": "36px" } }).form; //创建窗体
  5982. _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); } }
  5983. break;
  5984. case "pblCourse":
  5985. _formdiv = new U.UF.UI.form(
  5986. "学生PBL",
  5987. $$("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 }), {
  5988. "id": "pblCourse",
  5989. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5990. "onresize": function () { }
  5991. }, {
  5992. closecallback: function () { }
  5993. }, { "style": { "height": "36px" } }).form; //创建窗体
  5994. _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); } }
  5995. break;
  5996. }
  5997. //U.MD.D.I.openClick(str);
  5998. //如果有任务栏信息
  5999. if (_taskbar) {
  6000. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6001. }
  6002. }
  6003. // U.MD.D.I.openClick = function(str){
  6004. // var click = '';
  6005. // switch(str){
  6006. // case 'friend':
  6007. // click = '我的好友';
  6008. // break;
  6009. // case 'domain':
  6010. // click = '域名管理';
  6011. // break;
  6012. // case 'disk':
  6013. // click = '我的云盘';
  6014. // break;
  6015. // case 'word':
  6016. // click = 'Word';
  6017. // break;
  6018. // case 'excel':
  6019. // click = 'Execl';
  6020. // break;
  6021. // case 'txt':
  6022. // click = '文本文件';
  6023. // break;
  6024. // case 'lookupFriend':
  6025. // click = '查找好友';
  6026. // break;
  6027. // case 'ftp':
  6028. // click = 'FTP';
  6029. // break;
  6030. // case 'group':
  6031. // click = '群组';
  6032. // break;
  6033. // case 'set':
  6034. // click = '我的设置';
  6035. // break;
  6036. // case 'systemSet':
  6037. // click = '系统设置';
  6038. // break;
  6039. // case 'boomYun':
  6040. // click = '互联办公';
  6041. // break;
  6042. // case 'xz':
  6043. // click = '云端下载';
  6044. // break;
  6045. // case 'client':
  6046. // click = '有思浏览器';
  6047. // break;
  6048. // case 'backEndProgramming':
  6049. // click = '在线后台编程';
  6050. // break;
  6051. // case 'frontEndProgramming':
  6052. // click = '在线前端编程';
  6053. // break;
  6054. // default: break;
  6055. // }
  6056. // if(U.MD.D.I.Ip && click){
  6057. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6058. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6059. // })
  6060. // }
  6061. // }
  6062. /**
  6063. *函数作用:ajax简易函数,使用post格式
  6064. *@param url {data} 后台地址
  6065. *@param data {data} 参数json
  6066. *@param fn {data} 回调函数
  6067. *
  6068. */
  6069. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6070. // var xhr = new XMLHttpRequest();
  6071. // xhr.open("GET",url,true);
  6072. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6073. // xhr.onreadystatechange = function(){
  6074. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6075. // fn.call(this,xhr.responseText);
  6076. // }
  6077. // };
  6078. // xhr.send();
  6079. // }
  6080. /*判断是否是内网IP*/
  6081. // U.MD.D.I.isInnerIPFn = function(str){
  6082. // var curPageUrl = str;
  6083. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6084. // curPageUrl =curPageUrl.replace(reg1,'');
  6085. // // console.log('curPageUrl-1 '+curPageUrl);
  6086. // var reg2 = /\:+/g;//替换冒号为一点
  6087. // curPageUrl =curPageUrl.replace(reg2,'.');
  6088. // // console.log('curPageUrl-2 '+curPageUrl);
  6089. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6090. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6091. // if(curPageUrl[2] != '16'){
  6092. // return ipAddress;
  6093. // }else{
  6094. // return false;
  6095. // }
  6096. // }
  6097. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6098. // //compatibility for firefox and chrome
  6099. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6100. // var pc = new myPeerConnection({
  6101. // iceServers: []
  6102. // }),
  6103. // noop = function() {},
  6104. // localIPs = {},
  6105. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6106. // key;
  6107. // function iterateIP(ip) {
  6108. // if (!localIPs[ip]) onNewIP(ip);
  6109. // localIPs[ip] = true;
  6110. // }
  6111. // //create a bogus data channel
  6112. // pc.createDataChannel("");
  6113. // // create offer and set local description
  6114. // pc.createOffer().then(function(sdp) {
  6115. // sdp.sdp.split('\n').forEach(function(line) {
  6116. // if (line.indexOf('candidate') < 0) return;
  6117. // line.match(ipRegex).forEach(iterateIP);
  6118. // });
  6119. // pc.setLocalDescription(sdp, noop, noop);
  6120. // }).catch(function(reason) {
  6121. // // An error occurred, so handle the failure to connect
  6122. // });
  6123. // //sten for candidate events
  6124. // pc.onicecandidate = function(ice) {
  6125. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6126. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6127. // };
  6128. // }
  6129. // U.MD.D.I.getUserIpBool = function(callback){
  6130. // U.MD.D.I.getUserIP(function(ip){
  6131. // alert("Got IP! :" + ip);
  6132. // });
  6133. //}
  6134. //#endregion
  6135. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6136. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6137. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6138. _userinfo = US.userInfo, //登录用户信息
  6139. _userid = US.userInfo.userid //登录用户id
  6140. let _iframe;
  6141. let _cid = cid,
  6142. _stage = stage,
  6143. _task = task,
  6144. _tool = tool;
  6145. var _jie = $$("div", {
  6146. "style": {
  6147. "position": "absolute",
  6148. "bottom": "50px",
  6149. "right": "50px",
  6150. "zIndex": "9999",
  6151. "backgroundColor": "#2268bc",
  6152. "color": "#fff",
  6153. "padding": "12px 20px",
  6154. "cursor": "pointer",
  6155. "borderRadius": "4px",
  6156. },
  6157. "innerHTML": "提交作业"
  6158. })
  6159. let aTool = ''
  6160. let _loading = document.createElement('div')
  6161. _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;"
  6162. // _loading.id = "";
  6163. let _lchild = document.createElement('div')
  6164. let _limg = document.createElement('img')
  6165. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6166. _limg.style = "width: 26px;margin-right: 10px;"
  6167. _lchild.appendChild(_limg)
  6168. let _lspan = document.createElement('span')
  6169. _lspan.innerHTML = "上传中..."
  6170. _lchild.appendChild(_lspan)
  6171. _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%);"
  6172. _loading.appendChild(_lchild)
  6173. var _box = $$('div', {
  6174. "style": {
  6175. "position": "relative",
  6176. "width": "100%",
  6177. "height": "100%",
  6178. },
  6179. })
  6180. _box.appendChild(_loading)
  6181. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6182. switch (str) {
  6183. case "whiteboard":
  6184. aTool = 1;
  6185. _iframe = $$("iframe", {
  6186. "frameborder": "no",
  6187. "border": "0",
  6188. "scrolling ": "no",
  6189. "style": {
  6190. "cssText": "border:0;width:100%;height:100%"
  6191. },
  6192. "src": "https://beta.iwb.cocorobo.cn/"
  6193. })
  6194. _box.appendChild(_iframe);
  6195. _box.appendChild(_jie);
  6196. _formdiv = new U.UF.UI.form(
  6197. "电子白板",
  6198. _box, {
  6199. "id": "whiteboard" + cid + stage + task + tool,
  6200. "style": {
  6201. "width": "90%",
  6202. "height": "90%",
  6203. "overflow": 'hidden'
  6204. },
  6205. "onresize": function () { }
  6206. }, {
  6207. closecallback: function () { }
  6208. }, {
  6209. "style": {
  6210. "height": "36px"
  6211. }
  6212. }).form; //创建窗体
  6213. _taskbar = {
  6214. "id": str + _formdiv.id,
  6215. "style": {
  6216. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6217. },
  6218. "name": "电子白板",
  6219. "forms": _formdiv,
  6220. "click": function () {
  6221. U.MD.D.I.openApplication(str, obj, info);
  6222. }
  6223. }
  6224. break;
  6225. case "mind":
  6226. aTool = 3;
  6227. _iframe = $$("iframe", {
  6228. "frameborder": "no",
  6229. "border": "0",
  6230. "scrolling ": "no",
  6231. "style": {
  6232. "cssText": "border:0;width:100%;height:100%"
  6233. },
  6234. "src": "/kityminder-editor/dist/index.html"
  6235. })
  6236. _box.appendChild(_iframe);
  6237. _box.appendChild(_jie);
  6238. _formdiv = new U.UF.UI.form(
  6239. "思维导图",
  6240. _box, { //"/jsmind/example/demo.html"
  6241. "id": "mind" + cid + stage + task + tool,
  6242. "style": {
  6243. "width": "90%",
  6244. "height": "90%",
  6245. "overflow": 'hidden'
  6246. },
  6247. "onresize": function () { }
  6248. }, {
  6249. closecallback: function () { }
  6250. }, {
  6251. "style": {
  6252. "height": "36px"
  6253. }
  6254. }).form; //创建窗体
  6255. _taskbar = {
  6256. "id": str + _formdiv.id,
  6257. "style": {
  6258. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6259. },
  6260. "name": "思维导图",
  6261. "forms": _formdiv,
  6262. "click": function () {
  6263. U.MD.D.I.openApplication(str, obj, info);
  6264. }
  6265. }
  6266. break;
  6267. case "MindMap":
  6268. aTool = 3;
  6269. _iframe = $$("iframe", {
  6270. "frameborder": "no",
  6271. "border": "0",
  6272. "scrolling ": "no",
  6273. "style": {
  6274. "cssText": "border:0;width:100%;height:100%"
  6275. },
  6276. "src": "//cloud.cocorobo.cn/mind/"
  6277. })
  6278. _box.appendChild(_iframe);
  6279. _box.appendChild(_jie);
  6280. _formdiv = new U.UF.UI.form(
  6281. "思维导图",
  6282. _box, { //"/jsmind/example/demo.html"
  6283. "id": "mind" + cid + stage + task + tool,
  6284. "style": {
  6285. "width": "90%",
  6286. "height": "90%",
  6287. "overflow": 'hidden'
  6288. },
  6289. "onresize": function () { }
  6290. }, {
  6291. closecallback: function () { }
  6292. }, {
  6293. "style": {
  6294. "height": "36px"
  6295. }
  6296. }).form; //创建窗体
  6297. _taskbar = {
  6298. "id": str + _formdiv.id,
  6299. "style": {
  6300. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6301. },
  6302. "name": "思维导图",
  6303. "forms": _formdiv,
  6304. "click": function () {
  6305. U.MD.D.I.openApplication(str, obj, info);
  6306. }
  6307. }
  6308. break;
  6309. case "doc":
  6310. aTool = 6;
  6311. _iframe = $$("iframe", {
  6312. "frameborder": "no",
  6313. "border": "0",
  6314. "scrolling ": "no",
  6315. "style": {
  6316. "cssText": "border:0;width:100%;height:100%"
  6317. },
  6318. "src": "/Office/Word/WordEditArea.htm"
  6319. })
  6320. _box.appendChild(_iframe);
  6321. _box.appendChild(_jie);
  6322. _formdiv = new U.UF.UI.form(
  6323. "协同文档",
  6324. _box, {
  6325. "id": "doc" + cid + stage + task + tool,
  6326. "style": {
  6327. "width": "90%",
  6328. "height": "90%",
  6329. "overflow": 'hidden'
  6330. },
  6331. "onresize": function () { }
  6332. }, {
  6333. closecallback: function () { }
  6334. }, {
  6335. "style": {
  6336. "height": "36px"
  6337. }
  6338. }).form; //创建窗体
  6339. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6340. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6341. })
  6342. _taskbar = {
  6343. "id": str + _formdiv.id,
  6344. "style": {
  6345. "backgroundImage": "url(/img/icon/doc.png)"
  6346. },
  6347. "name": "协同文档",
  6348. "forms": _formdiv,
  6349. "click": function () {
  6350. U.MD.D.I.openApplication(str, obj, info);
  6351. }
  6352. }
  6353. break;
  6354. case "mindNetwork": //好友打开
  6355. aTool = 7;
  6356. _iframe = $$("iframe", {
  6357. "webkitallowfullscreen": "",
  6358. "mozallowfullscreen": "",
  6359. "allowfullscreen": "",
  6360. "frameborder": "no",
  6361. "border": "0",
  6362. "scrolling ": "no",
  6363. "style": {
  6364. "cssText": "border:0; width:100%; height:100%;"
  6365. },
  6366. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6367. })
  6368. _box.appendChild(_iframe);
  6369. _box.appendChild(_jie);
  6370. _formdiv = new U.UF.UI.form(
  6371. "思维网格",
  6372. _box, {
  6373. "id": "mindNetwork" + cid + stage + task + tool,
  6374. "style": {
  6375. "width": "90%",
  6376. "height": "90%",
  6377. "overflow": 'hidden'
  6378. },
  6379. "onresize": function () { }
  6380. }, {
  6381. closecallback: function () { }
  6382. }, {
  6383. "style": {
  6384. "height": "36px"
  6385. }
  6386. }).form; //创建窗体
  6387. _taskbar = {
  6388. "id": str + _formdiv.id,
  6389. "style": {
  6390. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6391. },
  6392. "name": "思维网格",
  6393. "forms": _formdiv,
  6394. "click": function () {
  6395. U.MD.D.I.openApplication(str, obj, info);
  6396. }
  6397. }
  6398. break;
  6399. case "courseDesign":
  6400. _iframe = $$("iframe", {
  6401. "webkitallowfullscreen": "",
  6402. "mozallowfullscreen": "",
  6403. "allowfullscreen": "",
  6404. "frameborder": "no",
  6405. "border": "0",
  6406. "scrolling ": "no",
  6407. "style": {
  6408. "cssText": "border:0; width:100%; height:100%;"
  6409. },
  6410. "src": "/course-design-vue"
  6411. })
  6412. _box.appendChild(_iframe);
  6413. _box.appendChild(_jie);
  6414. _formdiv = new U.UF.UI.form(
  6415. "项目设计",
  6416. _box, {
  6417. "id": "courseDesign" + cid + stage + task + tool,
  6418. "style": {
  6419. "width": "90%",
  6420. "height": "90%",
  6421. "overflow": 'hidden'
  6422. },
  6423. "onresize": function () { }
  6424. }, {
  6425. closecallback: function () { }
  6426. }, {
  6427. "style": {
  6428. "height": "36px"
  6429. }
  6430. }).form; //创建窗体
  6431. _taskbar = {
  6432. "id": str + _formdiv.id,
  6433. "style": {
  6434. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6435. },
  6436. "name": "项目设计",
  6437. "forms": _formdiv,
  6438. "click": function () {
  6439. U.MD.D.I.openApplication(str, obj, info);
  6440. }
  6441. }
  6442. break;
  6443. }
  6444. const script1 = document.createElement("script");
  6445. script1.type = "text/javascript";
  6446. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6447. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6448. const script2 = document.createElement("script");
  6449. script2.type = "text/javascript";
  6450. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6451. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6452. const script3 = document.createElement("script");
  6453. script3.type = "text/javascript";
  6454. script3.charset = "UTF-8";
  6455. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6456. const script4 = document.createElement("script");
  6457. script4.type = "text/javascript";
  6458. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6459. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6460. if (_iframe) {
  6461. if (str == 'doc') {
  6462. _iframe = _formdiv.querySelector('iframe')
  6463. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6464. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6465. _iframe.contentWindow.document.body.appendChild(script1);
  6466. _iframe.contentWindow.document.body.appendChild(script2);
  6467. // _iframe.contentWindow.document.body.appendChild(script3);
  6468. _iframe.contentWindow.document.body.appendChild(script4);
  6469. })
  6470. if (onloadListener) {
  6471. _iframe.contentDocument.location.reload()
  6472. } else {
  6473. _iframe.contentDocument.location.reload()
  6474. }
  6475. } else if (str == 'courseDesign') {
  6476. U.UF.DL.iframeLoad(_iframe, function () {
  6477. // _iframe.contentWindow.U.MD.O.W.load();
  6478. // _iframe.contentWindow.document.body.appendChild(script1);
  6479. _iframe.contentWindow.document.body.appendChild(script2);
  6480. _iframe.contentWindow.document.body.appendChild(script4);
  6481. })
  6482. } else if (str == 'mind') {
  6483. _iframe = _formdiv.querySelector('iframe')
  6484. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6485. //
  6486. _iframe.contentWindow.document.body.appendChild(script1);
  6487. _iframe.contentWindow.document.body.appendChild(script2);
  6488. _iframe.contentWindow.document.body.appendChild(script4);
  6489. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6490. })
  6491. if (onloadListener) {
  6492. _iframe.contentDocument.location.reload()
  6493. } else {
  6494. _iframe.contentDocument.location.reload()
  6495. }
  6496. } else if (str == 'whiteboard') {
  6497. _iframe = _formdiv.querySelector('iframe')
  6498. let onloadListener = _iframe.onload = () => {
  6499. _iframe.contentWindow.document.body.appendChild(script1);
  6500. _iframe.contentWindow.document.body.appendChild(script2);
  6501. _iframe.contentWindow.document.body.appendChild(script4);
  6502. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6503. };
  6504. // if (onloadListener) {
  6505. // try {
  6506. // _iframe.src += "?cocorobo="+new Date().getTime()
  6507. // _iframe.contentWindow.document.location.reload()
  6508. // } catch (error) {
  6509. // }
  6510. // } else {
  6511. // _iframe.contentDocument.location.reload()
  6512. // }
  6513. } else {
  6514. _iframe.onload = () => {
  6515. _iframe.contentWindow.document.body.appendChild(script1);
  6516. _iframe.contentWindow.document.body.appendChild(script2);
  6517. // _iframe.contentWindow.document.body.appendChild(script3);
  6518. _iframe.contentWindow.document.body.appendChild(script4);
  6519. };
  6520. }
  6521. _jie.onclick = async () => {
  6522. let text = ''
  6523. if (aTool == 1) {
  6524. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6525. } else if (aTool == 6) {
  6526. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6527. } else if (aTool == 3) {
  6528. text = await U.MD.D.I.getEditorContent(_iframe);
  6529. }
  6530. _loading.style.display = 'flex'
  6531. console.log(_loading);
  6532. var _ajs = _iframe.contentWindow.document.createElement("script");
  6533. _ajs.type = "text/javascript";
  6534. _ajs.innerHTML =
  6535. // 'console.log(' + _loading + ');\n' +
  6536. 'var _js = document.createElement("script");\n' +
  6537. '_js.type="text/javascript";\n' +
  6538. '_js.charset="UTF-8";\n' +
  6539. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6540. "_js.onload = function(){\n" +
  6541. ' var a = document.getElementsByTagName("img")\n' +
  6542. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6543. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6544. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6545. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6546. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6547. "beforeUpload_shishi(file," +
  6548. "'" +
  6549. _userid +
  6550. "'" +
  6551. ", " +
  6552. "'" +
  6553. _cid +
  6554. "'" +
  6555. ", " +
  6556. "'" +
  6557. _stage +
  6558. "'" +
  6559. ", " +
  6560. "'" +
  6561. _task +
  6562. "'" +
  6563. ", " +
  6564. "'" +
  6565. _tool +
  6566. "'" +
  6567. ", " +
  6568. "'" +
  6569. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6570. "'" +
  6571. ", " +
  6572. "'" +
  6573. aTool +
  6574. "'" +
  6575. ", " +
  6576. "`" +
  6577. text +
  6578. "`" +
  6579. ")\n" +
  6580. " });\n" +
  6581. "}\n" +
  6582. "document.head.appendChild(_js);\n";
  6583. _iframe.contentWindow.document.head.appendChild(_ajs);
  6584. }
  6585. }
  6586. //U.MD.D.I.openClick(str);
  6587. //如果有任务栏信息
  6588. // if (_taskbar) {
  6589. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6590. // }
  6591. }
  6592. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6593. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6594. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6595. _userinfo = US.userInfo, //登录用户信息
  6596. _userid = US.userInfo.userid //登录用户id
  6597. let _iframe;
  6598. let _cid = cid,
  6599. _stage = stage,
  6600. _task = task,
  6601. _tool = tool;
  6602. var _jie = $$("div", {
  6603. "style": {
  6604. "position": "absolute",
  6605. "bottom": "50px",
  6606. "right": "50px",
  6607. "zIndex": "9999",
  6608. "backgroundColor": "#2268bc",
  6609. "color": "#fff",
  6610. "padding": "12px 20px",
  6611. "cursor": "pointer",
  6612. "borderRadius": "4px",
  6613. },
  6614. "innerHTML": "提交作业"
  6615. })
  6616. let aTool = ''
  6617. let _loading = document.createElement('div')
  6618. _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;"
  6619. // _loading.id = "";
  6620. let _lchild = document.createElement('div')
  6621. let _limg = document.createElement('img')
  6622. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6623. _limg.style = "width: 26px;margin-right: 10px;"
  6624. _lchild.appendChild(_limg)
  6625. let _lspan = document.createElement('span')
  6626. _lspan.innerHTML = "上传中..."
  6627. _lchild.appendChild(_lspan)
  6628. _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%);"
  6629. _loading.appendChild(_lchild)
  6630. let _box = $$('div', {
  6631. "style": {
  6632. "position": "relative",
  6633. "width": "100%",
  6634. "height": "100%",
  6635. },
  6636. })
  6637. _box.appendChild(_loading)
  6638. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6639. switch (str) {
  6640. case "whiteboard":
  6641. aTool = 1;
  6642. _iframe = $$("iframe", {
  6643. "frameborder": "no",
  6644. "border": "0",
  6645. "scrolling ": "no",
  6646. "style": {
  6647. "cssText": "border:0;width:100%;height:100%"
  6648. },
  6649. "src": "https://beta.iwb.cocorobo.cn/"
  6650. })
  6651. _box.appendChild(_iframe);
  6652. _box.appendChild(_jie);
  6653. _formdiv = new U.UF.UI.form(
  6654. "电子白板",
  6655. _box, {
  6656. "id": "whiteboard" + cid + stage + task + tool,
  6657. "style": {
  6658. "width": "90%",
  6659. "height": "90%",
  6660. "overflow": 'hidden'
  6661. },
  6662. "onresize": function () { }
  6663. }, {
  6664. closecallback: function () { }
  6665. }, {
  6666. "style": {
  6667. "height": "36px"
  6668. }
  6669. }).form; //创建窗体
  6670. _taskbar = {
  6671. "id": str + _formdiv.id,
  6672. "style": {
  6673. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6674. },
  6675. "name": "电子白板",
  6676. "forms": _formdiv,
  6677. "click": function () {
  6678. U.MD.D.I.openApplication(str, obj, info);
  6679. }
  6680. }
  6681. break;
  6682. case "mind":
  6683. aTool = 3;
  6684. _iframe = $$("iframe", {
  6685. "frameborder": "no",
  6686. "border": "0",
  6687. "scrolling ": "no",
  6688. "style": {
  6689. "cssText": "border:0;width:100%;height:100%"
  6690. },
  6691. "src": "/kityminder-editor/dist/index.html"
  6692. })
  6693. _box.appendChild(_iframe);
  6694. _box.appendChild(_jie);
  6695. _formdiv = new U.UF.UI.form(
  6696. "思维导图",
  6697. _box, { //"/jsmind/example/demo.html"
  6698. "id": "mind" + cid + stage + task + tool,
  6699. "style": {
  6700. "width": "90%",
  6701. "height": "90%",
  6702. "overflow": 'hidden'
  6703. },
  6704. "onresize": function () { }
  6705. }, {
  6706. closecallback: function () { }
  6707. }, {
  6708. "style": {
  6709. "height": "36px"
  6710. }
  6711. }).form; //创建窗体
  6712. _taskbar = {
  6713. "id": str + _formdiv.id,
  6714. "style": {
  6715. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6716. },
  6717. "name": "思维导图",
  6718. "forms": _formdiv,
  6719. "click": function () {
  6720. U.MD.D.I.openApplication(str, obj, info);
  6721. }
  6722. }
  6723. break;
  6724. case "MindMap":
  6725. aTool = 3;
  6726. _iframe = $$("iframe", {
  6727. "frameborder": "no",
  6728. "border": "0",
  6729. "scrolling ": "no",
  6730. "style": {
  6731. "cssText": "border:0;width:100%;height:100%"
  6732. },
  6733. "src": "//cloud.cocorobo.cn/mind/"
  6734. })
  6735. _box.appendChild(_iframe);
  6736. _box.appendChild(_jie);
  6737. _formdiv = new U.UF.UI.form(
  6738. "思维导图",
  6739. _box, { //"/jsmind/example/demo.html"
  6740. "id": "mind" + cid + stage + task + tool,
  6741. "style": {
  6742. "width": "90%",
  6743. "height": "90%",
  6744. "overflow": 'hidden'
  6745. },
  6746. "onresize": function () { }
  6747. }, {
  6748. closecallback: function () { }
  6749. }, {
  6750. "style": {
  6751. "height": "36px"
  6752. }
  6753. }).form; //创建窗体
  6754. _taskbar = {
  6755. "id": str + _formdiv.id,
  6756. "style": {
  6757. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6758. },
  6759. "name": "思维导图",
  6760. "forms": _formdiv,
  6761. "click": function () {
  6762. U.MD.D.I.openApplication(str, obj, info);
  6763. }
  6764. }
  6765. break;
  6766. case "doc":
  6767. aTool = 6;
  6768. _iframe = $$("iframe", {
  6769. "frameborder": "no",
  6770. "border": "0",
  6771. "scrolling ": "no",
  6772. "style": {
  6773. "cssText": "border:0;width:100%;height:100%"
  6774. },
  6775. "src": "/Office/Word/WordEditArea.htm"
  6776. })
  6777. _box.appendChild(_iframe);
  6778. _box.appendChild(_jie);
  6779. _formdiv = new U.UF.UI.form(
  6780. "协同文档",
  6781. _box, {
  6782. "id": "doc" + cid + stage + task + tool,
  6783. "style": {
  6784. "width": "90%",
  6785. "height": "90%",
  6786. "overflow": 'hidden'
  6787. },
  6788. "onresize": function () { }
  6789. }, {
  6790. closecallback: function () { }
  6791. }, {
  6792. "style": {
  6793. "height": "36px"
  6794. }
  6795. }).form; //创建窗体
  6796. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6797. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6798. })
  6799. _taskbar = {
  6800. "id": str + _formdiv.id,
  6801. "style": {
  6802. "backgroundImage": "url(/img/icon/doc.png)"
  6803. },
  6804. "name": "协同文档",
  6805. "forms": _formdiv,
  6806. "click": function () {
  6807. U.MD.D.I.openApplication(str, obj, info);
  6808. }
  6809. }
  6810. break;
  6811. case "mindNetwork": //好友打开
  6812. aTool = 7;
  6813. _iframe = $$("iframe", {
  6814. "webkitallowfullscreen": "",
  6815. "mozallowfullscreen": "",
  6816. "allowfullscreen": "",
  6817. "frameborder": "no",
  6818. "border": "0",
  6819. "scrolling ": "no",
  6820. "style": {
  6821. "cssText": "border:0; width:100%; height:100%;"
  6822. },
  6823. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6824. })
  6825. _box.appendChild(_iframe);
  6826. _box.appendChild(_jie);
  6827. _formdiv = new U.UF.UI.form(
  6828. "思维网格",
  6829. _box, {
  6830. "id": "mindNetwork" + cid + stage + task + tool,
  6831. "style": {
  6832. "width": "90%",
  6833. "height": "90%",
  6834. "overflow": 'hidden'
  6835. },
  6836. "onresize": function () { }
  6837. }, {
  6838. closecallback: function () { }
  6839. }, {
  6840. "style": {
  6841. "height": "36px"
  6842. }
  6843. }).form; //创建窗体
  6844. _taskbar = {
  6845. "id": str + _formdiv.id,
  6846. "style": {
  6847. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6848. },
  6849. "name": "思维网格",
  6850. "forms": _formdiv,
  6851. "click": function () {
  6852. U.MD.D.I.openApplication(str, obj, info);
  6853. }
  6854. }
  6855. break;
  6856. case "courseDesign":
  6857. _iframe = $$("iframe", {
  6858. "webkitallowfullscreen": "",
  6859. "mozallowfullscreen": "",
  6860. "allowfullscreen": "",
  6861. "frameborder": "no",
  6862. "border": "0",
  6863. "scrolling ": "no",
  6864. "style": {
  6865. "cssText": "border:0; width:100%; height:100%;"
  6866. },
  6867. "src": "/course-design-vue"
  6868. })
  6869. _box.appendChild(_iframe);
  6870. _box.appendChild(_jie);
  6871. _formdiv = new U.UF.UI.form(
  6872. "项目设计",
  6873. _box, {
  6874. "id": "courseDesign" + cid + stage + task + tool,
  6875. "style": {
  6876. "width": "90%",
  6877. "height": "90%",
  6878. "overflow": 'hidden'
  6879. },
  6880. "onresize": function () { }
  6881. }, {
  6882. closecallback: function () { }
  6883. }, {
  6884. "style": {
  6885. "height": "36px"
  6886. }
  6887. }).form; //创建窗体
  6888. _taskbar = {
  6889. "id": str + _formdiv.id,
  6890. "style": {
  6891. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6892. },
  6893. "name": "项目设计",
  6894. "forms": _formdiv,
  6895. "click": function () {
  6896. U.MD.D.I.openApplication(str, obj, info);
  6897. }
  6898. }
  6899. break;
  6900. }
  6901. const script1 = document.createElement("script");
  6902. script1.type = "text/javascript";
  6903. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6904. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6905. const script2 = document.createElement("script");
  6906. script2.type = "text/javascript";
  6907. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6908. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6909. const script3 = document.createElement("script");
  6910. script3.type = "text/javascript";
  6911. script3.charset = "UTF-8";
  6912. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6913. const script4 = document.createElement("script");
  6914. script4.type = "text/javascript";
  6915. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6916. script4.src = window.origin + "/js/Common/jietu2E.js";
  6917. if (_iframe) {
  6918. if (str == 'doc') {
  6919. _iframe = _formdiv.querySelector('iframe')
  6920. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6921. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6922. _iframe.contentWindow.document.body.appendChild(script1);
  6923. _iframe.contentWindow.document.body.appendChild(script2);
  6924. // _iframe.contentWindow.document.body.appendChild(script3);
  6925. _iframe.contentWindow.document.body.appendChild(script4);
  6926. })
  6927. if (onloadListener) {
  6928. _iframe.contentDocument.location.reload()
  6929. } else {
  6930. _iframe.contentDocument.location.reload()
  6931. }
  6932. } else if (str == 'courseDesign') {
  6933. U.UF.DL.iframeLoad(_iframe, function () {
  6934. // _iframe.contentWindow.U.MD.O.W.load();
  6935. // _iframe.contentWindow.document.body.appendChild(script1);
  6936. _iframe.contentWindow.document.body.appendChild(script2);
  6937. _iframe.contentWindow.document.body.appendChild(script4);
  6938. })
  6939. } else if (str == 'mind') {
  6940. _iframe = _formdiv.querySelector('iframe')
  6941. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6942. //
  6943. _iframe.contentWindow.document.body.appendChild(script1);
  6944. _iframe.contentWindow.document.body.appendChild(script2);
  6945. _iframe.contentWindow.document.body.appendChild(script4);
  6946. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6947. })
  6948. if (onloadListener) {
  6949. _iframe.contentDocument.location.reload()
  6950. } else {
  6951. _iframe.contentDocument.location.reload()
  6952. }
  6953. } else if (str == 'whiteboard') {
  6954. _iframe = _formdiv.querySelector('iframe')
  6955. let onloadListener = _iframe.onload = () => {
  6956. _iframe.contentWindow.document.body.appendChild(script1);
  6957. _iframe.contentWindow.document.body.appendChild(script2);
  6958. _iframe.contentWindow.document.body.appendChild(script4);
  6959. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6960. };
  6961. // if (onloadListener) {
  6962. // try {
  6963. // _iframe.src += "?cocorobo="+new Date().getTime()
  6964. // _iframe.contentWindow.document.location.reload()
  6965. // } catch (error) {
  6966. // }
  6967. // } else {
  6968. // _iframe.contentDocument.location.reload()
  6969. // }
  6970. } else {
  6971. _iframe.onload = () => {
  6972. _iframe.contentWindow.document.body.appendChild(script1);
  6973. _iframe.contentWindow.document.body.appendChild(script2);
  6974. // _iframe.contentWindow.document.body.appendChild(script3);
  6975. _iframe.contentWindow.document.body.appendChild(script4);
  6976. };
  6977. }
  6978. _jie.onclick = async () => {
  6979. let text = ''
  6980. if (aTool == 1) {
  6981. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6982. } else if (aTool == 6) {
  6983. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6984. } else if (aTool == 3) {
  6985. text = await U.MD.D.I.getEditorContent(_iframe);
  6986. }
  6987. _loading.style.display = 'flex'
  6988. console.log(_loading);
  6989. var _ajs = _iframe.contentWindow.document.createElement("script");
  6990. _ajs.type = "text/javascript";
  6991. _ajs.innerHTML =
  6992. // 'console.log(' + _loading + ');\n' +
  6993. 'var _js = document.createElement("script");\n' +
  6994. '_js.type="text/javascript";\n' +
  6995. '_js.charset="UTF-8";\n' +
  6996. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6997. "_js.onload = function(){\n" +
  6998. ' var a = document.getElementsByTagName("img")\n' +
  6999. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7000. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7001. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7002. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7003. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7004. "beforeUpload_shishi(file," +
  7005. "'" +
  7006. _userid +
  7007. "'" +
  7008. ", " +
  7009. "'" +
  7010. _cid +
  7011. "'" +
  7012. ", " +
  7013. "'" +
  7014. _stage +
  7015. "'" +
  7016. ", " +
  7017. "'" +
  7018. _task +
  7019. "'" +
  7020. ", " +
  7021. "'" +
  7022. _tool +
  7023. "'" +
  7024. ", " +
  7025. "'" +
  7026. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7027. "'" +
  7028. ", " +
  7029. "'" +
  7030. aTool +
  7031. "'" +
  7032. ", " +
  7033. "`" +
  7034. text +
  7035. "`" +
  7036. ")\n" +
  7037. " });\n" +
  7038. "}\n" +
  7039. "document.head.appendChild(_js);\n";
  7040. _iframe.contentWindow.document.head.appendChild(_ajs);
  7041. }
  7042. }
  7043. //U.MD.D.I.openClick(str);
  7044. //如果有任务栏信息
  7045. // if (_taskbar) {
  7046. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7047. // }
  7048. }
  7049. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7050. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7051. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7052. _userid = student.userid, //登录用户id
  7053. _username = student.student //用户名字
  7054. let _iframe;
  7055. let _cid = cid,
  7056. _stage = stage,
  7057. _task = task,
  7058. _tool = tool;
  7059. var _jie = $$("div", {
  7060. "style": {
  7061. "position": "absolute",
  7062. "bottom": "50px",
  7063. "right": "50px",
  7064. "zIndex": "9999",
  7065. "backgroundColor": "#2268bc",
  7066. "color": "#fff",
  7067. "padding": "12px 20px",
  7068. "cursor": "pointer",
  7069. "borderRadius": "4px",
  7070. },
  7071. "innerHTML": "提交作业"
  7072. })
  7073. let aTool = ''
  7074. let _loading = document.createElement('div')
  7075. _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;"
  7076. // _loading.id = "";
  7077. let _lchild = document.createElement('div')
  7078. let _limg = document.createElement('img')
  7079. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7080. _limg.style = "width: 26px;margin-right: 10px;"
  7081. _lchild.appendChild(_limg)
  7082. let _lspan = document.createElement('span')
  7083. _lspan.innerHTML = "上传中..."
  7084. _lchild.appendChild(_lspan)
  7085. _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%);"
  7086. _loading.appendChild(_lchild)
  7087. var _box = $$('div', {
  7088. "style": {
  7089. "position": "relative",
  7090. "width": "100%",
  7091. "height": "100%",
  7092. },
  7093. })
  7094. _box.appendChild(_loading)
  7095. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7096. switch (str) {
  7097. case "whiteboard":
  7098. aTool = 1;
  7099. _iframe = $$("iframe", {
  7100. "frameborder": "no",
  7101. "border": "0",
  7102. "scrolling ": "no",
  7103. "style": {
  7104. "cssText": "border:0;width:100%;height:100%"
  7105. },
  7106. "src": "https://beta.iwb.cocorobo.cn/"
  7107. })
  7108. _box.appendChild(_iframe);
  7109. _box.appendChild(_jie);
  7110. _formdiv = new U.UF.UI.form(
  7111. "电子白板-" + _username,
  7112. _box, {
  7113. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7114. "style": {
  7115. "width": "90%",
  7116. "height": "90%",
  7117. "overflow": 'hidden'
  7118. },
  7119. "onresize": function () { }
  7120. }, {
  7121. closecallback: function () { }
  7122. }, {
  7123. "style": {
  7124. "height": "36px"
  7125. }
  7126. }).form; //创建窗体
  7127. _taskbar = {
  7128. "id": str + _formdiv.id,
  7129. "style": {
  7130. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7131. },
  7132. "name": "电子白板",
  7133. "forms": _formdiv,
  7134. "click": function () {
  7135. U.MD.D.I.openApplication(str, obj, info);
  7136. }
  7137. }
  7138. break;
  7139. case "mind":
  7140. aTool = 3;
  7141. _iframe = $$("iframe", {
  7142. "frameborder": "no",
  7143. "border": "0",
  7144. "scrolling ": "no",
  7145. "style": {
  7146. "cssText": "border:0;width:100%;height:100%"
  7147. },
  7148. "src": "/kityminder-editor/dist/index.html"
  7149. })
  7150. _box.appendChild(_iframe);
  7151. _box.appendChild(_jie);
  7152. _formdiv = new U.UF.UI.form(
  7153. "思维导图-" + _username,
  7154. _box, { //"/jsmind/example/demo.html"
  7155. "id": "mind" + cid + stage + task + tool + _userid,
  7156. "style": {
  7157. "width": "90%",
  7158. "height": "90%",
  7159. "overflow": 'hidden'
  7160. },
  7161. "onresize": function () { }
  7162. }, {
  7163. closecallback: function () { }
  7164. }, {
  7165. "style": {
  7166. "height": "36px"
  7167. }
  7168. }).form; //创建窗体
  7169. _taskbar = {
  7170. "id": str + _formdiv.id,
  7171. "style": {
  7172. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7173. },
  7174. "name": "思维导图",
  7175. "forms": _formdiv,
  7176. "click": function () {
  7177. U.MD.D.I.openApplication(str, obj, info);
  7178. }
  7179. }
  7180. break;
  7181. case "MindMap":
  7182. aTool = 3;
  7183. _iframe = $$("iframe", {
  7184. "frameborder": "no",
  7185. "border": "0",
  7186. "scrolling ": "no",
  7187. "style": {
  7188. "cssText": "border:0;width:100%;height:100%"
  7189. },
  7190. "src": "//cloud.cocorobo.cn/mind/"
  7191. })
  7192. _box.appendChild(_iframe);
  7193. _box.appendChild(_jie);
  7194. _formdiv = new U.UF.UI.form(
  7195. "思维导图-" + _username,
  7196. _box, { //"/jsmind/example/demo.html"
  7197. "id": "mind" + cid + stage + task + tool + _userid,
  7198. "style": {
  7199. "width": "90%",
  7200. "height": "90%",
  7201. "overflow": 'hidden'
  7202. },
  7203. "onresize": function () { }
  7204. }, {
  7205. closecallback: function () { }
  7206. }, {
  7207. "style": {
  7208. "height": "36px"
  7209. }
  7210. }).form; //创建窗体
  7211. _taskbar = {
  7212. "id": str + _formdiv.id,
  7213. "style": {
  7214. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7215. },
  7216. "name": "思维导图",
  7217. "forms": _formdiv,
  7218. "click": function () {
  7219. U.MD.D.I.openApplication(str, obj, info);
  7220. }
  7221. }
  7222. break;
  7223. case "doc":
  7224. aTool = 6;
  7225. _iframe = $$("iframe", {
  7226. "frameborder": "no",
  7227. "border": "0",
  7228. "scrolling ": "no",
  7229. "style": {
  7230. "cssText": "border:0;width:100%;height:100%"
  7231. },
  7232. "src": "/Office/Word/WordEditArea.htm"
  7233. })
  7234. _box.appendChild(_iframe);
  7235. _box.appendChild(_jie);
  7236. _formdiv = new U.UF.UI.form(
  7237. "协同文档-" + _username,
  7238. _box, {
  7239. "id": "doc" + cid + stage + task + tool + _userid,
  7240. "style": {
  7241. "width": "90%",
  7242. "height": "90%",
  7243. "overflow": 'hidden'
  7244. },
  7245. "onresize": function () { }
  7246. }, {
  7247. closecallback: function () { }
  7248. }, {
  7249. "style": {
  7250. "height": "36px"
  7251. }
  7252. }).form; //创建窗体
  7253. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7254. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7255. })
  7256. _taskbar = {
  7257. "id": str + _formdiv.id,
  7258. "style": {
  7259. "backgroundImage": "url(/img/icon/doc.png)"
  7260. },
  7261. "name": "协同文档",
  7262. "forms": _formdiv,
  7263. "click": function () {
  7264. U.MD.D.I.openApplication(str, obj, info);
  7265. }
  7266. }
  7267. break;
  7268. case "mindNetwork": //好友打开
  7269. aTool = 7;
  7270. _iframe = $$("iframe", {
  7271. "webkitallowfullscreen": "",
  7272. "mozallowfullscreen": "",
  7273. "allowfullscreen": "",
  7274. "frameborder": "no",
  7275. "border": "0",
  7276. "scrolling ": "no",
  7277. "style": {
  7278. "cssText": "border:0; width:100%; height:100%;"
  7279. },
  7280. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7281. })
  7282. _box.appendChild(_iframe);
  7283. _box.appendChild(_jie);
  7284. _formdiv = new U.UF.UI.form(
  7285. "思维网格-" + _username,
  7286. _box, {
  7287. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7288. "style": {
  7289. "width": "90%",
  7290. "height": "90%",
  7291. "overflow": 'hidden'
  7292. },
  7293. "onresize": function () { }
  7294. }, {
  7295. closecallback: function () { }
  7296. }, {
  7297. "style": {
  7298. "height": "36px"
  7299. }
  7300. }).form; //创建窗体
  7301. _taskbar = {
  7302. "id": str + _formdiv.id,
  7303. "style": {
  7304. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7305. },
  7306. "name": "思维网格",
  7307. "forms": _formdiv,
  7308. "click": function () {
  7309. U.MD.D.I.openApplication(str, obj, info);
  7310. }
  7311. }
  7312. break;
  7313. case "courseDesign":
  7314. _iframe = $$("iframe", {
  7315. "webkitallowfullscreen": "",
  7316. "mozallowfullscreen": "",
  7317. "allowfullscreen": "",
  7318. "frameborder": "no",
  7319. "border": "0",
  7320. "scrolling ": "no",
  7321. "style": {
  7322. "cssText": "border:0; width:100%; height:100%;"
  7323. },
  7324. "src": "/course-design-vue"
  7325. })
  7326. _box.appendChild(_iframe);
  7327. _box.appendChild(_jie);
  7328. _formdiv = new U.UF.UI.form(
  7329. "项目设计-" + _username,
  7330. _box, {
  7331. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7332. "style": {
  7333. "width": "90%",
  7334. "height": "90%",
  7335. "overflow": 'hidden'
  7336. },
  7337. "onresize": function () { }
  7338. }, {
  7339. closecallback: function () { }
  7340. }, {
  7341. "style": {
  7342. "height": "36px"
  7343. }
  7344. }).form; //创建窗体
  7345. _taskbar = {
  7346. "id": str + _formdiv.id,
  7347. "style": {
  7348. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7349. },
  7350. "name": "项目设计",
  7351. "forms": _formdiv,
  7352. "click": function () {
  7353. U.MD.D.I.openApplication(str, obj, info);
  7354. }
  7355. }
  7356. break;
  7357. }
  7358. const script1 = document.createElement("script");
  7359. script1.type = "text/javascript";
  7360. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7361. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7362. const script2 = document.createElement("script");
  7363. script2.type = "text/javascript";
  7364. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7365. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7366. const script3 = document.createElement("script");
  7367. script3.type = "text/javascript";
  7368. script3.charset = "UTF-8";
  7369. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7370. const script4 = document.createElement("script");
  7371. script4.type = "text/javascript";
  7372. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7373. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7374. if (_iframe) {
  7375. if (str == 'doc') {
  7376. _iframe = _formdiv.querySelector('iframe')
  7377. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7378. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7379. _iframe.contentWindow.document.body.appendChild(script1);
  7380. _iframe.contentWindow.document.body.appendChild(script2);
  7381. // _iframe.contentWindow.document.body.appendChild(script3);
  7382. _iframe.contentWindow.document.body.appendChild(script4);
  7383. })
  7384. if (onloadListener) {
  7385. _iframe.contentDocument.location.reload()
  7386. } else {
  7387. _iframe.contentDocument.location.reload()
  7388. }
  7389. } else if (str == 'courseDesign') {
  7390. U.UF.DL.iframeLoad(_iframe, function () {
  7391. // _iframe.contentWindow.U.MD.O.W.load();
  7392. // _iframe.contentWindow.document.body.appendChild(script1);
  7393. _iframe.contentWindow.document.body.appendChild(script2);
  7394. _iframe.contentWindow.document.body.appendChild(script4);
  7395. })
  7396. } else if (str == 'mind') {
  7397. _iframe = _formdiv.querySelector('iframe')
  7398. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7399. //
  7400. _iframe.contentWindow.document.body.appendChild(script1);
  7401. _iframe.contentWindow.document.body.appendChild(script2);
  7402. _iframe.contentWindow.document.body.appendChild(script4);
  7403. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7404. })
  7405. if (onloadListener) {
  7406. _iframe.contentDocument.location.reload()
  7407. } else {
  7408. _iframe.contentDocument.location.reload()
  7409. }
  7410. } else if (str == 'whiteboard') {
  7411. _iframe = _formdiv.querySelector('iframe')
  7412. let onloadListener = _iframe.onload = () => {
  7413. _iframe.contentWindow.document.body.appendChild(script1);
  7414. _iframe.contentWindow.document.body.appendChild(script2);
  7415. _iframe.contentWindow.document.body.appendChild(script4);
  7416. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7417. };
  7418. // if (onloadListener) {
  7419. // try {
  7420. // _iframe.src += "?cocorobo="+new Date().getTime()
  7421. // _iframe.contentWindow.document.location.reload()
  7422. // } catch (error) {
  7423. // }
  7424. // } else {
  7425. // _iframe.contentDocument.location.reload()
  7426. // }
  7427. } else {
  7428. _iframe.onload = () => {
  7429. _iframe.contentWindow.document.body.appendChild(script1);
  7430. _iframe.contentWindow.document.body.appendChild(script2);
  7431. // _iframe.contentWindow.document.body.appendChild(script3);
  7432. _iframe.contentWindow.document.body.appendChild(script4);
  7433. };
  7434. }
  7435. _jie.onclick = async () => {
  7436. let text = ''
  7437. if (aTool == 1) {
  7438. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7439. } else if (aTool == 6) {
  7440. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7441. } else if (aTool == 3) {
  7442. text = await U.MD.D.I.getEditorContent(_iframe);
  7443. }
  7444. _loading.style.display = 'flex'
  7445. console.log(_loading);
  7446. var _ajs = _iframe.contentWindow.document.createElement("script");
  7447. _ajs.type = "text/javascript";
  7448. _ajs.innerHTML =
  7449. // 'console.log(' + _loading + ');\n' +
  7450. 'var _js = document.createElement("script");\n' +
  7451. '_js.type="text/javascript";\n' +
  7452. '_js.charset="UTF-8";\n' +
  7453. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7454. "_js.onload = function(){\n" +
  7455. ' var a = document.getElementsByTagName("img")\n' +
  7456. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7457. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7458. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7459. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7460. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7461. "beforeUpload_shishi(file," +
  7462. "'" +
  7463. _userid +
  7464. "'" +
  7465. ", " +
  7466. "'" +
  7467. _cid +
  7468. "'" +
  7469. ", " +
  7470. "'" +
  7471. _stage +
  7472. "'" +
  7473. ", " +
  7474. "'" +
  7475. _task +
  7476. "'" +
  7477. ", " +
  7478. "'" +
  7479. _tool +
  7480. "'" +
  7481. ", " +
  7482. "'" +
  7483. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7484. "'" +
  7485. ", " +
  7486. "'" +
  7487. aTool +
  7488. "'" +
  7489. ", " +
  7490. "`" +
  7491. text +
  7492. "`" +
  7493. ")\n" +
  7494. " });\n" +
  7495. "}\n" +
  7496. "document.head.appendChild(_js);\n";
  7497. _iframe.contentWindow.document.head.appendChild(_ajs);
  7498. }
  7499. }
  7500. }
  7501. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7502. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7503. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7504. _userid = student.userid, //登录用户id
  7505. _username = student.student //用户名字
  7506. let _iframe;
  7507. let _cid = cid,
  7508. _stage = stage,
  7509. _task = task,
  7510. _tool = tool;
  7511. var _jie = $$("div", {
  7512. "style": {
  7513. "position": "absolute",
  7514. "bottom": "50px",
  7515. "right": "50px",
  7516. "zIndex": "9999",
  7517. "backgroundColor": "#2268bc",
  7518. "color": "#fff",
  7519. "padding": "12px 20px",
  7520. "cursor": "pointer",
  7521. "borderRadius": "4px",
  7522. },
  7523. "innerHTML": "提交作业"
  7524. })
  7525. let aTool = ''
  7526. let _loading = document.createElement('div')
  7527. _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;"
  7528. // _loading.id = "";
  7529. let _lchild = document.createElement('div')
  7530. let _limg = document.createElement('img')
  7531. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7532. _limg.style = "width: 26px;margin-right: 10px;"
  7533. _lchild.appendChild(_limg)
  7534. let _lspan = document.createElement('span')
  7535. _lspan.innerHTML = "上传中..."
  7536. _lchild.appendChild(_lspan)
  7537. _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%);"
  7538. _loading.appendChild(_lchild)
  7539. var _box = $$('div', {
  7540. "style": {
  7541. "position": "relative",
  7542. "width": "100%",
  7543. "height": "100%",
  7544. },
  7545. })
  7546. _box.appendChild(_loading)
  7547. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7548. switch (str) {
  7549. case "whiteboard":
  7550. aTool = 1;
  7551. _iframe = $$("iframe", {
  7552. "frameborder": "no",
  7553. "border": "0",
  7554. "scrolling ": "no",
  7555. "style": {
  7556. "cssText": "border:0;width:100%;height:100%"
  7557. },
  7558. "src": "https://beta.iwb.cocorobo.cn/"
  7559. })
  7560. _box.appendChild(_iframe);
  7561. _box.appendChild(_jie);
  7562. _formdiv = new U.UF.UI.form(
  7563. "电子白板-" + _username,
  7564. _box, {
  7565. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7566. "style": {
  7567. "width": "90%",
  7568. "height": "90%",
  7569. "overflow": 'hidden'
  7570. },
  7571. "onresize": function () { }
  7572. }, {
  7573. closecallback: function () { }
  7574. }, {
  7575. "style": {
  7576. "height": "36px"
  7577. }
  7578. }).form; //创建窗体
  7579. _taskbar = {
  7580. "id": str + _formdiv.id,
  7581. "style": {
  7582. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7583. },
  7584. "name": "电子白板",
  7585. "forms": _formdiv,
  7586. "click": function () {
  7587. U.MD.D.I.openApplication(str, obj, info);
  7588. }
  7589. }
  7590. break;
  7591. case "mind":
  7592. aTool = 3;
  7593. _iframe = $$("iframe", {
  7594. "frameborder": "no",
  7595. "border": "0",
  7596. "scrolling ": "no",
  7597. "style": {
  7598. "cssText": "border:0;width:100%;height:100%"
  7599. },
  7600. "src": "/kityminder-editor/dist/index.html"
  7601. })
  7602. _box.appendChild(_iframe);
  7603. _box.appendChild(_jie);
  7604. _formdiv = new U.UF.UI.form(
  7605. "思维导图-" + _username,
  7606. _box, { //"/jsmind/example/demo.html"
  7607. "id": "mind" + cid + stage + task + tool + _userid,
  7608. "style": {
  7609. "width": "90%",
  7610. "height": "90%",
  7611. "overflow": 'hidden'
  7612. },
  7613. "onresize": function () { }
  7614. }, {
  7615. closecallback: function () { }
  7616. }, {
  7617. "style": {
  7618. "height": "36px"
  7619. }
  7620. }).form; //创建窗体
  7621. _taskbar = {
  7622. "id": str + _formdiv.id,
  7623. "style": {
  7624. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7625. },
  7626. "name": "思维导图",
  7627. "forms": _formdiv,
  7628. "click": function () {
  7629. U.MD.D.I.openApplication(str, obj, info);
  7630. }
  7631. }
  7632. break;
  7633. case "MindMap":
  7634. aTool = 3;
  7635. _iframe = $$("iframe", {
  7636. "frameborder": "no",
  7637. "border": "0",
  7638. "scrolling ": "no",
  7639. "style": {
  7640. "cssText": "border:0;width:100%;height:100%"
  7641. },
  7642. "src": "//cloud.cocorobo.cn/mind/"
  7643. })
  7644. _box.appendChild(_iframe);
  7645. _box.appendChild(_jie);
  7646. _formdiv = new U.UF.UI.form(
  7647. "思维导图-" + _username,
  7648. _box, { //"/jsmind/example/demo.html"
  7649. "id": "mind" + cid + stage + task + tool + _userid,
  7650. "style": {
  7651. "width": "90%",
  7652. "height": "90%",
  7653. "overflow": 'hidden'
  7654. },
  7655. "onresize": function () { }
  7656. }, {
  7657. closecallback: function () { }
  7658. }, {
  7659. "style": {
  7660. "height": "36px"
  7661. }
  7662. }).form; //创建窗体
  7663. _taskbar = {
  7664. "id": str + _formdiv.id,
  7665. "style": {
  7666. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7667. },
  7668. "name": "思维导图",
  7669. "forms": _formdiv,
  7670. "click": function () {
  7671. U.MD.D.I.openApplication(str, obj, info);
  7672. }
  7673. }
  7674. break;
  7675. case "doc":
  7676. aTool = 6;
  7677. _iframe = $$("iframe", {
  7678. "frameborder": "no",
  7679. "border": "0",
  7680. "scrolling ": "no",
  7681. "style": {
  7682. "cssText": "border:0;width:100%;height:100%"
  7683. },
  7684. "src": "/Office/Word/WordEditArea.htm"
  7685. })
  7686. _box.appendChild(_iframe);
  7687. _box.appendChild(_jie);
  7688. _formdiv = new U.UF.UI.form(
  7689. "协同文档-" + _username,
  7690. _box, {
  7691. "id": "doc" + cid + stage + task + tool + _userid,
  7692. "style": {
  7693. "width": "90%",
  7694. "height": "90%",
  7695. "overflow": 'hidden'
  7696. },
  7697. "onresize": function () { }
  7698. }, {
  7699. closecallback: function () { }
  7700. }, {
  7701. "style": {
  7702. "height": "36px"
  7703. }
  7704. }).form; //创建窗体
  7705. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7706. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7707. })
  7708. _taskbar = {
  7709. "id": str + _formdiv.id,
  7710. "style": {
  7711. "backgroundImage": "url(/img/icon/doc.png)"
  7712. },
  7713. "name": "协同文档",
  7714. "forms": _formdiv,
  7715. "click": function () {
  7716. U.MD.D.I.openApplication(str, obj, info);
  7717. }
  7718. }
  7719. break;
  7720. case "mindNetwork": //好友打开
  7721. aTool = 7;
  7722. _iframe = $$("iframe", {
  7723. "webkitallowfullscreen": "",
  7724. "mozallowfullscreen": "",
  7725. "allowfullscreen": "",
  7726. "frameborder": "no",
  7727. "border": "0",
  7728. "scrolling ": "no",
  7729. "style": {
  7730. "cssText": "border:0; width:100%; height:100%;"
  7731. },
  7732. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7733. })
  7734. _box.appendChild(_iframe);
  7735. _box.appendChild(_jie);
  7736. _formdiv = new U.UF.UI.form(
  7737. "思维网格-" + _username,
  7738. _box, {
  7739. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7740. "style": {
  7741. "width": "90%",
  7742. "height": "90%",
  7743. "overflow": 'hidden'
  7744. },
  7745. "onresize": function () { }
  7746. }, {
  7747. closecallback: function () { }
  7748. }, {
  7749. "style": {
  7750. "height": "36px"
  7751. }
  7752. }).form; //创建窗体
  7753. _taskbar = {
  7754. "id": str + _formdiv.id,
  7755. "style": {
  7756. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7757. },
  7758. "name": "思维网格",
  7759. "forms": _formdiv,
  7760. "click": function () {
  7761. U.MD.D.I.openApplication(str, obj, info);
  7762. }
  7763. }
  7764. break;
  7765. case "courseDesign":
  7766. _iframe = $$("iframe", {
  7767. "webkitallowfullscreen": "",
  7768. "mozallowfullscreen": "",
  7769. "allowfullscreen": "",
  7770. "frameborder": "no",
  7771. "border": "0",
  7772. "scrolling ": "no",
  7773. "style": {
  7774. "cssText": "border:0; width:100%; height:100%;"
  7775. },
  7776. "src": "/course-design-vue"
  7777. })
  7778. _box.appendChild(_iframe);
  7779. _box.appendChild(_jie);
  7780. _formdiv = new U.UF.UI.form(
  7781. "项目设计-" + _username,
  7782. _box, {
  7783. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7784. "style": {
  7785. "width": "90%",
  7786. "height": "90%",
  7787. "overflow": 'hidden'
  7788. },
  7789. "onresize": function () { }
  7790. }, {
  7791. closecallback: function () { }
  7792. }, {
  7793. "style": {
  7794. "height": "36px"
  7795. }
  7796. }).form; //创建窗体
  7797. _taskbar = {
  7798. "id": str + _formdiv.id,
  7799. "style": {
  7800. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7801. },
  7802. "name": "项目设计",
  7803. "forms": _formdiv,
  7804. "click": function () {
  7805. U.MD.D.I.openApplication(str, obj, info);
  7806. }
  7807. }
  7808. break;
  7809. }
  7810. const script1 = document.createElement("script");
  7811. script1.type = "text/javascript";
  7812. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7813. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7814. const script2 = document.createElement("script");
  7815. script2.type = "text/javascript";
  7816. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7817. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7818. const script3 = document.createElement("script");
  7819. script3.type = "text/javascript";
  7820. script3.charset = "UTF-8";
  7821. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7822. const script4 = document.createElement("script");
  7823. script4.type = "text/javascript";
  7824. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7825. script4.src = window.origin + "/js/Common/jietu2E.js";
  7826. if (_iframe) {
  7827. if (str == 'doc') {
  7828. _iframe = _formdiv.querySelector('iframe')
  7829. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7830. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7831. _iframe.contentWindow.document.body.appendChild(script1);
  7832. _iframe.contentWindow.document.body.appendChild(script2);
  7833. // _iframe.contentWindow.document.body.appendChild(script3);
  7834. _iframe.contentWindow.document.body.appendChild(script4);
  7835. })
  7836. if (onloadListener) {
  7837. _iframe.contentDocument.location.reload()
  7838. } else {
  7839. _iframe.contentDocument.location.reload()
  7840. }
  7841. } else if (str == 'courseDesign') {
  7842. U.UF.DL.iframeLoad(_iframe, function () {
  7843. // _iframe.contentWindow.U.MD.O.W.load();
  7844. // _iframe.contentWindow.document.body.appendChild(script1);
  7845. _iframe.contentWindow.document.body.appendChild(script2);
  7846. _iframe.contentWindow.document.body.appendChild(script4);
  7847. })
  7848. } else if (str == 'mind') {
  7849. _iframe = _formdiv.querySelector('iframe')
  7850. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7851. //
  7852. _iframe.contentWindow.document.body.appendChild(script1);
  7853. _iframe.contentWindow.document.body.appendChild(script2);
  7854. _iframe.contentWindow.document.body.appendChild(script4);
  7855. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7856. })
  7857. if (onloadListener) {
  7858. _iframe.contentDocument.location.reload()
  7859. } else {
  7860. _iframe.contentDocument.location.reload()
  7861. }
  7862. } else if (str == 'whiteboard') {
  7863. _iframe = _formdiv.querySelector('iframe')
  7864. let onloadListener = _iframe.onload = () => {
  7865. _iframe.contentWindow.document.body.appendChild(script1);
  7866. _iframe.contentWindow.document.body.appendChild(script2);
  7867. _iframe.contentWindow.document.body.appendChild(script4);
  7868. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7869. };
  7870. // if (onloadListener) {
  7871. // try {
  7872. // _iframe.src += "?cocorobo="+new Date().getTime()
  7873. // _iframe.contentWindow.document.location.reload()
  7874. // } catch (error) {
  7875. // }
  7876. // } else {
  7877. // _iframe.contentDocument.location.reload()
  7878. // }
  7879. } else {
  7880. _iframe.onload = () => {
  7881. _iframe.contentWindow.document.body.appendChild(script1);
  7882. _iframe.contentWindow.document.body.appendChild(script2);
  7883. // _iframe.contentWindow.document.body.appendChild(script3);
  7884. _iframe.contentWindow.document.body.appendChild(script4);
  7885. };
  7886. }
  7887. _jie.onclick = async () => {
  7888. let text = ''
  7889. if (aTool == 1) {
  7890. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7891. } else if (aTool == 6) {
  7892. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7893. } else if (aTool == 3) {
  7894. text = await U.MD.D.I.getEditorContent(_iframe);
  7895. }
  7896. _loading.style.display = 'flex'
  7897. console.log(_loading);
  7898. var _ajs = _iframe.contentWindow.document.createElement("script");
  7899. _ajs.type = "text/javascript";
  7900. _ajs.innerHTML =
  7901. // 'console.log(' + _loading + ');\n' +
  7902. 'var _js = document.createElement("script");\n' +
  7903. '_js.type="text/javascript";\n' +
  7904. '_js.charset="UTF-8";\n' +
  7905. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7906. "_js.onload = function(){\n" +
  7907. ' var a = document.getElementsByTagName("img")\n' +
  7908. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7909. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7910. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7911. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7912. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7913. "beforeUpload_shishi(file," +
  7914. "'" +
  7915. _userid +
  7916. "'" +
  7917. ", " +
  7918. "'" +
  7919. _cid +
  7920. "'" +
  7921. ", " +
  7922. "'" +
  7923. _stage +
  7924. "'" +
  7925. ", " +
  7926. "'" +
  7927. _task +
  7928. "'" +
  7929. ", " +
  7930. "'" +
  7931. _tool +
  7932. "'" +
  7933. ", " +
  7934. "'" +
  7935. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7936. "'" +
  7937. ", " +
  7938. "'" +
  7939. aTool +
  7940. "'" +
  7941. ", " +
  7942. "`" +
  7943. text +
  7944. "`" +
  7945. ")\n" +
  7946. " });\n" +
  7947. "}\n" +
  7948. "document.head.appendChild(_js);\n";
  7949. _iframe.contentWindow.document.head.appendChild(_ajs);
  7950. }
  7951. }
  7952. }
  7953. U.MD.D.I.getEditorContent = function (iframe) {
  7954. return new Promise((resolve, reject) => {
  7955. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7956. console.log(content);
  7957. resolve(content)
  7958. });
  7959. });
  7960. }
  7961. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7962. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7963. // if (res.value[0].length > 0) {
  7964. // // resolve(res.value[0][0].text);
  7965. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7966. // $(fileInput).val('');
  7967. // });
  7968. // }
  7969. // }, [], { "type": "GET", "withCredentials": true });
  7970. var xmlhttp;
  7971. var Mac, Sn, DeviceId
  7972. if (window.XMLHttpRequest) {
  7973. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7974. xmlhttp = new XMLHttpRequest();
  7975. } else {
  7976. // IE6, IE5 浏览器执行代码
  7977. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7978. }
  7979. xmlhttp.onreadystatechange = function () {
  7980. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7981. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7982. // resolve(res.value[0][0].text);
  7983. if (type == '2') {
  7984. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7985. } else if (type == '3') {
  7986. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7987. }
  7988. } else {
  7989. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7990. }
  7991. }
  7992. }
  7993. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7994. xmlhttp.send();
  7995. }
  7996. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7997. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7998. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7999. _userinfo = US.userInfo, //登录用户信息
  8000. _userid = US.userInfo.userid //登录用户id
  8001. let _iframe;
  8002. let _cid = cid,
  8003. _stage = stage,
  8004. _task = task,
  8005. _tool = tool;
  8006. var _jie = $$("div", {
  8007. "style": {
  8008. "position": "absolute",
  8009. "bottom": "50px",
  8010. "right": "50px",
  8011. "zIndex": "9999",
  8012. "backgroundColor": "#2268bc",
  8013. "color": "#fff",
  8014. "padding": "12px 20px",
  8015. "cursor": "pointer",
  8016. "borderRadius": "4px",
  8017. },
  8018. "innerHTML": "确认并提交"
  8019. })
  8020. let aTool = ''
  8021. let _loading = document.createElement('div')
  8022. _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;"
  8023. // _loading.id = "";
  8024. let _lchild = document.createElement('div')
  8025. let _limg = document.createElement('img')
  8026. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8027. _limg.style = "width: 26px;margin-right: 10px;"
  8028. _lchild.appendChild(_limg)
  8029. let _lspan = document.createElement('span')
  8030. _lspan.innerHTML = "上传中..."
  8031. _lchild.appendChild(_lspan)
  8032. _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%);"
  8033. _loading.appendChild(_lchild)
  8034. var _box = $$('div', {
  8035. "style": {
  8036. "position": "relative",
  8037. "width": "100%",
  8038. "height": "100%",
  8039. },
  8040. })
  8041. _box.appendChild(_loading)
  8042. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8043. switch (str) {
  8044. case "whiteboard":
  8045. aTool = 1;
  8046. _iframe = $$("iframe", {
  8047. "frameborder": "no",
  8048. "border": "0",
  8049. "scrolling ": "no",
  8050. "style": {
  8051. "cssText": "border:0;width:100%;height:100%"
  8052. },
  8053. "src": "https://beta.iwb.cocorobo.cn/"
  8054. })
  8055. _box.appendChild(_iframe);
  8056. _box.appendChild(_jie);
  8057. _formdiv = new U.UF.UI.form(
  8058. "电子白板",
  8059. _box, {
  8060. "id": "whiteboards" + cid + stage + task + tool,
  8061. "style": {
  8062. "width": "90%",
  8063. "height": "90%",
  8064. "overflow": 'hidden'
  8065. },
  8066. "onresize": function () { }
  8067. }, {
  8068. closecallback: function () { }
  8069. }, {
  8070. "style": {
  8071. "height": "36px"
  8072. }
  8073. }).form; //创建窗体
  8074. _taskbar = {
  8075. "id": str + _formdiv.id,
  8076. "style": {
  8077. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8078. },
  8079. "name": "电子白板",
  8080. "forms": _formdiv,
  8081. "click": function () {
  8082. U.MD.D.I.openApplication(str, obj, info);
  8083. }
  8084. }
  8085. break;
  8086. case "mind":
  8087. aTool = 3;
  8088. _iframe = $$("iframe", {
  8089. "frameborder": "no",
  8090. "border": "0",
  8091. "scrolling ": "no",
  8092. "style": {
  8093. "cssText": "border:0;width:100%;height:100%"
  8094. },
  8095. "src": "/kityminder-editor/dist/index.html"
  8096. });
  8097. _box.appendChild(_iframe);
  8098. _box.appendChild(_jie);
  8099. _formdiv = new U.UF.UI.form(
  8100. "思维导图",
  8101. _box, { //"/jsmind/example/demo.html"
  8102. "id": "minds" + cid + stage + task + tool,
  8103. "style": {
  8104. "width": "90%",
  8105. "height": "90%",
  8106. "overflow": 'hidden'
  8107. },
  8108. "onresize": function () { }
  8109. }, {
  8110. closecallback: function () { }
  8111. }, {
  8112. "style": {
  8113. "height": "36px"
  8114. }
  8115. }).form; //创建窗体
  8116. _taskbar = {
  8117. "id": str + _formdiv.id,
  8118. "style": {
  8119. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8120. },
  8121. "name": "思维导图",
  8122. "forms": _formdiv,
  8123. "click": function () {
  8124. U.MD.D.I.openApplication(str, obj, info);
  8125. }
  8126. }
  8127. break;
  8128. case "doc":
  8129. aTool = 6;
  8130. _iframe = $$("iframe", {
  8131. "frameborder": "no",
  8132. "border": "0",
  8133. "scrolling ": "no",
  8134. "style": {
  8135. "cssText": "border:0;width:100%;height:100%"
  8136. },
  8137. "src": "/Office/Word/WordEditArea.htm"
  8138. })
  8139. _box.appendChild(_iframe);
  8140. _box.appendChild(_jie);
  8141. _formdiv = new U.UF.UI.form(
  8142. "协同文档",
  8143. _box, {
  8144. "id": "docs" + cid + stage + task + tool,
  8145. "style": {
  8146. "width": "90%",
  8147. "height": "90%",
  8148. "overflow": 'hidden'
  8149. },
  8150. "onresize": function () { }
  8151. }, {
  8152. closecallback: function () { }
  8153. }, {
  8154. "style": {
  8155. "height": "36px"
  8156. }
  8157. }).form; //创建窗体
  8158. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8159. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8160. })
  8161. _taskbar = {
  8162. "id": str + _formdiv.id,
  8163. "style": {
  8164. "backgroundImage": "url(/img/icon/doc.png)"
  8165. },
  8166. "name": "协同文档",
  8167. "forms": _formdiv,
  8168. "click": function () {
  8169. U.MD.D.I.openApplication(str, obj, info);
  8170. }
  8171. }
  8172. break;
  8173. }
  8174. const script1 = document.createElement("script");
  8175. script1.type = "text/javascript";
  8176. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8177. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8178. const script2 = document.createElement("script");
  8179. script2.type = "text/javascript";
  8180. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8181. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8182. const script3 = document.createElement("script");
  8183. script3.type = "text/javascript";
  8184. script3.charset = "UTF-8";
  8185. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8186. const script4 = document.createElement("script");
  8187. script4.type = "text/javascript";
  8188. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8189. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8190. if (_iframe) {
  8191. if (str == 'doc') {
  8192. _iframe = _formdiv.querySelector('iframe')
  8193. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8194. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8195. _iframe.contentWindow.document.body.appendChild(script1);
  8196. _iframe.contentWindow.document.body.appendChild(script2);
  8197. // _iframe.contentWindow.document.body.appendChild(script3);
  8198. _iframe.contentWindow.document.body.appendChild(script4);
  8199. })
  8200. if (onloadListener) {
  8201. _iframe.contentDocument.location.reload()
  8202. } else {
  8203. _iframe.contentDocument.location.reload()
  8204. }
  8205. } else if (str == 'mind') {
  8206. _iframe = _formdiv.querySelector('iframe')
  8207. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8208. _iframe.contentWindow.document.body.appendChild(script1);
  8209. _iframe.contentWindow.document.body.appendChild(script2);
  8210. _iframe.contentWindow.document.body.appendChild(script4);
  8211. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8212. })
  8213. if (onloadListener) {
  8214. _iframe.contentDocument.location.reload()
  8215. } else {
  8216. _iframe.contentDocument.location.reload()
  8217. }
  8218. } else {
  8219. _iframe.onload = () => {
  8220. _iframe.contentWindow.document.body.appendChild(script1);
  8221. _iframe.contentWindow.document.body.appendChild(script2);
  8222. // _iframe.contentWindow.document.body.appendChild(script3);
  8223. _iframe.contentWindow.document.body.appendChild(script4);
  8224. };
  8225. }
  8226. _jie.onclick = async () => {
  8227. let text = ''
  8228. if (aTool == 6) {
  8229. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8230. } else if (aTool == 3) {
  8231. text = await U.MD.D.I.getEditorContent(_iframe);
  8232. }
  8233. _loading.style.display = 'flex'
  8234. console.log(_loading);
  8235. var _ajs = _iframe.contentWindow.document.createElement("script");
  8236. _ajs.type = "text/javascript";
  8237. _ajs.innerHTML =
  8238. // 'console.log(' + _loading + ');\n' +
  8239. 'var _js = document.createElement("script");\n' +
  8240. '_js.type="text/javascript";\n' +
  8241. '_js.charset="UTF-8";\n' +
  8242. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8243. "_js.onload = function(){\n" +
  8244. ' var a = document.getElementsByTagName("img")\n' +
  8245. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8246. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8247. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8248. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8249. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8250. "beforeUpload_shishi(file," +
  8251. "'" +
  8252. _userid +
  8253. "'" +
  8254. ", " +
  8255. "'" +
  8256. _cid +
  8257. "'" +
  8258. ", " +
  8259. "'" +
  8260. _stage +
  8261. "'" +
  8262. ", " +
  8263. "'" +
  8264. _task +
  8265. "'" +
  8266. ", " +
  8267. "'" +
  8268. _tool +
  8269. "'" +
  8270. ", " +
  8271. "'" +
  8272. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8273. "'" +
  8274. ", " +
  8275. "'" +
  8276. aTool +
  8277. "'" +
  8278. ", " +
  8279. "`" +
  8280. text +
  8281. "`" +
  8282. ")\n" +
  8283. " });\n" +
  8284. "}\n" +
  8285. "document.head.appendChild(_js);\n";
  8286. _iframe.contentWindow.document.head.appendChild(_ajs);
  8287. }
  8288. }
  8289. //U.MD.D.I.openClick(str);
  8290. //如果有任务栏信息
  8291. // if (_taskbar) {
  8292. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8293. // }
  8294. }
  8295. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8296. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8297. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8298. _userinfo = US.userInfo, //登录用户信息
  8299. _userid = US.userInfo.userid //登录用户id
  8300. let _iframe;
  8301. let _cid = cid,
  8302. _stage = stage,
  8303. _task = task,
  8304. _tool = tool;
  8305. var _jie = $$("div", {
  8306. "style": {
  8307. "position": "absolute",
  8308. "bottom": "50px",
  8309. "right": "50px",
  8310. "zIndex": "9999",
  8311. "backgroundColor": "#2268bc",
  8312. "color": "#fff",
  8313. "padding": "12px 20px",
  8314. "cursor": "pointer",
  8315. "borderRadius": "4px",
  8316. },
  8317. "innerHTML": "确认并提交"
  8318. })
  8319. let aTool = ''
  8320. let _loading = document.createElement('div')
  8321. _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;"
  8322. // _loading.id = "";
  8323. let _lchild = document.createElement('div')
  8324. let _limg = document.createElement('img')
  8325. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8326. _limg.style = "width: 26px;margin-right: 10px;"
  8327. _lchild.appendChild(_limg)
  8328. let _lspan = document.createElement('span')
  8329. _lspan.innerHTML = "上传中..."
  8330. _lchild.appendChild(_lspan)
  8331. _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%);"
  8332. _loading.appendChild(_lchild)
  8333. var _box = $$('div', {
  8334. "style": {
  8335. "position": "relative",
  8336. "width": "100%",
  8337. "height": "100%",
  8338. },
  8339. })
  8340. _box.appendChild(_loading)
  8341. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8342. switch (str) {
  8343. case "whiteboard":
  8344. aTool = 1;
  8345. _iframe = $$("iframe", {
  8346. "frameborder": "no",
  8347. "border": "0",
  8348. "scrolling ": "no",
  8349. "style": {
  8350. "cssText": "border:0;width:100%;height:100%"
  8351. },
  8352. "src": "https://beta.iwb.cocorobo.cn/"
  8353. })
  8354. _box.appendChild(_iframe);
  8355. _box.appendChild(_jie);
  8356. _formdiv = new U.UF.UI.form(
  8357. "电子白板",
  8358. _box, {
  8359. "id": "whiteboards" + cid + stage + task + tool,
  8360. "style": {
  8361. "width": "90%",
  8362. "height": "90%",
  8363. "overflow": 'hidden'
  8364. },
  8365. "onresize": function () { }
  8366. }, {
  8367. closecallback: function () { }
  8368. }, {
  8369. "style": {
  8370. "height": "36px"
  8371. }
  8372. }).form; //创建窗体
  8373. _taskbar = {
  8374. "id": str + _formdiv.id,
  8375. "style": {
  8376. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8377. },
  8378. "name": "电子白板",
  8379. "forms": _formdiv,
  8380. "click": function () {
  8381. U.MD.D.I.openApplication(str, obj, info);
  8382. }
  8383. }
  8384. break;
  8385. case "mind":
  8386. aTool = 3;
  8387. _iframe = $$("iframe", {
  8388. "frameborder": "no",
  8389. "border": "0",
  8390. "scrolling ": "no",
  8391. "style": {
  8392. "cssText": "border:0;width:100%;height:100%"
  8393. },
  8394. "src": "/kityminder-editor/dist/index.html"
  8395. });
  8396. _box.appendChild(_iframe);
  8397. _box.appendChild(_jie);
  8398. _formdiv = new U.UF.UI.form(
  8399. "思维导图",
  8400. _box, { //"/jsmind/example/demo.html"
  8401. "id": "minds" + cid + stage + task + tool,
  8402. "style": {
  8403. "width": "90%",
  8404. "height": "90%",
  8405. "overflow": 'hidden'
  8406. },
  8407. "onresize": function () { }
  8408. }, {
  8409. closecallback: function () { }
  8410. }, {
  8411. "style": {
  8412. "height": "36px"
  8413. }
  8414. }).form; //创建窗体
  8415. _taskbar = {
  8416. "id": str + _formdiv.id,
  8417. "style": {
  8418. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8419. },
  8420. "name": "思维导图",
  8421. "forms": _formdiv,
  8422. "click": function () {
  8423. U.MD.D.I.openApplication(str, obj, info);
  8424. }
  8425. }
  8426. break;
  8427. case "doc":
  8428. aTool = 6;
  8429. _iframe = $$("iframe", {
  8430. "frameborder": "no",
  8431. "border": "0",
  8432. "scrolling ": "no",
  8433. "style": {
  8434. "cssText": "border:0;width:100%;height:100%"
  8435. },
  8436. "src": "/Office/Word/WordEditArea.htm"
  8437. })
  8438. _box.appendChild(_iframe);
  8439. _box.appendChild(_jie);
  8440. _formdiv = new U.UF.UI.form(
  8441. "协同文档",
  8442. _box, {
  8443. "id": "docs" + cid + stage + task + tool,
  8444. "style": {
  8445. "width": "90%",
  8446. "height": "90%",
  8447. "overflow": 'hidden'
  8448. },
  8449. "onresize": function () { }
  8450. }, {
  8451. closecallback: function () { }
  8452. }, {
  8453. "style": {
  8454. "height": "36px"
  8455. }
  8456. }).form; //创建窗体
  8457. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8458. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8459. })
  8460. _taskbar = {
  8461. "id": str + _formdiv.id,
  8462. "style": {
  8463. "backgroundImage": "url(/img/icon/doc.png)"
  8464. },
  8465. "name": "协同文档",
  8466. "forms": _formdiv,
  8467. "click": function () {
  8468. U.MD.D.I.openApplication(str, obj, info);
  8469. }
  8470. }
  8471. break;
  8472. }
  8473. const script1 = document.createElement("script");
  8474. script1.type = "text/javascript";
  8475. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8476. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8477. const script2 = document.createElement("script");
  8478. script2.type = "text/javascript";
  8479. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8480. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8481. const script3 = document.createElement("script");
  8482. script3.type = "text/javascript";
  8483. script3.charset = "UTF-8";
  8484. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8485. const script4 = document.createElement("script");
  8486. script4.type = "text/javascript";
  8487. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8488. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8489. if (_iframe) {
  8490. if (str == 'doc') {
  8491. _iframe = _formdiv.querySelector('iframe')
  8492. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8493. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8494. _iframe.contentWindow.document.body.appendChild(script1);
  8495. _iframe.contentWindow.document.body.appendChild(script2);
  8496. // _iframe.contentWindow.document.body.appendChild(script3);
  8497. _iframe.contentWindow.document.body.appendChild(script4);
  8498. })
  8499. if (onloadListener) {
  8500. _iframe.contentDocument.location.reload()
  8501. } else {
  8502. _iframe.contentDocument.location.reload()
  8503. }
  8504. } else if (str == 'mind') {
  8505. _iframe = _formdiv.querySelector('iframe')
  8506. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8507. _iframe.contentWindow.document.body.appendChild(script1);
  8508. _iframe.contentWindow.document.body.appendChild(script2);
  8509. _iframe.contentWindow.document.body.appendChild(script4);
  8510. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8511. })
  8512. if (onloadListener) {
  8513. _iframe.contentDocument.location.reload()
  8514. } else {
  8515. _iframe.contentDocument.location.reload()
  8516. }
  8517. } else {
  8518. _iframe.onload = () => {
  8519. _iframe.contentWindow.document.body.appendChild(script1);
  8520. _iframe.contentWindow.document.body.appendChild(script2);
  8521. // _iframe.contentWindow.document.body.appendChild(script3);
  8522. _iframe.contentWindow.document.body.appendChild(script4);
  8523. };
  8524. }
  8525. _jie.onclick = async () => {
  8526. let text = ''
  8527. if (aTool == 6) {
  8528. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8529. } else if (aTool == 3) {
  8530. text = await U.MD.D.I.getEditorContent(_iframe);
  8531. }
  8532. _loading.style.display = 'flex'
  8533. console.log(_loading);
  8534. var _ajs = _iframe.contentWindow.document.createElement("script");
  8535. _ajs.type = "text/javascript";
  8536. _ajs.innerHTML =
  8537. // 'console.log(' + _loading + ');\n' +
  8538. 'var _js = document.createElement("script");\n' +
  8539. '_js.type="text/javascript";\n' +
  8540. '_js.charset="UTF-8";\n' +
  8541. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8542. "_js.onload = function(){\n" +
  8543. ' var a = document.getElementsByTagName("img")\n' +
  8544. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8545. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8546. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8547. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8548. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8549. "beforeUpload_shishi(file," +
  8550. "'" +
  8551. _userid +
  8552. "'" +
  8553. ", " +
  8554. "'" +
  8555. _cid +
  8556. "'" +
  8557. ", " +
  8558. "'" +
  8559. _stage +
  8560. "'" +
  8561. ", " +
  8562. "'" +
  8563. _task +
  8564. "'" +
  8565. ", " +
  8566. "'" +
  8567. _tool +
  8568. "'" +
  8569. ", " +
  8570. "'" +
  8571. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8572. "'" +
  8573. ", " +
  8574. "'" +
  8575. aTool +
  8576. "'" +
  8577. ", " +
  8578. "`" +
  8579. text +
  8580. "`" +
  8581. ")\n" +
  8582. " });\n" +
  8583. "}\n" +
  8584. "document.head.appendChild(_js);\n";
  8585. _iframe.contentWindow.document.head.appendChild(_ajs);
  8586. }
  8587. }
  8588. //U.MD.D.I.openClick(str);
  8589. //如果有任务栏信息
  8590. // if (_taskbar) {
  8591. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8592. // }
  8593. }
  8594. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8595. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8596. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8597. _userinfo = US.userInfo, //登录用户信息
  8598. _userid = US.userInfo.userid //登录用户id
  8599. let _iframe;
  8600. let _cid = cid,
  8601. _stage = stage,
  8602. _task = task,
  8603. _tool = tool;
  8604. var _jie = $$("div", {
  8605. "style": {
  8606. "position": "absolute",
  8607. "bottom": "50px",
  8608. "right": "50px",
  8609. "zIndex": "9999",
  8610. "backgroundColor": "#2268bc",
  8611. "color": "#fff",
  8612. "padding": "12px 20px",
  8613. "cursor": "pointer",
  8614. "borderRadius": "4px",
  8615. },
  8616. "innerHTML": "上传模板"
  8617. })
  8618. let aTool = ''
  8619. let _loading = document.createElement('div')
  8620. _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;"
  8621. // _loading.id = "";
  8622. let _lchild = document.createElement('div')
  8623. let _limg = document.createElement('img')
  8624. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8625. _limg.style = "width: 26px;margin-right: 10px;"
  8626. _lchild.appendChild(_limg)
  8627. let _lspan = document.createElement('span')
  8628. _lspan.innerHTML = "上传中..."
  8629. _lchild.appendChild(_lspan)
  8630. _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%);"
  8631. _loading.appendChild(_lchild)
  8632. var _box = $$('div', {
  8633. "style": {
  8634. "position": "relative",
  8635. "width": "100%",
  8636. "height": "100%",
  8637. },
  8638. })
  8639. _box.appendChild(_loading)
  8640. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8641. switch (str) {
  8642. case "whiteboard":
  8643. aTool = 1;
  8644. _iframe = $$("iframe", {
  8645. "frameborder": "no",
  8646. "border": "0",
  8647. "scrolling ": "no",
  8648. "style": {
  8649. "cssText": "border:0;width:100%;height:100%"
  8650. },
  8651. "src": "https://beta.iwb.cocorobo.cn/"
  8652. })
  8653. _box.appendChild(_iframe);
  8654. _box.appendChild(_jie);
  8655. _formdiv = new U.UF.UI.form(
  8656. "电子白板",
  8657. _box, {
  8658. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8659. "style": {
  8660. "width": "90%",
  8661. "height": "90%",
  8662. "overflow": 'hidden'
  8663. },
  8664. "onresize": function () { }
  8665. }, {
  8666. closecallback: function () { }
  8667. }, {
  8668. "style": {
  8669. "height": "36px"
  8670. }
  8671. }).form; //创建窗体
  8672. _taskbar = {
  8673. "id": str + _formdiv.id,
  8674. "style": {
  8675. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8676. },
  8677. "name": "电子白板",
  8678. "forms": _formdiv,
  8679. "click": function () {
  8680. U.MD.D.I.openApplication(str, obj, info);
  8681. }
  8682. }
  8683. break;
  8684. case "mind":
  8685. aTool = 3;
  8686. _iframe = $$("iframe", {
  8687. "frameborder": "no",
  8688. "border": "0",
  8689. "scrolling ": "no",
  8690. "style": {
  8691. "cssText": "border:0;width:100%;height:100%"
  8692. },
  8693. "src": "/kityminder-editor/dist/index.html"
  8694. });
  8695. _box.appendChild(_iframe);
  8696. _box.appendChild(_jie);
  8697. _formdiv = new U.UF.UI.form(
  8698. "思维导图",
  8699. _box, { //"/jsmind/example/demo.html"
  8700. "id": "minds_Yu" + cid + stage + task + tool,
  8701. "style": {
  8702. "width": "90%",
  8703. "height": "90%",
  8704. "overflow": 'hidden'
  8705. },
  8706. "onresize": function () { }
  8707. }, {
  8708. closecallback: function () { }
  8709. }, {
  8710. "style": {
  8711. "height": "36px"
  8712. }
  8713. }).form; //创建窗体
  8714. _taskbar = {
  8715. "id": str + _formdiv.id,
  8716. "style": {
  8717. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8718. },
  8719. "name": "思维导图",
  8720. "forms": _formdiv,
  8721. "click": function () {
  8722. U.MD.D.I.openApplication(str, obj, info);
  8723. }
  8724. }
  8725. break;
  8726. case "doc":
  8727. aTool = 6;
  8728. _iframe = $$("iframe", {
  8729. "frameborder": "no",
  8730. "border": "0",
  8731. "scrolling ": "no",
  8732. "style": {
  8733. "cssText": "border:0;width:100%;height:100%"
  8734. },
  8735. "src": "/Office/Word/WordEditArea.htm"
  8736. })
  8737. _box.appendChild(_iframe);
  8738. _box.appendChild(_jie);
  8739. _formdiv = new U.UF.UI.form(
  8740. "协同文档",
  8741. _box, {
  8742. "id": "docs_Yu" + cid + stage + task + tool,
  8743. "style": {
  8744. "width": "90%",
  8745. "height": "90%",
  8746. "overflow": 'hidden'
  8747. },
  8748. "onresize": function () { }
  8749. }, {
  8750. closecallback: function () { }
  8751. }, {
  8752. "style": {
  8753. "height": "36px"
  8754. }
  8755. }).form; //创建窗体
  8756. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8757. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8758. })
  8759. _taskbar = {
  8760. "id": str + _formdiv.id,
  8761. "style": {
  8762. "backgroundImage": "url(/img/icon/doc.png)"
  8763. },
  8764. "name": "协同文档",
  8765. "forms": _formdiv,
  8766. "click": function () {
  8767. U.MD.D.I.openApplication(str, obj, info);
  8768. }
  8769. }
  8770. break;
  8771. case "CocoPi":
  8772. aTool = 57;
  8773. _iframe = $$("iframe", {
  8774. "allowpaymentrequest": "allowpaymentrequest",
  8775. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8776. "webkitallowfullscreen": "",
  8777. "mozallowfullscreen": "",
  8778. "frameborder": "no",
  8779. "border": "0",
  8780. "scrolling ": "no",
  8781. "style": {
  8782. "cssText": "border:0;width:100%;height:100%"
  8783. },
  8784. "src": "https://pi.cocorobo.cn/"
  8785. })
  8786. _box.appendChild(_iframe);
  8787. _box.appendChild(_jie);
  8788. _formdiv = new U.UF.UI.form(
  8789. "CocoPi",
  8790. _box, {
  8791. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8792. "style": {
  8793. "width": "90%",
  8794. "height": "90%",
  8795. "overflow": 'hidden'
  8796. },
  8797. "onresize": function () { }
  8798. }, {
  8799. closecallback: function () { }
  8800. }, {
  8801. "style": {
  8802. "height": "36px"
  8803. }
  8804. }).form; //创建窗体
  8805. _taskbar = {
  8806. "id": str + _formdiv.id,
  8807. "style": {
  8808. "backgroundImage": "url(/img/icon/cocopi.png)"
  8809. },
  8810. "name": "CocoPi",
  8811. "forms": _formdiv,
  8812. "click": function () {
  8813. U.MD.D.I.openApplication(str, obj, info);
  8814. }
  8815. }
  8816. break;
  8817. }
  8818. if (_iframe) {
  8819. if (str == 'doc') {
  8820. _iframe = _formdiv.querySelector('iframe')
  8821. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8822. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8823. })
  8824. if (onloadListener) {
  8825. _iframe.contentDocument.location.reload()
  8826. } else {
  8827. _iframe.contentDocument.location.reload()
  8828. }
  8829. } else if (str == 'mind') {
  8830. _iframe = _formdiv.querySelector('iframe')
  8831. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8832. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8833. })
  8834. if (onloadListener) {
  8835. _iframe.contentDocument.location.reload()
  8836. } else {
  8837. _iframe.contentDocument.location.reload()
  8838. }
  8839. } else if (str == 'whiteboard') {
  8840. _iframe = _formdiv.querySelector('iframe')
  8841. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8842. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8843. })
  8844. // if (onloadListener) {
  8845. // try {
  8846. // _iframe.src += "?cocorobo="+new Date().getTime()
  8847. // _iframe.contentWindow.document.location.reload()
  8848. // } catch (error) {
  8849. // }
  8850. // } else {
  8851. // _iframe.contentDocument.location.reload()
  8852. // }
  8853. } else if (str == 'CocoPi') {
  8854. _iframe = _formdiv.querySelector('iframe')
  8855. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8856. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8857. })
  8858. if (onloadListener) {
  8859. _iframe.contentDocument.location.reload()
  8860. } else {
  8861. _iframe.contentDocument.location.reload()
  8862. }
  8863. } else {
  8864. _iframe.onload = () => { };
  8865. }
  8866. _jie.onclick = async () => {
  8867. let text = ''
  8868. let type = '2'
  8869. if (aTool == 1) {
  8870. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8871. type = '3'
  8872. } else if (aTool == 6) {
  8873. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8874. type = '1'
  8875. } else if (aTool == 3) {
  8876. text = await U.MD.D.I.getEditorContent(_iframe);
  8877. type = '2'
  8878. } else if (aTool == 57) {
  8879. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8880. type = '4'
  8881. }
  8882. _loading.style.display = 'flex'
  8883. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8884. }
  8885. }
  8886. //U.MD.D.I.openClick(str);
  8887. //如果有任务栏信息
  8888. // if (_taskbar) {
  8889. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8890. // }
  8891. }
  8892. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8893. var xmlhttp;
  8894. var Mac, Sn, DeviceId
  8895. if (window.XMLHttpRequest) {
  8896. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8897. xmlhttp = new XMLHttpRequest();
  8898. } else {
  8899. // IE6, IE5 浏览器执行代码
  8900. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8901. }
  8902. xmlhttp.onreadystatechange = function () {
  8903. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8904. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8905. // resolve(res.value[0][0].text);
  8906. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8907. }
  8908. }
  8909. }
  8910. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8911. xmlhttp.send();
  8912. }
  8913. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8914. var xmlhttp;
  8915. var Mac, Sn, DeviceId
  8916. if (window.XMLHttpRequest) {
  8917. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8918. xmlhttp = new XMLHttpRequest();
  8919. } else {
  8920. // IE6, IE5 浏览器执行代码
  8921. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8922. }
  8923. xmlhttp.onreadystatechange = function () {
  8924. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8925. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8926. // resolve(res.value[0][0].text);
  8927. if (type == '2') {
  8928. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8929. } else if (type == '3') {
  8930. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8931. } else if (type == '4') {
  8932. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8933. }
  8934. } else {
  8935. if (type == '2') {
  8936. iframe.contentWindow.editor.minder.importData('json', '')
  8937. } else if (type == '3') {
  8938. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8939. } else if (type == '4') {
  8940. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8941. }
  8942. }
  8943. }
  8944. }
  8945. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8946. xmlhttp.send();
  8947. }
  8948. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8949. var xmlhttp;
  8950. var Mac, Sn, DeviceId
  8951. if (window.XMLHttpRequest) {
  8952. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8953. xmlhttp = new XMLHttpRequest();
  8954. } else {
  8955. // IE6, IE5 浏览器执行代码
  8956. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8957. }
  8958. xmlhttp.onreadystatechange = function () {
  8959. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8960. if (xmlhttp.response) {
  8961. // resolve(res.value[0][0].text);
  8962. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8963. // $(fileInput).val('');
  8964. // });
  8965. span.innerHTML = '上传成功'
  8966. setTimeout(() => {
  8967. loading.style.display = 'none'
  8968. }, 1000);
  8969. }
  8970. }
  8971. }
  8972. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8973. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8974. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8975. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8976. // 设置请求头,表示请求体的编码格式
  8977. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8978. // 设置请求体,使用url-encoded格式的数据
  8979. }
  8980. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8981. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8982. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8983. _userinfo = US.userInfo, //登录用户信息
  8984. _userid = US.userInfo.userid //登录用户id
  8985. let _iframe;
  8986. let _cid = cid,
  8987. _stage = stage,
  8988. _task = task,
  8989. _tool = tool;
  8990. var _jie = $$("div", {
  8991. "style": {
  8992. "position": "absolute",
  8993. "bottom": "50px",
  8994. "right": "50px",
  8995. "zIndex": "9999",
  8996. "backgroundColor": "#2268bc",
  8997. "color": "#fff",
  8998. "padding": "12px 20px",
  8999. "cursor": "pointer",
  9000. "borderRadius": "4px",
  9001. },
  9002. "innerHTML": "提交作业"
  9003. })
  9004. let aTool = ''
  9005. let _loading = document.createElement('div')
  9006. _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;"
  9007. // _loading.id = "";
  9008. let _lchild = document.createElement('div')
  9009. let _limg = document.createElement('img')
  9010. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9011. _limg.style = "width: 26px;margin-right: 10px;"
  9012. _lchild.appendChild(_limg)
  9013. let _lspan = document.createElement('span')
  9014. _lspan.innerHTML = "上传中..."
  9015. _lchild.appendChild(_lspan)
  9016. _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%);"
  9017. _loading.appendChild(_lchild)
  9018. var _box = $$('div', {
  9019. "style": {
  9020. "position": "relative",
  9021. "width": "100%",
  9022. "height": "100%",
  9023. },
  9024. })
  9025. _box.appendChild(_loading)
  9026. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9027. switch (str) {
  9028. case "CocoPi":
  9029. aTool = 57;
  9030. _iframe = $$("iframe", {
  9031. "allowpaymentrequest": "allowpaymentrequest",
  9032. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9033. "webkitallowfullscreen": "",
  9034. "mozallowfullscreen": "",
  9035. "frameborder": "no",
  9036. "border": "0",
  9037. "scrolling ": "no",
  9038. "style": {
  9039. "cssText": "border:0;width:100%;height:100%"
  9040. },
  9041. "src": "https://pi.cocorobo.cn/"
  9042. })
  9043. _box.appendChild(_iframe);
  9044. _box.appendChild(_jie);
  9045. _formdiv = new U.UF.UI.form(
  9046. "CocoPi",
  9047. _box, {
  9048. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9049. "style": {
  9050. "width": "90%",
  9051. "height": "90%",
  9052. "overflow": 'hidden'
  9053. },
  9054. "onresize": function () { }
  9055. }, {
  9056. closecallback: function () { }
  9057. }, {
  9058. "style": {
  9059. "height": "36px"
  9060. }
  9061. }).form; //创建窗体
  9062. _taskbar = {
  9063. "id": str + _formdiv.id,
  9064. "style": {
  9065. "backgroundImage": "url(/img/icon/cocopi.png)"
  9066. },
  9067. "name": "CocoPi",
  9068. "forms": _formdiv,
  9069. "click": function () {
  9070. U.MD.D.I.openApplication(str, obj, info);
  9071. }
  9072. }
  9073. break;
  9074. }
  9075. if (_iframe) {
  9076. if (str == 'CocoPi') {
  9077. _iframe = _formdiv.querySelector('iframe')
  9078. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9079. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9080. })
  9081. if (onloadListener) {
  9082. _iframe.contentDocument.location.reload()
  9083. } else {
  9084. _iframe.contentDocument.location.reload()
  9085. }
  9086. }
  9087. _jie.onclick = async () => {
  9088. let text = ''
  9089. if (aTool == 57) {
  9090. text = _iframe.contentWindow.getLoadXmlStr()
  9091. }
  9092. _loading.style.display = 'flex'
  9093. console.log(_loading);
  9094. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9095. _loading.style.display = 'none'
  9096. let _div = document.createElement('div')
  9097. _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;"
  9098. let _inner = document.createElement('div')
  9099. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9100. _inner.innerHTML = "上传成功"
  9101. _div.appendChild(_inner)
  9102. _iframe.contentWindow.window.document.body.appendChild(_div)
  9103. _div.onclick = () => {
  9104. _iframe.contentWindow.window.document.body.removeChild(_div)
  9105. }
  9106. setTimeout(() => {
  9107. _iframe.contentWindow.window.document.body.removeChild(_div)
  9108. }, 1000);
  9109. }, [], { "type": "POST", "withCredentials": true });
  9110. }
  9111. }
  9112. }
  9113. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9114. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9115. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9116. _userid = student.userid, //登录用户id
  9117. _username = student.student //用户名字
  9118. let _iframe;
  9119. let _cid = cid,
  9120. _stage = stage,
  9121. _task = task,
  9122. _tool = tool;
  9123. var _jie = $$("div", {
  9124. "style": {
  9125. "position": "absolute",
  9126. "bottom": "50px",
  9127. "right": "50px",
  9128. "zIndex": "9999",
  9129. "backgroundColor": "#2268bc",
  9130. "color": "#fff",
  9131. "padding": "12px 20px",
  9132. "cursor": "pointer",
  9133. "borderRadius": "4px",
  9134. },
  9135. "innerHTML": "提交作业"
  9136. })
  9137. let aTool = ''
  9138. let _loading = document.createElement('div')
  9139. _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;"
  9140. // _loading.id = "";
  9141. let _lchild = document.createElement('div')
  9142. let _limg = document.createElement('img')
  9143. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9144. _limg.style = "width: 26px;margin-right: 10px;"
  9145. _lchild.appendChild(_limg)
  9146. let _lspan = document.createElement('span')
  9147. _lspan.innerHTML = "上传中..."
  9148. _lchild.appendChild(_lspan)
  9149. _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%);"
  9150. _loading.appendChild(_lchild)
  9151. var _box = $$('div', {
  9152. "style": {
  9153. "position": "relative",
  9154. "width": "100%",
  9155. "height": "100%",
  9156. },
  9157. })
  9158. _box.appendChild(_loading)
  9159. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9160. switch (str) {
  9161. case "CocoPi":
  9162. aTool = 57;
  9163. _iframe = $$("iframe", {
  9164. "allowpaymentrequest": "allowpaymentrequest",
  9165. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9166. "webkitallowfullscreen": "",
  9167. "mozallowfullscreen": "",
  9168. "frameborder": "no",
  9169. "border": "0",
  9170. "scrolling ": "no",
  9171. "style": {
  9172. "cssText": "border:0;width:100%;height:100%"
  9173. },
  9174. "src": "https://pi.cocorobo.cn/"
  9175. })
  9176. _box.appendChild(_iframe);
  9177. _box.appendChild(_jie);
  9178. _formdiv = new U.UF.UI.form(
  9179. "CocoPi-" + _username,
  9180. _box, {
  9181. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9182. "style": {
  9183. "width": "90%",
  9184. "height": "90%",
  9185. "overflow": 'hidden'
  9186. },
  9187. "onresize": function () { }
  9188. }, {
  9189. closecallback: function () { }
  9190. }, {
  9191. "style": {
  9192. "height": "36px"
  9193. }
  9194. }).form; //创建窗体
  9195. _taskbar = {
  9196. "id": str + _formdiv.id,
  9197. "style": {
  9198. "backgroundImage": "url(/img/icon/cocopi.png)"
  9199. },
  9200. "name": "CocoPi",
  9201. "forms": _formdiv,
  9202. "click": function () {
  9203. U.MD.D.I.openApplication(str, obj, info);
  9204. }
  9205. }
  9206. break;
  9207. }
  9208. if (_iframe) {
  9209. if (str == 'CocoPi') {
  9210. _iframe = _formdiv.querySelector('iframe')
  9211. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9212. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9213. })
  9214. if (onloadListener) {
  9215. _iframe.contentDocument.location.reload()
  9216. } else {
  9217. _iframe.contentDocument.location.reload()
  9218. }
  9219. }
  9220. _jie.onclick = async () => {
  9221. let text = ''
  9222. if (aTool == 57) {
  9223. text = _iframe.contentWindow.getLoadXmlStr()
  9224. }
  9225. _loading.style.display = 'flex'
  9226. console.log(_loading);
  9227. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9228. _loading.style.display = 'none'
  9229. let _div = document.createElement('div')
  9230. _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;"
  9231. let _inner = document.createElement('div')
  9232. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9233. _inner.innerHTML = "上传成功"
  9234. _div.appendChild(_inner)
  9235. _iframe.contentWindow.window.document.body.appendChild(_div)
  9236. _div.onclick = () => {
  9237. _iframe.contentWindow.window.document.body.removeChild(_div)
  9238. }
  9239. setTimeout(() => {
  9240. _iframe.contentWindow.window.document.body.removeChild(_div)
  9241. }, 1000);
  9242. }, [], { "type": "POST", "withCredentials": true });
  9243. }
  9244. }
  9245. }
  9246. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9247. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9248. if (res.value[0].length > 0) {
  9249. if (atool == 57) {
  9250. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9251. }
  9252. } else {
  9253. if (atool == 57) {
  9254. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9255. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9256. }
  9257. }
  9258. }, [], { "type": "POST", "withCredentials": true });
  9259. }