DeskTop.js 560 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194
  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. ];
  660. //中山小学学生桌面图标的全局变量
  661. U.MD.D.I.guzmsStudentDeskIcon = [
  662. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  663. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  664. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  665. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  667. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  668. ];
  669. //福田
  670. U.MD.D.I.gdjgTeacherDeskIcon = [
  671. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  672. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  673. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  674. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  675. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  676. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  677. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  678. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  679. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  683. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. ];
  686. //gdjg
  687. U.MD.D.I.gdjgAdminDeskIcon = [
  688. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  689. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  693. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  694. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  695. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  699. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  700. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  701. ];
  702. //hk
  703. U.MD.D.I.hkteacherDeskIcon = [
  704. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  705. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  706. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  707. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  708. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  710. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  711. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  712. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  713. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  714. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  715. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  716. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  717. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  720. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  721. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  722. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.hkaceteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  750. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  751. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  753. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  754. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  755. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.hkaceStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. ];
  766. //香海正覺蓮社佛教正覺中學
  767. U.MD.D.I.hkZJLSteacherDeskIcon = [
  768. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  769. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  771. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  772. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  774. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  775. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  776. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  777. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  778. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  779. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  780. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  781. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  782. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  783. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  784. ];
  785. //香海正覺蓮社佛教正覺中學
  786. U.MD.D.I.hkZJLSStudentDeskIcon = [
  787. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  788. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  789. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  790. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  791. ];
  792. //云海
  793. U.MD.D.I.yunhaiTeacherDeskIcon = [
  794. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  795. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  796. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  797. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  798. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  799. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  800. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  801. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  802. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  803. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  804. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  805. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  806. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  807. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  808. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  809. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  810. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  811. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  812. ];
  813. //福田
  814. U.MD.D.I.heyuanTeacherDeskIcon = [
  815. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  816. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  817. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  818. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  819. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  820. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  821. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  822. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  823. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  824. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  827. ];
  828. //福田
  829. U.MD.D.I.heyuanAdminDeskIcon = [
  830. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  831. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  832. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  833. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  834. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  835. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  836. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  837. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  838. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  839. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  840. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  841. ];
  842. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  843. U.MD.D.I.szherTeacherDeskIcon = [
  844. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  845. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  846. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  847. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  848. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  849. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  850. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  851. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  852. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  853. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  854. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  855. ];
  856. //dsei
  857. U.MD.D.I.dseiTeacherDeskIcon = [
  858. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  859. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  860. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  861. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  862. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  863. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  864. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  865. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  866. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  867. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  868. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  869. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  870. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  871. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  872. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  873. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  874. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  875. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  876. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  877. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  878. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  879. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  880. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  881. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  882. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  883. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  884. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  885. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  886. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  887. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  888. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  889. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  890. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  891. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  892. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  893. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  894. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  895. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  896. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  897. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  898. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  899. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  900. ];
  901. //dsei
  902. U.MD.D.I.dseiAdminDeskIcon = [
  903. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  904. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  905. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  906. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  907. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  908. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  909. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  910. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  911. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  912. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  913. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  914. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  915. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  916. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  917. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  918. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  919. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  920. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  921. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  922. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  923. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  924. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  925. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  926. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  927. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  928. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  929. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  930. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  931. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  932. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  933. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  934. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  935. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  936. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  937. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  938. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  939. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  940. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  943. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  944. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  945. ];
  946. //dsei
  947. U.MD.D.I.dseiStudentDeskIcon = [
  948. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  949. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  950. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  951. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  952. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  953. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyTeacherDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  964. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  965. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  966. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  967. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  968. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  969. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  972. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  973. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  974. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  975. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  976. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  977. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  978. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  979. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  980. ];
  981. //未来教育基地
  982. U.MD.D.I.szjkyAdminDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  990. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  991. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  992. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  993. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  994. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  995. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  997. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  998. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  999. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1000. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1001. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1002. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1003. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1004. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1005. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1006. ];
  1007. //未来教育基地
  1008. U.MD.D.I.szjkyStudentDeskIcon = [
  1009. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1013. ];
  1014. //成华教育局
  1015. U.MD.D.I.chjyjTeacherDeskIcon = [
  1016. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1017. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1018. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1019. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1020. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1021. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1022. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1023. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1024. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1025. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1026. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1027. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1030. ];
  1031. //成华教育局chjyj
  1032. U.MD.D.I.chjyjAdminDeskIcon = [
  1033. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1034. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1035. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1036. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1037. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1038. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1039. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1040. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1041. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1042. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1043. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1044. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1045. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1048. ];
  1049. //成华教育局chjyj
  1050. U.MD.D.I.chjyjStudentDeskIcon = [
  1051. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. ];
  1056. //tpc
  1057. U.MD.D.I.tpcStudentDeskIcon = [
  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.tpcTeacherDeskIcon = [
  1065. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1066. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1069. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1070. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1071. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1072. ];
  1073. //tpc
  1074. U.MD.D.I.tpcAdminDeskIcon = [
  1075. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1076. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1077. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1078. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1079. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1080. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1081. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1082. ];
  1083. //THU-IOE
  1084. U.MD.D.I.thuioeTeacherDeskIcon = [
  1085. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1086. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1087. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1088. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1089. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1090. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1091. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1092. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1093. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1094. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1095. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1096. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1097. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1098. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1099. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1100. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1101. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1102. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1103. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1104. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1105. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1106. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1107. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1108. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1109. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1110. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1111. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1112. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1113. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1114. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1115. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1116. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1117. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1118. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1119. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1120. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1121. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1122. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1123. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1124. ];
  1125. //THU-IOE
  1126. U.MD.D.I.thuioeStudentDeskIcon = [
  1127. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1128. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1129. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1130. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1131. ];
  1132. //jccssyl
  1133. U.MD.D.I.jccssylTeacherDeskIcon = [
  1134. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1135. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1136. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1137. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1138. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1139. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1140. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1141. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1142. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1143. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1144. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1145. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1146. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1147. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1148. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1149. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1150. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1151. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1152. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1153. ];
  1154. //jccssyl
  1155. U.MD.D.I.jccssylStudentDeskIcon = [
  1156. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1157. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1158. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1159. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1160. ];
  1161. //cale
  1162. U.MD.D.I.caleTeacherDeskIcon = [
  1163. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1164. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1165. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1166. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1167. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1168. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1169. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1170. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1171. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1172. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1173. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1174. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1175. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1176. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1177. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1178. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1179. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1180. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1181. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1182. ];
  1183. //cale
  1184. U.MD.D.I.caleStudentDeskIcon = [
  1185. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1186. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1187. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1189. ];
  1190. //lqwmsgzs
  1191. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1194. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1195. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1196. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1197. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1198. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1199. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1200. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1202. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1203. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1204. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1205. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1206. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1207. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1208. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1209. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1210. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1211. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1212. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1213. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1214. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1215. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1216. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1217. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1218. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1219. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1220. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1221. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1222. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1223. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1228. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1229. ];
  1230. //lqwmsgzs
  1231. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1232. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1233. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1234. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1235. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1236. ];
  1237. //盐田区幼儿园
  1238. U.MD.D.I.ytyTeacherDeskIcon = [
  1239. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1240. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1241. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1242. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1243. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1244. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1245. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1246. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1247. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1248. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1249. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1250. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1251. ];
  1252. //盐田区幼儿园
  1253. U.MD.D.I.ytyStudentDeskIcon = [
  1254. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1255. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1256. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1257. ];
  1258. //scnuai
  1259. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1260. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1261. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1262. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1263. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1264. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1265. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1266. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1267. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1268. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1269. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1270. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1271. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1272. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1273. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1274. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1275. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1276. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1277. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1278. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1279. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1280. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1281. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1282. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1283. ];
  1284. //scnuai
  1285. U.MD.D.I.scnuaiAdminDeskIcon = [
  1286. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1287. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1291. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1292. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1293. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1294. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1295. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1296. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1297. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1298. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1299. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1300. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1301. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1302. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1303. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1304. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1305. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1306. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1307. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1308. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1309. ];
  1310. //scnuai
  1311. U.MD.D.I.scnuaiStudentDeskIcon = [
  1312. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1313. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1314. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1315. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1316. ];
  1317. //#region 桌面初始化a
  1318. /**
  1319. * 初始化桌面的起始函数
  1320. *
  1321. */
  1322. U.MD.D.I.init = function () {
  1323. if ($("#U_MD_D_K")[0]) {
  1324. //初始化桌面图标
  1325. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1326. // var clickUrl = ':12588/requestIp.php';
  1327. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1328. // U.MD.D.I.Ip = data;
  1329. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1330. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1331. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1332. // })
  1333. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1334. // })
  1335. }
  1336. }
  1337. /**
  1338. * 模式切换
  1339. *
  1340. */
  1341. U.MD.D.I.ModeCheck = function (type) {
  1342. if (US.Config.type == type) {
  1343. return
  1344. }
  1345. US.Config.type = type
  1346. $('.U_PBL_Check .active')[0].className = ''
  1347. if (type == 1) {
  1348. $('.U_PBL_Check div')[0].className = 'active'
  1349. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1350. } else {
  1351. $('.U_PBL_Check div')[1].className = 'active'
  1352. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1353. }
  1354. //初始化桌面图标
  1355. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1356. if (type == 2) {
  1357. U.MD.D.I.openApplication("project")
  1358. }
  1359. }
  1360. /**
  1361. * 隐藏任务栏
  1362. *
  1363. * @param {element} 桌面元素
  1364. */
  1365. U.MD.D.I.hiddenTaskbar = function (el) {
  1366. //任务栏位置变小
  1367. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1368. //桌面的位置变大
  1369. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1370. }
  1371. /**
  1372. * 隐藏任务栏
  1373. *
  1374. * @param {element} 桌面元素
  1375. */
  1376. U.MD.D.I.hiddenTaskbarout = function (el) {
  1377. //任务栏位置变小
  1378. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1379. //任务栏位置变化
  1380. U.selectEl(el).css({ "bottom": "-60px" });
  1381. //桌面的位置变大
  1382. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1383. }
  1384. }
  1385. /**
  1386. * 初始化打印桌面图标
  1387. *
  1388. * @param {element} 桌面元素
  1389. */
  1390. U.MD.D.I.initDesktopIcons = function (el, type) {
  1391. var i, //用于循环
  1392. _content, //桌面图标元素
  1393. _iconcontent, //桌面图标元素
  1394. _frag = $$("frag"), //定义一个碎片元素
  1395. _type = US.userInfo.type,
  1396. _org = US.userInfo.org,
  1397. _oid = US.userInfo.organizeid,
  1398. _role = US.userInfo.role,
  1399. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1400. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1401. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1402. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1403. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1404. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1405. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1406. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1407. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1408. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1409. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1410. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1411. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1412. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1413. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1414. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1415. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1416. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1417. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1418. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1419. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1420. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1421. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1422. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1423. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1424. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1425. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1426. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1427. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1428. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1429. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1430. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1431. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1432. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1433. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1434. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1435. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1436. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1437. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1438. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1439. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1440. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1441. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1442. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1443. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1444. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1445. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1446. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1447. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1448. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1449. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1450. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1451. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1452. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1453. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1454. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1455. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1456. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1457. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1458. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1459. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1460. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1461. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1462. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1463. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1464. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1465. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1466. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1467. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1468. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1469. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1470. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1471. 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'];
  1472. 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'];
  1473. //清楚桌面图标
  1474. el.innerHTML = "";
  1475. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1476. _teacherDesktopIconInfo.push(
  1477. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1478. { "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)" } },
  1479. )
  1480. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1481. }
  1482. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1483. _teacherDesktopIconInfo.push(
  1484. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1485. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1486. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1487. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1488. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1489. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1490. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1491. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1492. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1493. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1494. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1495. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1496. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1497. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1498. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1499. )
  1500. }
  1501. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1502. _teacherDesktopIconInfo.push(
  1503. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1504. )
  1505. }
  1506. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1507. // _teacherDesktopIconInfo.push(
  1508. // )
  1509. // }
  1510. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1511. _teacherDesktopIconInfo.push(
  1512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1513. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1514. )
  1515. }
  1516. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1517. _teacherDesktopIconInfo.push(
  1518. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1519. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1520. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1521. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1522. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1523. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1524. )
  1525. _studentDesktopIconInfo.push(
  1526. )
  1527. }
  1528. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1529. _teacherDesktopIconInfo.push(
  1530. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1531. )
  1532. _studentDesktopIconInfo.push(
  1533. )
  1534. }
  1535. //010606 组织
  1536. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1537. _teacherDesktopIconInfo.push(
  1538. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1539. )
  1540. _studentDesktopIconInfo.push(
  1541. )
  1542. }
  1543. //麒麟二中 和 民新小学
  1544. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1545. _teacherDesktopIconInfo.push(
  1546. )
  1547. }
  1548. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1549. _teacherDesktopIconInfo.push(
  1550. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1551. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1552. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1553. )
  1554. }
  1555. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1556. _teacherDesktopIconInfo.push(
  1557. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1558. )
  1559. }
  1560. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1561. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1562. _teacherDesktopIconInfo.push(
  1563. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1565. )
  1566. }
  1567. //麒麟二中
  1568. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1569. _studentDesktopIconInfo.push(
  1570. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1571. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1572. )
  1573. }
  1574. //万科双语
  1575. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1576. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1577. if (el.Name == '项目管理') {
  1578. el.Name = 'PBL项目'
  1579. }
  1580. return el
  1581. })
  1582. _studentDesktopIconInfo3.push(
  1583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1584. )
  1585. }
  1586. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1587. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1588. return el.Name != '魔盒识字' && el.Name != '24点'
  1589. })
  1590. }
  1591. 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) {
  1592. _studentDesktopIconInfo.push(
  1593. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1594. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1595. )
  1596. }
  1597. //循环创建桌面图标
  1598. if (type == 1) {
  1599. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1600. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1601. _content = $$("div", {
  1602. className: "U_MD_D_KO",
  1603. "onmousedown": U.UF.C.closure(function (obj) {
  1604. //防止拖动图标即打开了桌面应用
  1605. U.MD.D.click(this, obj);
  1606. }, [_studentDesktopIconInfo[i]]),
  1607. "onclick": U.UF.C.closure(function (obj) {
  1608. //防止拖动图标即打开了桌面应用
  1609. U.MD.D.click(this, obj);
  1610. }, [_studentDesktopIconInfo[i]])
  1611. }, _frag); //
  1612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1615. }
  1616. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1617. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1618. _content = $$("div", {
  1619. className: "U_MD_D_KO",
  1620. "onmousedown": U.UF.C.closure(function (obj) {
  1621. //防止拖动图标即打开了桌面应用
  1622. U.MD.D.click(this, obj);
  1623. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1624. "onclick": U.UF.C.closure(function (obj) {
  1625. //防止拖动图标即打开了桌面应用
  1626. U.MD.D.click(this, obj);
  1627. }, [_hkZJLSStudentDeskIconInfo[i]])
  1628. }, _frag); //
  1629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1632. } //
  1633. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1634. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1635. _content = $$("div", {
  1636. className: "U_MD_D_KO",
  1637. "onmousedown": U.UF.C.closure(function (obj) {
  1638. //防止拖动图标即打开了桌面应用
  1639. U.MD.D.click(this, obj);
  1640. }, [_ytyStudentDeskIconInfo[i]]),
  1641. "onclick": U.UF.C.closure(function (obj) {
  1642. //防止拖动图标即打开了桌面应用
  1643. U.MD.D.click(this, obj);
  1644. }, [_ytyStudentDeskIconInfo[i]])
  1645. }, _frag); //
  1646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1649. } //
  1650. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1651. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1652. _content = $$("div", {
  1653. className: "U_MD_D_KO",
  1654. "onmousedown": U.UF.C.closure(function (obj) {
  1655. //防止拖动图标即打开了桌面应用
  1656. U.MD.D.click(this, obj);
  1657. }, [_jccssylStudentDeskIconInfo[i]]),
  1658. "onclick": U.UF.C.closure(function (obj) {
  1659. //防止拖动图标即打开了桌面应用
  1660. U.MD.D.click(this, obj);
  1661. }, [_jccssylStudentDeskIconInfo[i]])
  1662. }, _frag); //
  1663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1666. }
  1667. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1668. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1669. _content = $$("div", {
  1670. className: "U_MD_D_KO",
  1671. "onmousedown": U.UF.C.closure(function (obj) {
  1672. //防止拖动图标即打开了桌面应用
  1673. U.MD.D.click(this, obj);
  1674. }, [_scnuaiStudentDeskIconInfo[i]]),
  1675. "onclick": U.UF.C.closure(function (obj) {
  1676. //防止拖动图标即打开了桌面应用
  1677. U.MD.D.click(this, obj);
  1678. }, [_scnuaiStudentDeskIconInfo[i]])
  1679. }, _frag); //
  1680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1683. }
  1684. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1685. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1686. _content = $$("div", {
  1687. className: "U_MD_D_KO",
  1688. "onmousedown": U.UF.C.closure(function (obj) {
  1689. //防止拖动图标即打开了桌面应用
  1690. U.MD.D.click(this, obj);
  1691. }, [_caleStudentDeskIconInfo[i]]),
  1692. "onclick": U.UF.C.closure(function (obj) {
  1693. //防止拖动图标即打开了桌面应用
  1694. U.MD.D.click(this, obj);
  1695. }, [_caleStudentDeskIconInfo[i]])
  1696. }, _frag); //
  1697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1700. }
  1701. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1702. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1703. _content = $$("div", {
  1704. className: "U_MD_D_KO",
  1705. "onmousedown": U.UF.C.closure(function (obj) {
  1706. //防止拖动图标即打开了桌面应用
  1707. U.MD.D.click(this, obj);
  1708. }, [_thuioeStudentDeskIconInfo[i]]),
  1709. "onclick": U.UF.C.closure(function (obj) {
  1710. //防止拖动图标即打开了桌面应用
  1711. U.MD.D.click(this, obj);
  1712. }, [_thuioeStudentDeskIconInfo[i]])
  1713. }, _frag); //
  1714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1717. }
  1718. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1719. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1720. _content = $$("div", {
  1721. className: "U_MD_D_KO",
  1722. "onmousedown": U.UF.C.closure(function (obj) {
  1723. //防止拖动图标即打开了桌面应用
  1724. U.MD.D.click(this, obj);
  1725. }, [_tpcStudentDeskIconInfo[i]]),
  1726. "onclick": U.UF.C.closure(function (obj) {
  1727. //防止拖动图标即打开了桌面应用
  1728. U.MD.D.click(this, obj);
  1729. }, [_tpcStudentDeskIconInfo[i]])
  1730. }, _frag); //
  1731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1734. } //
  1735. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1736. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1737. _content = $$("div", {
  1738. className: "U_MD_D_KO",
  1739. "onmousedown": U.UF.C.closure(function (obj) {
  1740. //防止拖动图标即打开了桌面应用
  1741. U.MD.D.click(this, obj);
  1742. }, [_chjyjStudentDeskIconInfo[i]]),
  1743. "onclick": U.UF.C.closure(function (obj) {
  1744. //防止拖动图标即打开了桌面应用
  1745. U.MD.D.click(this, obj);
  1746. }, [_chjyjStudentDeskIconInfo[i]])
  1747. }, _frag); //
  1748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1751. }
  1752. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1753. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1754. _content = $$("div", {
  1755. className: "U_MD_D_KO",
  1756. "onmousedown": U.UF.C.closure(function (obj) {
  1757. //防止拖动图标即打开了桌面应用
  1758. U.MD.D.click(this, obj);
  1759. }, [_szjkyStudentDeskIconInfo[i]]),
  1760. "onclick": U.UF.C.closure(function (obj) {
  1761. //防止拖动图标即打开了桌面应用
  1762. U.MD.D.click(this, obj);
  1763. }, [_szjkyStudentDeskIconInfo[i]])
  1764. }, _frag); //
  1765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1768. }
  1769. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1770. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1771. _content = $$("div", {
  1772. className: "U_MD_D_KO",
  1773. "onmousedown": U.UF.C.closure(function (obj) {
  1774. //防止拖动图标即打开了桌面应用
  1775. U.MD.D.click(this, obj);
  1776. }, [_dseiStudentDeskIconInfo[i]]),
  1777. "onclick": U.UF.C.closure(function (obj) {
  1778. //防止拖动图标即打开了桌面应用
  1779. U.MD.D.click(this, obj);
  1780. }, [_dseiStudentDeskIconInfo[i]])
  1781. }, _frag); //
  1782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1785. }
  1786. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1787. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1788. _content = $$("div", {
  1789. className: "U_MD_D_KO",
  1790. "onmousedown": U.UF.C.closure(function (obj) {
  1791. //防止拖动图标即打开了桌面应用
  1792. U.MD.D.click(this, obj);
  1793. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1794. "onclick": U.UF.C.closure(function (obj) {
  1795. //防止拖动图标即打开了桌面应用
  1796. U.MD.D.click(this, obj);
  1797. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1798. }, _frag); //
  1799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1802. }
  1803. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1804. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1805. _content = $$("div", {
  1806. className: "U_MD_D_KO",
  1807. "onmousedown": U.UF.C.closure(function (obj) {
  1808. //防止拖动图标即打开了桌面应用
  1809. U.MD.D.click(this, obj);
  1810. }, [_siesStudentDeskIconInfo[i]]),
  1811. "onclick": U.UF.C.closure(function (obj) {
  1812. //防止拖动图标即打开了桌面应用
  1813. U.MD.D.click(this, obj);
  1814. }, [_siesStudentDeskIconInfo[i]])
  1815. }, _frag); //
  1816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1819. }
  1820. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  1821. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  1822. _content = $$("div", {
  1823. className: "U_MD_D_KO",
  1824. "onmousedown": U.UF.C.closure(function (obj) {
  1825. //防止拖动图标即打开了桌面应用
  1826. U.MD.D.click(this, obj);
  1827. }, [_guzmsStudentDeskIconInfo[i]]),
  1828. "onclick": U.UF.C.closure(function (obj) {
  1829. //防止拖动图标即打开了桌面应用
  1830. U.MD.D.click(this, obj);
  1831. }, [_guzmsStudentDeskIconInfo[i]])
  1832. }, _frag); //
  1833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  1835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  1836. }
  1837. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1838. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1839. _content = $$("div", {
  1840. className: "U_MD_D_KO",
  1841. "onmousedown": U.UF.C.closure(function (obj) {
  1842. //防止拖动图标即打开了桌面应用
  1843. U.MD.D.click(this, obj);
  1844. }, [_hkStudentDeskIconInfo[i]]),
  1845. "onclick": U.UF.C.closure(function (obj) {
  1846. //防止拖动图标即打开了桌面应用
  1847. U.MD.D.click(this, obj);
  1848. }, [_hkStudentDeskIconInfo[i]])
  1849. }, _frag); //
  1850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1853. }
  1854. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1855. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1856. _content = $$("div", {
  1857. className: "U_MD_D_KO",
  1858. "onmousedown": U.UF.C.closure(function (obj) {
  1859. //防止拖动图标即打开了桌面应用
  1860. U.MD.D.click(this, obj);
  1861. }, [_hkaceStudentDeskIconInfo[i]]),
  1862. "onclick": U.UF.C.closure(function (obj) {
  1863. //防止拖动图标即打开了桌面应用
  1864. U.MD.D.click(this, obj);
  1865. }, [_hkaceStudentDeskIconInfo[i]])
  1866. }, _frag); //
  1867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1870. }
  1871. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1872. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1873. _content = $$("div", {
  1874. className: "U_MD_D_KO",
  1875. "onmousedown": U.UF.C.closure(function (obj) {
  1876. //防止拖动图标即打开了桌面应用
  1877. U.MD.D.click(this, obj);
  1878. }, [_studentDesktopIconInfo[i]]),
  1879. "onclick": U.UF.C.closure(function (obj) {
  1880. //防止拖动图标即打开了桌面应用
  1881. U.MD.D.click(this, obj);
  1882. }, [_studentDesktopIconInfo[i]])
  1883. }, _frag); //
  1884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1887. }
  1888. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1889. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1890. _content = $$("div", {
  1891. className: "U_MD_D_KO",
  1892. "onmousedown": U.UF.C.closure(function (obj) {
  1893. //防止拖动图标即打开了桌面应用
  1894. U.MD.D.click(this, obj);
  1895. }, [_tcStudentDeskIconInfo[i]]),
  1896. "onclick": U.UF.C.closure(function (obj) {
  1897. //防止拖动图标即打开了桌面应用
  1898. U.MD.D.click(this, obj);
  1899. }, [_tcStudentDeskIconInfo[i]])
  1900. }, _frag); //
  1901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1904. }
  1905. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1906. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1907. _content = $$("div", {
  1908. className: "U_MD_D_KO",
  1909. "onmousedown": U.UF.C.closure(function (obj) {
  1910. //防止拖动图标即打开了桌面应用
  1911. U.MD.D.click(this, obj);
  1912. }, [_szscStudentDeskIconInfo[i]]),
  1913. "onclick": U.UF.C.closure(function (obj) {
  1914. //防止拖动图标即打开了桌面应用
  1915. U.MD.D.click(this, obj);
  1916. }, [_szscStudentDeskIconInfo[i]])
  1917. }, _frag); //
  1918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1921. }
  1922. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1923. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1924. _content = $$("div", {
  1925. className: "U_MD_D_KO",
  1926. "onmousedown": U.UF.C.closure(function (obj) {
  1927. //防止拖动图标即打开了桌面应用
  1928. U.MD.D.click(this, obj);
  1929. }, [_studentDesktopIconInfo3[i]]),
  1930. "onclick": U.UF.C.closure(function (obj) {
  1931. //防止拖动图标即打开了桌面应用
  1932. U.MD.D.click(this, obj);
  1933. }, [_studentDesktopIconInfo3[i]])
  1934. }, _frag); //
  1935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1938. }
  1939. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1940. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1941. _content = $$("div", {
  1942. className: "U_MD_D_KO",
  1943. "onmousedown": U.UF.C.closure(function (obj) {
  1944. //防止拖动图标即打开了桌面应用
  1945. U.MD.D.click(this, obj);
  1946. }, [_studentDesktopIconInfo2[i]]),
  1947. "onclick": U.UF.C.closure(function (obj) {
  1948. //防止拖动图标即打开了桌面应用
  1949. U.MD.D.click(this, obj);
  1950. }, [_studentDesktopIconInfo2[i]])
  1951. }, _frag); //
  1952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1955. }
  1956. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1957. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1958. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  1959. continue
  1960. }
  1961. _content = $$("div", {
  1962. className: "U_MD_D_KO",
  1963. "onmousedown": U.UF.C.closure(function (obj) {
  1964. //防止拖动图标即打开了桌面应用
  1965. U.MD.D.click(this, obj);
  1966. }, [_wanketeacherDesktopIconInfo[i]]),
  1967. "onclick": U.UF.C.closure(function (obj) {
  1968. //防止拖动图标即打开了桌面应用
  1969. U.MD.D.click(this, obj);
  1970. }, [_wanketeacherDesktopIconInfo[i]])
  1971. }, _frag); //
  1972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1975. }
  1976. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1977. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1978. _content = $$("div", {
  1979. className: "U_MD_D_KO",
  1980. "onmousedown": U.UF.C.closure(function (obj) {
  1981. //防止拖动图标即打开了桌面应用
  1982. U.MD.D.click(this, obj);
  1983. }, [_wankeAdminDesktopIconInfo[i]]),
  1984. "onclick": U.UF.C.closure(function (obj) {
  1985. //防止拖动图标即打开了桌面应用
  1986. U.MD.D.click(this, obj);
  1987. }, [_wankeAdminDesktopIconInfo[i]])
  1988. }, _frag); //
  1989. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1990. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1991. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1992. }
  1993. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  1994. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  1995. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1996. continue
  1997. }
  1998. _content = $$("div", {
  1999. className: "U_MD_D_KO",
  2000. "onmousedown": U.UF.C.closure(function (obj) {
  2001. //防止拖动图标即打开了桌面应用
  2002. U.MD.D.click(this, obj);
  2003. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2004. "onclick": U.UF.C.closure(function (obj) {
  2005. //防止拖动图标即打开了桌面应用
  2006. U.MD.D.click(this, obj);
  2007. }, [_scnuaiTeacherDeskIconInfo[i]])
  2008. }, _frag); //
  2009. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2010. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2011. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2012. }
  2013. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2014. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2015. _content = $$("div", {
  2016. className: "U_MD_D_KO",
  2017. "onmousedown": U.UF.C.closure(function (obj) {
  2018. //防止拖动图标即打开了桌面应用
  2019. U.MD.D.click(this, obj);
  2020. }, [_scnuaiAdminDeskIconInfo[i]]),
  2021. "onclick": U.UF.C.closure(function (obj) {
  2022. //防止拖动图标即打开了桌面应用
  2023. U.MD.D.click(this, obj);
  2024. }, [_scnuaiAdminDeskIconInfo[i]])
  2025. }, _frag); //
  2026. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2027. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2028. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2029. }
  2030. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2031. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2032. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2033. continue
  2034. }
  2035. _content = $$("div", {
  2036. className: "U_MD_D_KO",
  2037. "onmousedown": U.UF.C.closure(function (obj) {
  2038. //防止拖动图标即打开了桌面应用
  2039. U.MD.D.click(this, obj);
  2040. }, [_jccssylTeacherDeskIconInfo[i]]),
  2041. "onclick": U.UF.C.closure(function (obj) {
  2042. //防止拖动图标即打开了桌面应用
  2043. U.MD.D.click(this, obj);
  2044. }, [_jccssylTeacherDeskIconInfo[i]])
  2045. }, _frag); //
  2046. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2047. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2048. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2049. }
  2050. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2051. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2052. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2053. continue
  2054. }
  2055. _content = $$("div", {
  2056. className: "U_MD_D_KO",
  2057. "onmousedown": U.UF.C.closure(function (obj) {
  2058. //防止拖动图标即打开了桌面应用
  2059. U.MD.D.click(this, obj);
  2060. }, [_caleTeacherDeskIconInfo[i]]),
  2061. "onclick": U.UF.C.closure(function (obj) {
  2062. //防止拖动图标即打开了桌面应用
  2063. U.MD.D.click(this, obj);
  2064. }, [_caleTeacherDeskIconInfo[i]])
  2065. }, _frag); //
  2066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2069. }
  2070. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2071. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2072. _content = $$("div", {
  2073. className: "U_MD_D_KO",
  2074. "onmousedown": U.UF.C.closure(function (obj) {
  2075. //防止拖动图标即打开了桌面应用
  2076. U.MD.D.click(this, obj);
  2077. }, [_tpcOrganizerDeskIconInfo[i]]),
  2078. "onclick": U.UF.C.closure(function (obj) {
  2079. //防止拖动图标即打开了桌面应用
  2080. U.MD.D.click(this, obj);
  2081. }, [_tpcOrganizerDeskIconInfo[i]])
  2082. }, _frag); //
  2083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2086. }
  2087. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2088. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2089. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2090. continue
  2091. }
  2092. _content = $$("div", {
  2093. className: "U_MD_D_KO",
  2094. "onmousedown": U.UF.C.closure(function (obj) {
  2095. //防止拖动图标即打开了桌面应用
  2096. U.MD.D.click(this, obj);
  2097. }, [_tpcTeacherDeskIconInfo[i]]),
  2098. "onclick": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_tpcTeacherDeskIconInfo[i]])
  2102. }, _frag); //
  2103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2106. }
  2107. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2108. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2109. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2110. continue
  2111. }
  2112. _content = $$("div", {
  2113. className: "U_MD_D_KO",
  2114. "onmousedown": U.UF.C.closure(function (obj) {
  2115. //防止拖动图标即打开了桌面应用
  2116. U.MD.D.click(this, obj);
  2117. }, [_teacherDesktopIconInfo2[i]]),
  2118. "onclick": U.UF.C.closure(function (obj) {
  2119. //防止拖动图标即打开了桌面应用
  2120. U.MD.D.click(this, obj);
  2121. }, [_teacherDesktopIconInfo2[i]])
  2122. }, _frag); //
  2123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2126. }
  2127. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2128. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2129. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2130. continue
  2131. }
  2132. _content = $$("div", {
  2133. className: "U_MD_D_KO",
  2134. "onmousedown": U.UF.C.closure(function (obj) {
  2135. //防止拖动图标即打开了桌面应用
  2136. U.MD.D.click(this, obj);
  2137. }, [_thuioeTeacherDeskIconInfo[i]]),
  2138. "onclick": U.UF.C.closure(function (obj) {
  2139. //防止拖动图标即打开了桌面应用
  2140. U.MD.D.click(this, obj);
  2141. }, [_thuioeTeacherDeskIconInfo[i]])
  2142. }, _frag); //
  2143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2146. }
  2147. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2148. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2149. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2150. continue
  2151. }
  2152. _content = $$("div", {
  2153. className: "U_MD_D_KO",
  2154. "onmousedown": U.UF.C.closure(function (obj) {
  2155. //防止拖动图标即打开了桌面应用
  2156. U.MD.D.click(this, obj);
  2157. }, [_lotechTeacherDeskIconInfo[i]]),
  2158. "onclick": U.UF.C.closure(function (obj) {
  2159. //防止拖动图标即打开了桌面应用
  2160. U.MD.D.click(this, obj);
  2161. }, [_lotechTeacherDeskIconInfo[i]])
  2162. }, _frag); //
  2163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2166. }//
  2167. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2168. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2169. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2170. continue
  2171. }
  2172. _content = $$("div", {
  2173. className: "U_MD_D_KO",
  2174. "onmousedown": U.UF.C.closure(function (obj) {
  2175. //防止拖动图标即打开了桌面应用
  2176. U.MD.D.click(this, obj);
  2177. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2178. "onclick": U.UF.C.closure(function (obj) {
  2179. //防止拖动图标即打开了桌面应用
  2180. U.MD.D.click(this, obj);
  2181. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2182. }, _frag); //
  2183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2186. }
  2187. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2188. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2189. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2190. continue
  2191. }
  2192. _content = $$("div", {
  2193. className: "U_MD_D_KO",
  2194. "onmousedown": U.UF.C.closure(function (obj) {
  2195. //防止拖动图标即打开了桌面应用
  2196. U.MD.D.click(this, obj);
  2197. }, [_siesTeacherDeskIconInfo[i]]),
  2198. "onclick": U.UF.C.closure(function (obj) {
  2199. //防止拖动图标即打开了桌面应用
  2200. U.MD.D.click(this, obj);
  2201. }, [_siesTeacherDeskIconInfo[i]])
  2202. }, _frag); //
  2203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2206. }
  2207. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2208. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2209. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2210. continue
  2211. }
  2212. _content = $$("div", {
  2213. className: "U_MD_D_KO",
  2214. "onmousedown": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_guzmsTeacherDeskIconInfo[i]]),
  2218. "onclick": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_guzmsTeacherDeskIconInfo[i]])
  2222. }, _frag); //
  2223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2226. }
  2227. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2228. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2229. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2230. continue
  2231. }
  2232. _content = $$("div", {
  2233. className: "U_MD_D_KO",
  2234. "onmousedown": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_longhuaTeacherDeskIconInfo[i]]),
  2238. "onclick": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_longhuaTeacherDeskIconInfo[i]])
  2242. }, _frag); //
  2243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2246. }
  2247. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2248. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2249. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2250. continue
  2251. }
  2252. _content = $$("div", {
  2253. className: "U_MD_D_KO",
  2254. "onmousedown": U.UF.C.closure(function (obj) {
  2255. //防止拖动图标即打开了桌面应用
  2256. U.MD.D.click(this, obj);
  2257. }, [_ytyTeacherDeskIconInfo[i]]),
  2258. "onclick": U.UF.C.closure(function (obj) {
  2259. //防止拖动图标即打开了桌面应用
  2260. U.MD.D.click(this, obj);
  2261. }, [_ytyTeacherDeskIconInfo[i]])
  2262. }, _frag); //
  2263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2266. }
  2267. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2268. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2269. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2270. continue
  2271. }
  2272. _content = $$("div", {
  2273. className: "U_MD_D_KO",
  2274. "onmousedown": U.UF.C.closure(function (obj) {
  2275. //防止拖动图标即打开了桌面应用
  2276. U.MD.D.click(this, obj);
  2277. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2278. "onclick": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_yunhaiTeacherDeskIconInfo[i]])
  2282. }, _frag); //
  2283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2286. } //_hkStudentDeskIconInfo
  2287. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2288. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2289. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2290. continue
  2291. }
  2292. _content = $$("div", {
  2293. className: "U_MD_D_KO",
  2294. "onmousedown": U.UF.C.closure(function (obj) {
  2295. //防止拖动图标即打开了桌面应用
  2296. U.MD.D.click(this, obj);
  2297. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2298. "onclick": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2302. }, _frag); //
  2303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2306. }
  2307. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2308. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2309. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2310. continue
  2311. }
  2312. _content = $$("div", {
  2313. className: "U_MD_D_KO",
  2314. "onmousedown": U.UF.C.closure(function (obj) {
  2315. //防止拖动图标即打开了桌面应用
  2316. U.MD.D.click(this, obj);
  2317. }, [_hkTeacherDeskIconInfo[i]]),
  2318. "onclick": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_hkTeacherDeskIconInfo[i]])
  2322. }, _frag); //
  2323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2326. }
  2327. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2328. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2329. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2330. continue
  2331. }
  2332. _content = $$("div", {
  2333. className: "U_MD_D_KO",
  2334. "onmousedown": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_hkaceTeacherDeskIconInfo[i]]),
  2338. "onclick": U.UF.C.closure(function (obj) {
  2339. //防止拖动图标即打开了桌面应用
  2340. U.MD.D.click(this, obj);
  2341. }, [_hkaceTeacherDeskIconInfo[i]])
  2342. }, _frag); //
  2343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2346. }
  2347. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2348. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2349. _content = $$("div", {
  2350. className: "U_MD_D_KO",
  2351. "onmousedown": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_gdjgAdminDeskIconInfo[i]]),
  2355. "onclick": U.UF.C.closure(function (obj) {
  2356. //防止拖动图标即打开了桌面应用
  2357. U.MD.D.click(this, obj);
  2358. }, [_gdjgAdminDeskIconInfo[i]])
  2359. }, _frag); //
  2360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2363. }
  2364. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2365. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2366. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2367. continue
  2368. }
  2369. _content = $$("div", {
  2370. className: "U_MD_D_KO",
  2371. "onmousedown": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_gdjgTeacherDeskIconInfo[i]]),
  2375. "onclick": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_gdjgTeacherDeskIconInfo[i]])
  2379. }, _frag); //
  2380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2383. }
  2384. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2385. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2386. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2387. continue
  2388. }
  2389. _content = $$("div", {
  2390. className: "U_MD_D_KO",
  2391. "onmousedown": U.UF.C.closure(function (obj) {
  2392. //防止拖动图标即打开了桌面应用
  2393. U.MD.D.click(this, obj);
  2394. }, [_szherTeacherDeskIconInfo[i]]),
  2395. "onclick": U.UF.C.closure(function (obj) {
  2396. //防止拖动图标即打开了桌面应用
  2397. U.MD.D.click(this, obj);
  2398. }, [_szherTeacherDeskIconInfo[i]])
  2399. }, _frag); //
  2400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2403. }
  2404. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2405. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2406. _content = $$("div", {
  2407. className: "U_MD_D_KO",
  2408. "onmousedown": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_heyuannAdminDeskIconInfo[i]]),
  2412. "onclick": U.UF.C.closure(function (obj) {
  2413. //防止拖动图标即打开了桌面应用
  2414. U.MD.D.click(this, obj);
  2415. }, [_heyuannAdminDeskIconInfo[i]])
  2416. }, _frag); //
  2417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2420. }
  2421. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2422. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2423. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2424. continue
  2425. }
  2426. _content = $$("div", {
  2427. className: "U_MD_D_KO",
  2428. "onmousedown": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_heyuanTeacherDeskIconInfo[i]]),
  2432. "onclick": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_heyuanTeacherDeskIconInfo[i]])
  2436. }, _frag); //
  2437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2440. } //
  2441. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2442. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2443. _content = $$("div", {
  2444. className: "U_MD_D_KO",
  2445. "onmousedown": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_dseiAdminDeskIconInfo[i]]),
  2449. "onclick": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_dseiAdminDeskIconInfo[i]])
  2453. }, _frag); //
  2454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2457. }
  2458. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2459. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2460. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2461. continue
  2462. }
  2463. _content = $$("div", {
  2464. className: "U_MD_D_KO",
  2465. "onmousedown": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_dseiTeacherDeskIconInfo[i]]),
  2469. "onclick": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_dseiTeacherDeskIconInfo[i]])
  2473. }, _frag); //
  2474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2477. } //
  2478. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2479. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2480. _content = $$("div", {
  2481. className: "U_MD_D_KO",
  2482. "onmousedown": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_chjyjAdminDeskIconInfo[i]]),
  2486. "onclick": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_chjyjAdminDeskIconInfo[i]])
  2490. }, _frag); //
  2491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2494. }//
  2495. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2496. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2497. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2498. continue
  2499. }
  2500. _content = $$("div", {
  2501. className: "U_MD_D_KO",
  2502. "onmousedown": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_chjyjTeacherDeskIconInfo[i]]),
  2506. "onclick": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_chjyjTeacherDeskIconInfo[i]])
  2510. }, _frag); //
  2511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2514. }
  2515. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2516. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2517. _content = $$("div", {
  2518. className: "U_MD_D_KO",
  2519. "onmousedown": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_szjkyAdminDeskIconInfo[i]]),
  2523. "onclick": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_szjkyAdminDeskIconInfo[i]])
  2527. }, _frag); //
  2528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2531. }//
  2532. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2533. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2534. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2535. continue
  2536. }
  2537. _content = $$("div", {
  2538. className: "U_MD_D_KO",
  2539. "onmousedown": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_szjkyTeacherDeskIconInfo[i]]),
  2543. "onclick": U.UF.C.closure(function (obj) {
  2544. //防止拖动图标即打开了桌面应用
  2545. U.MD.D.click(this, obj);
  2546. }, [_szjkyTeacherDeskIconInfo[i]])
  2547. }, _frag); //
  2548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2551. }
  2552. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2553. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2554. _content = $$("div", {
  2555. className: "U_MD_D_KO",
  2556. "onmousedown": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_futianAdminDeskIconInfo[i]]),
  2560. "onclick": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_futianAdminDeskIconInfo[i]])
  2564. }, _frag); //
  2565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2568. }
  2569. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2570. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2571. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2572. continue
  2573. }
  2574. _content = $$("div", {
  2575. className: "U_MD_D_KO",
  2576. "onmousedown": U.UF.C.closure(function (obj) {
  2577. //防止拖动图标即打开了桌面应用
  2578. U.MD.D.click(this, obj);
  2579. }, [_futianTeacherDeskIconInfo[i]]),
  2580. "onclick": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_futianTeacherDeskIconInfo[i]])
  2584. }, _frag); //
  2585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2588. }
  2589. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2590. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2591. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2592. continue
  2593. }
  2594. _content = $$("div", {
  2595. className: "U_MD_D_KO",
  2596. "onmousedown": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_MingdeTeacherDeskIcon[i]]),
  2600. "onclick": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_MingdeTeacherDeskIcon[i]])
  2604. }, _frag); //
  2605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2608. }
  2609. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2610. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2611. _content = $$("div", {
  2612. className: "U_MD_D_KO",
  2613. "onmousedown": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_lhsAdminDesktopIconInfo[i]]),
  2617. "onclick": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_lhsAdminDesktopIconInfo[i]])
  2621. }, _frag); //
  2622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2625. }
  2626. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2627. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2628. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2629. continue
  2630. }
  2631. _content = $$("div", {
  2632. className: "U_MD_D_KO",
  2633. "onmousedown": U.UF.C.closure(function (obj) {
  2634. //防止拖动图标即打开了桌面应用
  2635. U.MD.D.click(this, obj);
  2636. }, [_lhsteacherDesktopIconInfo[i]]),
  2637. "onclick": U.UF.C.closure(function (obj) {
  2638. //防止拖动图标即打开了桌面应用
  2639. U.MD.D.click(this, obj);
  2640. }, [_lhsteacherDesktopIconInfo[i]])
  2641. }, _frag); //
  2642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2645. }
  2646. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2647. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2648. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2649. continue
  2650. }
  2651. _content = $$("div", {
  2652. className: "U_MD_D_KO",
  2653. "onmousedown": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2657. "onclick": U.UF.C.closure(function (obj) {
  2658. //防止拖动图标即打开了桌面应用
  2659. U.MD.D.click(this, obj);
  2660. }, [_zhoujiateacherDesktopIconInfo[i]])
  2661. }, _frag); //
  2662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2665. }
  2666. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2667. for (i = 0; i < _hanDeskIcon.length; i++) {
  2668. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2669. continue
  2670. }
  2671. _content = $$("div", {
  2672. className: "U_MD_D_KO",
  2673. "onmousedown": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_hanDeskIcon[i]]),
  2677. "onclick": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_hanDeskIcon[i]])
  2681. }, _frag); //
  2682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2685. }
  2686. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2687. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2688. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2689. continue
  2690. }
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_orgStemDeskIcon[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_orgStemDeskIcon[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2705. }
  2706. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2707. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2708. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2709. continue
  2710. }
  2711. _content = $$("div", {
  2712. className: "U_MD_D_KO",
  2713. "onmousedown": U.UF.C.closure(function (obj) {
  2714. //防止拖动图标即打开了桌面应用
  2715. U.MD.D.click(this, obj);
  2716. }, [_szulsDeskIcon[i]]),
  2717. "onclick": U.UF.C.closure(function (obj) {
  2718. //防止拖动图标即打开了桌面应用
  2719. U.MD.D.click(this, obj);
  2720. }, [_szulsDeskIcon[i]])
  2721. }, _frag); //
  2722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2725. }
  2726. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2727. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2728. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2729. continue
  2730. }
  2731. _content = $$("div", {
  2732. className: "U_MD_D_KO",
  2733. "onmousedown": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_orgDesktopIconInfo[i]]),
  2737. "onclick": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_orgDesktopIconInfo[i]])
  2741. }, _frag); //
  2742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2745. }
  2746. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2747. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2748. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2749. continue
  2750. }
  2751. _content = $$("div", {
  2752. className: "U_MD_D_KO",
  2753. "onmousedown": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_schoolDesktopIconInfo[i]]),
  2757. "onclick": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_schoolDesktopIconInfo[i]])
  2761. }, _frag); //
  2762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2765. }
  2766. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2767. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2768. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2769. continue
  2770. }
  2771. _content = $$("div", {
  2772. className: "U_MD_D_KO",
  2773. "onmousedown": U.UF.C.closure(function (obj) {
  2774. //防止拖动图标即打开了桌面应用
  2775. U.MD.D.click(this, obj);
  2776. }, [_GMteacherDesktopIconInfo[i]]),
  2777. "onclick": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_GMteacherDesktopIconInfo[i]])
  2781. }, _frag); //
  2782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2785. }
  2786. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2787. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2788. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2789. continue
  2790. }
  2791. _content = $$("div", {
  2792. className: "U_MD_D_KO",
  2793. "onmousedown": U.UF.C.closure(function (obj) {
  2794. //防止拖动图标即打开了桌面应用
  2795. U.MD.D.click(this, obj);
  2796. }, [_SONGteacherDesktopIconInfo[i]]),
  2797. "onclick": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_SONGteacherDesktopIconInfo[i]])
  2801. }, _frag); //
  2802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2805. }
  2806. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2807. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2808. _content = $$("div", {
  2809. className: "U_MD_D_KO",
  2810. "onmousedown": U.UF.C.closure(function (obj) {
  2811. //防止拖动图标即打开了桌面应用
  2812. U.MD.D.click(this, obj);
  2813. }, [_GMstudentDesktopIconInfo[i]]),
  2814. "onclick": U.UF.C.closure(function (obj) {
  2815. //防止拖动图标即打开了桌面应用
  2816. U.MD.D.click(this, obj);
  2817. }, [_GMstudentDesktopIconInfo[i]])
  2818. }, _frag); //
  2819. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2820. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2821. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2822. }
  2823. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2824. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2825. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2826. continue
  2827. }
  2828. _content = $$("div", {
  2829. className: "U_MD_D_KO",
  2830. "onmousedown": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_tcTeacherDeskIconInfo[i]]),
  2834. "onclick": U.UF.C.closure(function (obj) {
  2835. //防止拖动图标即打开了桌面应用
  2836. U.MD.D.click(this, obj);
  2837. }, [_tcTeacherDeskIconInfo[i]])
  2838. }, _frag); //
  2839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2842. }
  2843. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2844. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2845. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2846. continue
  2847. }
  2848. _content = $$("div", {
  2849. className: "U_MD_D_KO",
  2850. "onmousedown": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_tcOrganizerDeskIconInfo[i]]),
  2854. "onclick": U.UF.C.closure(function (obj) {
  2855. //防止拖动图标即打开了桌面应用
  2856. U.MD.D.click(this, obj);
  2857. }, [_tcOrganizerDeskIconInfo[i]])
  2858. }, _frag); //
  2859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2862. }
  2863. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2864. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2865. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2866. continue
  2867. }
  2868. _content = $$("div", {
  2869. className: "U_MD_D_KO",
  2870. "onmousedown": U.UF.C.closure(function (obj) {
  2871. //防止拖动图标即打开了桌面应用
  2872. U.MD.D.click(this, obj);
  2873. }, [_szscTeacherDeskIconInfo[i]]),
  2874. "onclick": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_szscTeacherDeskIconInfo[i]])
  2878. }, _frag); //
  2879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2882. }
  2883. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2884. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2885. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2886. continue
  2887. }
  2888. _content = $$("div", {
  2889. className: "U_MD_D_KO",
  2890. "onmousedown": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_szscOrganizerDeskIconInfo[i]]),
  2894. "onclick": U.UF.C.closure(function (obj) {
  2895. //防止拖动图标即打开了桌面应用
  2896. U.MD.D.click(this, obj);
  2897. }, [_szscOrganizerDeskIconInfo[i]])
  2898. }, _frag); //
  2899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2902. }
  2903. } else {
  2904. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2905. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  2906. continue
  2907. }
  2908. _content = $$("div", {
  2909. className: "U_MD_D_KO",
  2910. "onmousedown": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_teacherDesktopIconInfo[i]]),
  2914. "onclick": U.UF.C.closure(function (obj) {
  2915. //防止拖动图标即打开了桌面应用
  2916. U.MD.D.click(this, obj);
  2917. }, [_teacherDesktopIconInfo[i]])
  2918. }, _frag); //
  2919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2922. }
  2923. }
  2924. } else {
  2925. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2926. _content = $$("div", {
  2927. className: "U_MD_D_KO",
  2928. style: { 'width': '124px', 'height': '145px' },
  2929. "onmousedown": U.UF.C.closure(function (obj) {
  2930. //防止拖动图标即打开了桌面应用
  2931. U.MD.D.click(this, obj);
  2932. }, [_easyDesktopIconInfo[i]]),
  2933. "onclick": U.UF.C.closure(function (obj) {
  2934. //防止拖动图标即打开了桌面应用
  2935. U.MD.D.click(this, obj);
  2936. }, [_easyDesktopIconInfo[i]])
  2937. }, _frag); //
  2938. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2939. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2940. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2941. }
  2942. }
  2943. if (type == 1) {
  2944. //加载好后给图标定位
  2945. U.MD.D.iconPostion($(_frag).Child());
  2946. } else {
  2947. //加载好后给图标定位
  2948. U.MD.D.iconPostion2($(_frag).Child());
  2949. }
  2950. //把图标加载到页面
  2951. el.appendChild(_frag);
  2952. }
  2953. /**
  2954. * 显示任务栏
  2955. *
  2956. * @param {element} 桌面元素
  2957. */
  2958. U.MD.D.I.displayTaskbar = function (el) {
  2959. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2960. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2961. //任务栏位置变化
  2962. U.selectEl(el).css({ "bottom": "0px" });
  2963. //桌面位置变话
  2964. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2965. }
  2966. }
  2967. //#region 桌面图标拖动逻辑
  2968. /**
  2969. * 桌面排列图标
  2970. *
  2971. * @param {element} 桌面元素
  2972. * @param {object} 上下相距的距离
  2973. * @param {object} 左右相距的距离
  2974. * @return {object} 命名空间
  2975. */
  2976. U.MD.D.iconPostion = function (childs, top, left) {
  2977. var i; //用于循环处理
  2978. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2979. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2980. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2981. for (i = 0; i < childs.length; i++) {
  2982. //如果竖排top超过了范围处理
  2983. if (top + 95 > US.height - 10) {
  2984. //left超过了页面范围处理,则向上重叠打印处理
  2985. if ((left + 180) > US.width) {
  2986. top -= 110;
  2987. left -= 90;
  2988. }
  2989. //没有超过范围,那么left+90添加到下一个竖排打印
  2990. else {
  2991. left += 90;
  2992. top = 15;
  2993. };
  2994. }
  2995. //给图标的位置赋值
  2996. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2997. if (i < childs.length - 1) {
  2998. //页面图标每次向下加95
  2999. top += 95;
  3000. }
  3001. }
  3002. //返回最后调用的图标的位置
  3003. return [top, left];
  3004. }
  3005. /**
  3006. * 桌面排列图标
  3007. *
  3008. * @param {element} 桌面元素
  3009. * @param {object} 上下相距的距离
  3010. * @param {object} 左右相距的距离
  3011. * @return {object} 命名空间
  3012. */
  3013. U.MD.D.iconPostion2 = function (childs, top, left) {
  3014. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3015. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3016. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3017. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3018. for (i = 0; i < childs.length; i++) {
  3019. //如果竖排top超过了范围处理
  3020. if (left + 150 > US.width - 10) {
  3021. //left超过了页面范围处理,则向上重叠打印处理
  3022. if ((top + 180) > US.Height) {
  3023. top -= 150;
  3024. left -= 150;
  3025. }
  3026. //没有超过范围,那么left+90添加到下一个竖排打印
  3027. else {
  3028. top += 150;
  3029. left = ol;
  3030. };
  3031. }
  3032. //给图标的位置赋值
  3033. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3034. if (i < childs.length - 1) {
  3035. //页面图标每次向下加95
  3036. left += 150;
  3037. }
  3038. }
  3039. //返回最后调用的图标的位置
  3040. return [top, left];
  3041. }
  3042. /**
  3043. * 桌面点击事件逻辑
  3044. *
  3045. * @param {element} 桌面元素
  3046. * @param {object} 上下相距的距离
  3047. * @param {object} 左右相距的距离
  3048. * @return {object} 命名空间
  3049. */
  3050. U.MD.D.click = function (el, obj) {
  3051. var _buttonnumber = event.button; //点击的按钮的事件值
  3052. var _userinfo = US.userInfo;
  3053. U.UF.EV.stopBubble(); //阻止向上冒泡
  3054. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3055. if (_buttonnumber < 2) {
  3056. //如果是click事件的处理
  3057. if (event.type == "click") {
  3058. //如果元素在mousemove事件中没有移动则出发click事件
  3059. if (!U.MD.D.I.IsDrag) {
  3060. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3061. U.alert("请先登录您的账号!");
  3062. setTimeout(() => {
  3063. U.MD.U.L.login();
  3064. }, 2000);
  3065. } else {
  3066. //打开应用处理
  3067. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3068. }
  3069. }
  3070. }
  3071. //如果是mouse事件的处理
  3072. else {
  3073. if (US.Config.type == '1') {
  3074. //拖动处理,添加拖动和拖动结束事件
  3075. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3076. }
  3077. }
  3078. U.MD.D.I.IsDrag = false;
  3079. }
  3080. }
  3081. /**
  3082. * 拖动的处理
  3083. *
  3084. */
  3085. U.MD.D.iconMove = function () {
  3086. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3087. U.MD.D.I.IsDrag = true;
  3088. }
  3089. /**
  3090. * 拖动结束后,这里是定位处理,以网状的形式定位
  3091. *
  3092. * @param {element} 拖动的元素
  3093. * @return {object} 命名空间
  3094. */
  3095. U.MD.D.iconUp = function (el) {
  3096. var _top = 15,
  3097. _left = 20,
  3098. _margin,
  3099. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3100. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3101. if (_positioninfo["OT"] > 15) {
  3102. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3103. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3104. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3105. }
  3106. if (_positioninfo["OL"] > 20) {
  3107. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3108. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3109. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3110. }
  3111. //while循环判断么一个重叠的元素
  3112. do {
  3113. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3114. _top = _positioninfo[0] + 95; //得到定位后的top
  3115. _left = _positioninfo[1]; //得到定位后的left
  3116. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3117. }
  3118. /**
  3119. * 判断拖动后图标是否重叠
  3120. *
  3121. * @param {element} 拖动的元素
  3122. * @param {element} 桌面所有的元素
  3123. * @param {array} 拖动元素的位置
  3124. ----------[0] 上 top
  3125. ----------[1] 左 left
  3126. * @return {object} 命名空间
  3127. */
  3128. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3129. //循环所有的图标
  3130. for (var i = 0; i < childs.length; i++) {
  3131. //判断有没有和该图标诶子重叠的元素
  3132. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3133. return childs[i]; //如果有返回
  3134. }
  3135. }
  3136. }
  3137. //#endregion
  3138. //#endregion
  3139. //#region 桌面应用
  3140. /**
  3141. * 打开应用
  3142. *
  3143. * @param {string} 类型
  3144. -----------------Disk 网盘系统
  3145. -----------------PDisk 学习系统网盘
  3146. -----------------Poto 图片
  3147. -----------------Video 视频
  3148. -----------------Music 音乐
  3149. -----------------Word word
  3150. -----------------Excel excel
  3151. -----------------Txt 记事本
  3152. -----------------PB 学习系统
  3153. -----------------Blog 朋友圈系统
  3154. -----------------FTP ftp系统
  3155. -----------------Group 好友群
  3156. -----------------SY 首页系统
  3157. -----------------Set 个人设置
  3158. -----------------XSet 系统设置
  3159. -----------------App 我们所有的app
  3160. -----------------BC c.1473.cn 平台
  3161. -----------------CWeb d.1473.cn 变成平台
  3162. -----------------其他的外联系统 我们统一用iframe打开
  3163. * @param {array} 类型
  3164. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3165. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3166. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3167. 如果第一个参数为其他,则无第二个参数
  3168. * @returns {array}
  3169. */
  3170. window.addEventListener('message', function (e) { // 监听 message 事件
  3171. // alert(e.data.type);
  3172. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3173. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3174. //3是展示全部阶段 2学生 1老师 4专家
  3175. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3176. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3177. //3是展示全部阶段 2学生 1老师 4专家
  3178. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3179. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3180. //3是展示全部阶段 2学生 1老师 4专家
  3181. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3182. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3183. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3184. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3185. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3186. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3187. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3188. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3189. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3190. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3191. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3192. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3193. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3194. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3195. //3是展示全部阶段 2学生 1老师 4专家
  3196. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3197. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3198. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3199. U.MD.D.I.selectUser();
  3200. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3201. var _formel = document.getElementById("study");
  3202. U.UF.F.windowZooming(_formel);
  3203. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3204. var _formel = document.getElementById("studyDetail");
  3205. U.UF.F.windowZooming(_formel);
  3206. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3207. var _formel = document.getElementById("studyDetail");
  3208. U.UF.F.windowZooming(_formel);
  3209. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3210. var _formel = document.getElementById("studentStudy");
  3211. U.UF.F.windowZooming(_formel);
  3212. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3213. // var _formel = document.getElementById("study");
  3214. //如果最大化了,那么就把他缩小
  3215. // if (_formel.ismaximize) {
  3216. // return;
  3217. // }
  3218. // U.UF.F.windowZooming(_formel);
  3219. // U.UF.F.topWindow(_formel);
  3220. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3221. // var _formel = document.getElementById("studyDetail");
  3222. //如果最大化了,那么就把他缩小
  3223. // if (_formel.ismaximize) {
  3224. // return;
  3225. // }
  3226. // U.UF.F.windowZooming(_formel);
  3227. // U.UF.F.topWindow(_formel);
  3228. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3229. // var _formel = document.getElementById("studentStudy");
  3230. // if (_formel.ismaximize) {
  3231. // return;
  3232. // }
  3233. // U.UF.F.windowZooming(_formel);
  3234. // U.UF.F.topWindow(_formel);
  3235. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3236. var _formel = document.getElementById("study");
  3237. // if (_formel.ismaximize) {
  3238. // return;
  3239. // }
  3240. // U.UF.F.windowZooming(_formel);
  3241. U.UF.F.topWindow(_formel);
  3242. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3243. var _formel = document.getElementById("studentIndex");
  3244. U.UF.F.windowZooming(_formel);
  3245. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3246. var _formel = document.getElementById("studyDetailS");
  3247. U.UF.F.windowZooming(_formel);
  3248. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3249. var _formel = document.getElementById("studioIndex");
  3250. U.UF.F.windowZooming(_formel);
  3251. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3252. var _formel = document.getElementById("studyDetailStudio");
  3253. U.UF.F.windowZooming(_formel);
  3254. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3255. var _formel = document.getElementById("studyDetailStudio");
  3256. U.UF.F.windowZooming(_formel);
  3257. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3258. var _formel = document.getElementById("studyDetailNT");
  3259. U.UF.F.windowZooming(_formel);
  3260. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3261. var _formel = document.getElementById("studyDetailS");
  3262. U.UF.F.windowZooming(_formel);
  3263. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3264. var _formel = document.getElementById("studyDetailS");
  3265. U.UF.F.topWindow(_formel);
  3266. } else if (e.data.tools && e.data.tools == "1") {
  3267. // U.MD.D.I.openApplication("whiteboard")
  3268. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3269. } else if (e.data.tools && e.data.tools == "2") {
  3270. U.MD.D.I.openApplication("note")
  3271. } else if (e.data.tools && e.data.tools == "3") {
  3272. // U.MD.D.I.openApplication("mind")
  3273. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3274. } else if (e.data.tools && e.data.tools == "4") {
  3275. U.MD.D.I.openApplication("investigation")
  3276. } else if (e.data.tools && e.data.tools == "6") {
  3277. // U.MD.D.I.openApplication("doc")
  3278. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3279. } else if (e.data.tools && e.data.tools == "7") {
  3280. // U.MD.D.I.openApplication("mindNetwork")
  3281. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3282. } else if (e.data.tools && e.data.tools == "8") {
  3283. U.MD.D.I.openApplication("library")
  3284. } else if (e.data.tools && e.data.tools == "17") {
  3285. U.MD.D.I.openApplication("stuLibrary")
  3286. } else if (e.data.tools && e.data.tools == "18") {
  3287. U.MD.D.I.openApplication("train")
  3288. } else if (e.data.tools && e.data.tools == "21") {
  3289. U.MD.D.I.openApplication("program")
  3290. } else if (e.data.tools && e.data.tools == "22") {
  3291. U.MD.D.I.openApplication("AIprogram2")
  3292. } else if (e.data.tools && e.data.tools == "23") {
  3293. U.MD.D.I.openApplication("Pythonprogram")
  3294. } else if (e.data.tools && e.data.tools == "24") {
  3295. U.MD.D.I.openApplication("AIprogram")
  3296. } else if (e.data.tools && e.data.tools == "25") {
  3297. U.MD.D.I.openApplication("sys")
  3298. } else if (e.data.tools && e.data.tools == "26") {
  3299. // U.MD.D.I.openApplication("courseDesign")
  3300. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3301. } else if (e.data.tools && e.data.tools == "31") {
  3302. U.MD.D.I.openApplication("netWorkPanel")
  3303. } else if (e.data.tools && e.data.tools == "32") {
  3304. U.MD.D.I.openApplication("codeEdit")
  3305. } else if (e.data.tools && e.data.tools == "57") {
  3306. U.MD.D.I.openApplication("CocoPi")
  3307. } else if (e.data.tools && e.data.tools == "63") {
  3308. U.MD.D.I.openApplication("Wood")
  3309. } else if (e.data.tools && e.data.tools == "58") {
  3310. U.MD.D.I.openApplication("car")
  3311. } else if (e.data.tools && e.data.tools == "59") {
  3312. U.MD.D.I.openApplication("lineSearch")
  3313. } else if (e.data.tools && e.data.tools == "60") {
  3314. U.MD.D.I.openApplication("deepLearning")
  3315. } else if (e.data.tools && e.data.tools == "61") {
  3316. U.MD.D.I.openApplication("allHistory")
  3317. } else if (e.data.tools && e.data.tools == "28") {
  3318. U.MD.D.I.openApplication("translation")
  3319. } else if (e.data.tools && e.data.tools == "37") {
  3320. U.MD.D.I.openApplication("mohe")
  3321. } else if (e.data.tools && e.data.tools == "38") {
  3322. U.MD.D.I.openApplication("24game")
  3323. } else if (e.data.tools && e.data.tools == "39") {
  3324. U.MD.D.I.openApplication("GeoGebra")
  3325. } else if (e.data.tools && e.data.tools == "43") {
  3326. U.MD.D.I.openApplication("studentEvaluate")
  3327. } else if (e.data.tools && e.data.tools == "44") {
  3328. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3329. } else if (e.data.tools && e.data.tools == "46") {
  3330. U.MD.D.I.openApplication("project")
  3331. } else if (e.data.tools && e.data.tools == "71") {
  3332. U.MD.D.I.openApplication("aigptCourse")
  3333. } else if (e.data.tools && e.data.tools == "1s") {
  3334. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3335. } else if (e.data.tools && e.data.tools == "3s") {
  3336. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3337. } else if (e.data.tools && e.data.tools == "6s") {
  3338. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3339. } else if (e.data.tools && e.data.tools == "1studio") {
  3340. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3341. } else if (e.data.tools && e.data.tools == "3studio") {
  3342. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3343. } else if (e.data.tools && e.data.tools == "6studio") {
  3344. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3345. } else if (e.data.tools && e.data.tools == "3y") {
  3346. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3347. } else if (e.data.tools && e.data.tools == "1y") {
  3348. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3349. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3350. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3351. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3352. U.MD.D.I.openApplication("AIAnalyse")
  3353. } else if (e.data.tools && e.data.tools == "1teacher") {
  3354. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3355. } else if (e.data.tools && e.data.tools == "3teacher") {
  3356. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3357. } else if (e.data.tools && e.data.tools == "7teacher") {
  3358. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3359. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3360. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3361. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3362. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3363. } else if (e.data.tools && e.data.tools == "1E") {
  3364. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3365. } else if (e.data.tools && e.data.tools == "3E") {
  3366. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3367. } else if (e.data.tools && e.data.tools == "57y") {
  3368. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3369. } else if (e.data.tools && e.data.tools == "57u") {
  3370. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3371. } else if (e.data.tools && e.data.tools == "57teacher") {
  3372. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3373. } else if (e.data.tools && e.data.tools == "64") {
  3374. U.MD.D.I.openApplication("AIChat")
  3375. } else if (e.data.tools && e.data.tools == "66") {
  3376. U.MD.D.I.openApplication("formulaEdi")
  3377. } else if (e.data.tools && e.data.tools == "67") {
  3378. U.MD.D.I.openApplication("molStr")
  3379. } else if (e.data.tools && e.data.tools == "68") {
  3380. U.MD.D.I.openApplication("timeAxis")
  3381. } else if (e.data.tools && e.data.tools == "openCourse") {
  3382. let _data = {
  3383. typea: e.data.typea || '',
  3384. typeb: e.data.typeb || '',
  3385. typed: e.data.typed || '',
  3386. }
  3387. U.MD.D.I.openInApplication("index", _data)
  3388. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3389. let _data = {
  3390. classid: e.data.classid || '',
  3391. }
  3392. U.MD.D.I.openInApplication("dataClass", _data)
  3393. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3394. let _data = {
  3395. cid: e.data.cid || '',
  3396. gid: e.data.gid || '',
  3397. }
  3398. U.MD.D.I.openInApplication("opencCscl", _data)
  3399. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3400. U.MD.D.I.openApplication("dataBoardTest")
  3401. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3402. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3403. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3404. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3405. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3406. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3407. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3408. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3409. }else if (e.data.tools && e.data.tools == "loginSz") {
  3410. U.MD.D.I.openInApplication("loginSz")
  3411. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3412. if($('#classroom_observation_board')[0]){
  3413. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3414. }
  3415. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3416. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3417. if($('#classroom_observation_ob_comment')[0]){
  3418. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3419. }
  3420. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3421. }
  3422. });
  3423. U.MD.D.I.selectUser = function () {
  3424. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3425. if (res.value[0].length > 0) {
  3426. US.userInfo = res.value[0][0];
  3427. $(".userName")[0].innerHTML = US.userInfo.username;
  3428. }
  3429. }, [], { "type": "GET", "withCredentials": true });
  3430. }
  3431. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3432. var _userinfo = US.userInfo, //登录用户信息
  3433. _userid = US.userInfo.userid, //登录用户id
  3434. _oid = _userinfo.organizeid,
  3435. _type = US.userInfo.type,
  3436. _org = US.userInfo.org,
  3437. _role = US.userInfo.role,
  3438. _classId = US.userInfo.classid;
  3439. if (_type == 4) {
  3440. tType = 4
  3441. }
  3442. switch (str) {
  3443. case "studyDetailNT": //无终端模式
  3444. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3445. setTimeout(() => {
  3446. U.MD.U.L.login();
  3447. }, 2000);
  3448. } else {
  3449. _formdiv = new U.UF.UI.form(
  3450. "课程详情",
  3451. $$("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 }), {
  3452. "id": "studyDetailNT",
  3453. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3454. "onresize": function () { }
  3455. }, {
  3456. closecallback: function () { }
  3457. }, { "style": { "height": "36px" } }).form; //创建窗体
  3458. _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); } }
  3459. break;
  3460. }
  3461. case "studyDetail":
  3462. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3463. setTimeout(() => {
  3464. U.MD.U.L.login();
  3465. }, 2000);
  3466. } else {
  3467. _formdiv = new U.UF.UI.form(
  3468. "课程详情",
  3469. $$("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 }), {
  3470. "id": "studyDetail",
  3471. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3472. "onresize": function () { }
  3473. }, {
  3474. closecallback: function () { }
  3475. }, { "style": { "height": "36px" } }).form; //创建窗体
  3476. _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); } }
  3477. break;
  3478. }
  3479. case "studyDetailTrain":
  3480. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3481. setTimeout(() => {
  3482. U.MD.U.L.login();
  3483. }, 2000);
  3484. } else {
  3485. _formdiv = new U.UF.UI.form(
  3486. "培训详情",
  3487. $$("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 }), {
  3488. "id": "studyDetailTrain",
  3489. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3490. "onresize": function () { }
  3491. }, {
  3492. closecallback: function () { }
  3493. }, { "style": { "height": "36px" } }).form; //创建窗体
  3494. _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); } }
  3495. break;
  3496. }
  3497. case "studyDetailS":
  3498. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3499. setTimeout(() => {
  3500. U.MD.U.L.login();
  3501. }, 2000);
  3502. } else {
  3503. _formdiv = new U.UF.UI.form(
  3504. "项目详情",
  3505. $$("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 }), {
  3506. "id": "studyDetailS",
  3507. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3508. "onresize": function () { }
  3509. }, {
  3510. closecallback: function () { }
  3511. }, { "style": { "height": "36px" } }).form; //创建窗体
  3512. _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); } }
  3513. break;
  3514. }
  3515. case "studyDetailStudio":
  3516. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3517. setTimeout(() => {
  3518. U.MD.U.L.login();
  3519. }, 2000);
  3520. } else {
  3521. _formdiv = new U.UF.UI.form(
  3522. "工作详情",
  3523. $$("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 }), {
  3524. "id": "studyDetailStudio",
  3525. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3526. "onresize": function () { }
  3527. }, {
  3528. closecallback: function () { }
  3529. }, { "style": { "height": "36px" } }).form; //创建窗体
  3530. _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); } }
  3531. break;
  3532. }
  3533. case "studyDetailS5":
  3534. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3535. setTimeout(() => {
  3536. U.MD.U.L.login();
  3537. }, 2000);
  3538. } else {
  3539. _formdiv = new U.UF.UI.form(
  3540. "项目详情",
  3541. $$("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 }), {
  3542. "id": "studyDetailS",
  3543. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3544. "onresize": function () { }
  3545. }, {
  3546. closecallback: function () { }
  3547. }, { "style": { "height": "36px" } }).form; //创建窗体
  3548. _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); } }
  3549. break;
  3550. }
  3551. case "studyDetailGM":
  3552. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3553. setTimeout(() => {
  3554. U.MD.U.L.login();
  3555. }, 2000);
  3556. } else {
  3557. _formdiv = new U.UF.UI.form(
  3558. "课程详情",
  3559. $$("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 }), {
  3560. "id": "studyDetail",
  3561. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3562. "onresize": function () { }
  3563. }, {
  3564. closecallback: function () { }
  3565. }, { "style": { "height": "36px" } }).form; //创建窗体
  3566. _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); } }
  3567. break;
  3568. }
  3569. case "hanUrl":
  3570. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3571. setTimeout(() => {
  3572. U.MD.U.L.login();
  3573. }, 2000);
  3574. } else {
  3575. _formdiv = new U.UF.UI.form(
  3576. "汉字宫",
  3577. $$("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" }), {
  3578. "id": "hanUrl",
  3579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3580. "onresize": function () { }
  3581. }, {
  3582. closecallback: function () { }
  3583. }, { "style": { "height": "36px" } }).form; //创建窗体
  3584. _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); } }
  3585. break;
  3586. }
  3587. case "index":
  3588. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3589. setTimeout(() => {
  3590. U.MD.U.L.login();
  3591. }, 2000);
  3592. } else {
  3593. _formdiv = new U.UF.UI.form(
  3594. "课程中心",
  3595. $$("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 }), {
  3596. "id": "study",
  3597. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3598. "onresize": function () { }
  3599. }, {
  3600. closecallback: function () { }
  3601. }, { "style": { "height": "36px" } }).form; //创建窗体
  3602. _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); } }
  3603. break;
  3604. }
  3605. case "dataClass":
  3606. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3607. setTimeout(() => {
  3608. U.MD.U.L.login();
  3609. }, 2000);
  3610. } else {
  3611. _formdiv = new U.UF.UI.form(
  3612. "数据报告",
  3613. $$("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 }), {
  3614. "id": "dataClass",
  3615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3616. "onresize": function () { }
  3617. }, {
  3618. closecallback: function () { }
  3619. }, { "style": { "height": "36px" } }).form; //创建窗体
  3620. _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); } }
  3621. break;
  3622. }
  3623. case "opencCscl":
  3624. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3625. setTimeout(() => {
  3626. U.MD.U.L.login();
  3627. }, 2000);
  3628. } else {
  3629. _formdiv = new U.UF.UI.form(
  3630. "协同建构",
  3631. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  3632. "id": "futureClass",
  3633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3634. "onresize": function () { }
  3635. }, {
  3636. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3637. }, { "style": { "height": "36px" } }).form; //创建窗体
  3638. _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); } }
  3639. break;
  3640. }
  3641. case "openCourseUpdate":
  3642. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3643. setTimeout(() => {
  3644. U.MD.U.L.login();
  3645. }, 2000);
  3646. } else {
  3647. _formdiv = new U.UF.UI.form(
  3648. "课程管理",
  3649. $$("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 }), {
  3650. "id": "openCourseUpdate",
  3651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3652. "onresize": function () { }
  3653. }, {
  3654. closecallback: function () { }
  3655. }, { "style": { "height": "36px" } }).form; //创建窗体
  3656. break;
  3657. }
  3658. case "openNewCourseUpdate":
  3659. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3660. setTimeout(() => {
  3661. U.MD.U.L.login();
  3662. }, 2000);
  3663. } else {
  3664. _formdiv = new U.UF.UI.form(
  3665. "课程管理",
  3666. $$("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 }), {
  3667. "id": "openCourseUpdate",
  3668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3669. "onresize": function () { }
  3670. }, {
  3671. closecallback: function () { }
  3672. }, { "style": { "height": "36px" } }).form; //创建窗体
  3673. break;
  3674. }
  3675. case "openCourseEUpdate":
  3676. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3677. setTimeout(() => {
  3678. U.MD.U.L.login();
  3679. }, 2000);
  3680. } else {
  3681. _formdiv = new U.UF.UI.form(
  3682. "课程管理",
  3683. $$("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 }), {
  3684. "id": "openCourseUpdate",
  3685. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3686. "onresize": function () { }
  3687. }, {
  3688. closecallback: function () { }
  3689. }, { "style": { "height": "36px" } }).form; //创建窗体
  3690. break;
  3691. }
  3692. case "openCourseNewUpdate":
  3693. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3694. setTimeout(() => {
  3695. U.MD.U.L.login();
  3696. }, 2000);
  3697. } else {
  3698. _formdiv = new U.UF.UI.form(
  3699. "课程管理",
  3700. $$("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 }), {
  3701. "id": "openCourseUpdate",
  3702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3703. "onresize": function () { }
  3704. }, {
  3705. closecallback: function () { }
  3706. }, { "style": { "height": "36px" } }).form; //创建窗体
  3707. break;
  3708. }
  3709. case "inviteLoginSz":
  3710. _formdiv = new U.UF.UI.form(
  3711. "随机码登录",
  3712. $$("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 }), {
  3713. "id": "loginSz",
  3714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3715. "onresize": function () { }
  3716. }, {
  3717. closecallback: function () { }
  3718. }, { "style": { "height": "36px" } }).form; //创建窗体
  3719. break;
  3720. case "loginSz":
  3721. _formdiv = new U.UF.UI.form(
  3722. "教师登录",
  3723. $$("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" }), {
  3724. "id": "loginSz",
  3725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3726. "onresize": function () { }
  3727. }, {
  3728. closecallback: function () { }
  3729. }, { "style": { "height": "36px" } }).form; //创建窗体
  3730. break;
  3731. case "teacher":
  3732. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3733. setTimeout(() => {
  3734. U.MD.U.L.login();
  3735. }, 2000);
  3736. } else {
  3737. _formdiv = new U.UF.UI.form(
  3738. "教师管理",
  3739. $$("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 }), {
  3740. "id": "teacher",
  3741. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3742. "onresize": function () { }
  3743. }, {
  3744. closecallback: function () { }
  3745. }, { "style": { "height": "36px" } }).form; //创建窗体
  3746. break;
  3747. }
  3748. case "dataBoardSZArea":
  3749. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3750. setTimeout(() => {
  3751. U.MD.U.L.login();
  3752. }, 2000);
  3753. } else {
  3754. _formdiv = new U.UF.UI.form(
  3755. "综合数据看板",
  3756. $$("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 }), {
  3757. "id": "dataBoardSZArea",
  3758. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3759. "onresize": function () { }
  3760. }, {
  3761. closecallback: function () { }
  3762. }, { "style": { "height": "36px" } }).form; //创建窗体
  3763. break;
  3764. }
  3765. case "dataBoardSZCity":
  3766. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3767. setTimeout(() => {
  3768. U.MD.U.L.login();
  3769. }, 2000);
  3770. } else {
  3771. _formdiv = new U.UF.UI.form(
  3772. "综合数据看板",
  3773. $$("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 }), {
  3774. "id": "dataBoardSZCity",
  3775. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3776. "onresize": function () { }
  3777. }, {
  3778. closecallback: function () { }
  3779. }, { "style": { "height": "36px" } }).form; //创建窗体
  3780. break;
  3781. }
  3782. case "classroom_observation_board":
  3783. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3784. setTimeout(() => {
  3785. U.MD.U.L.login();
  3786. }, 2000);
  3787. } else {
  3788. _formdiv = new U.UF.UI.form(
  3789. "课堂观察",
  3790. $$("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 }), {
  3791. "id": "classroom_observation_board",
  3792. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3793. "onresize": function () { }
  3794. }, {
  3795. closecallback: function () { }
  3796. }, { "style": { "height": "36px" } }).form; //创建窗体
  3797. break;
  3798. }
  3799. case "classroom_observation_ob_comment":
  3800. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3801. setTimeout(() => {
  3802. U.MD.U.L.login();
  3803. }, 2000);
  3804. } else {
  3805. _formdiv = new U.UF.UI.form(
  3806. "课堂审核",
  3807. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  3808. "id": "classroom_observation_ob_comment",
  3809. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3810. "onresize": function () { }
  3811. }, {
  3812. closecallback: function () { }
  3813. }, { "style": { "height": "36px" } }).form; //创建窗体
  3814. break;
  3815. }
  3816. }
  3817. }
  3818. U.MD.D.I.openApplication = function (str, obj, info) {
  3819. obj = obj || {};
  3820. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3821. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3822. _userinfo = US.userInfo, //登录用户信息
  3823. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3824. _oid = obj.organizeid || _userinfo.organizeid,
  3825. _type = US.userInfo.type,
  3826. _org = US.userInfo.org,
  3827. _role = US.userInfo.role,
  3828. _classId = US.userInfo.classid,
  3829. _TscreenType = 1
  3830. _screenType = 2,
  3831. _SscreenType = 3;
  3832. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3833. return;
  3834. }
  3835. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3836. switch (str) {
  3837. case "studnetProject": //好友打开
  3838. _formdiv = new U.UF.UI.form(
  3839. "我的项目",
  3840. $$("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 }), {
  3841. "id": "studnetProject",
  3842. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3843. "onresize": function () { }
  3844. }, {
  3845. closecallback: function () { }
  3846. }, { "style": { "height": "36px" } }).form; //创建窗体
  3847. _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); } }
  3848. break;
  3849. case "studentEvaluate": //好友打开
  3850. _formdiv = new U.UF.UI.form(
  3851. "我的评价",
  3852. $$("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 }), {
  3853. "id": "studentEvaluate",
  3854. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3855. "onresize": function () { }
  3856. }, {
  3857. closecallback: function () { }
  3858. }, { "style": { "height": "36px" } }).form; //创建窗体
  3859. _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); } }
  3860. break;
  3861. case "my":
  3862. _formdiv = new U.UF.UI.form(
  3863. "我的资料",
  3864. $$("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 }), {
  3865. "id": "my",
  3866. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3867. "onresize": function () { }
  3868. }, {
  3869. closecallback: function () { }
  3870. }, { "style": { "height": "36px" } }).form; //创建窗体
  3871. _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); } }
  3872. break;
  3873. case "program":
  3874. _formdiv = new U.UF.UI.form(
  3875. "编程平台",
  3876. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3877. "id": "program",
  3878. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3879. "onresize": function () { }
  3880. }, {
  3881. closecallback: function () { }
  3882. }, { "style": { "height": "36px" } }).form; //创建窗体
  3883. _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); } }
  3884. break;
  3885. case "library":
  3886. _formdiv = new U.UF.UI.form(
  3887. "素材库",
  3888. $$("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 }), {
  3889. "id": "library",
  3890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3891. "onresize": function () { }
  3892. }, {
  3893. closecallback: function () { }
  3894. }, { "style": { "height": "36px" } }).form; //创建窗体
  3895. _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); } }
  3896. break;
  3897. case "whiteboard":
  3898. _formdiv = new U.UF.UI.form(
  3899. "电子白板",
  3900. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3901. "id": "whiteboard",
  3902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3903. "onresize": function () { }
  3904. }, {
  3905. closecallback: function () { }
  3906. }, { "style": { "height": "36px" } }).form; //创建窗体
  3907. _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); } }
  3908. break;
  3909. case "investigation":
  3910. _formdiv = new U.UF.UI.form(
  3911. "问卷调查",
  3912. $$("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 }), {
  3913. "id": "investigation",
  3914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3915. "onresize": function () { }
  3916. }, {
  3917. closecallback: function () { }
  3918. }, { "style": { "height": "36px" } }).form; //创建窗体
  3919. _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); } }
  3920. break;
  3921. case "note":
  3922. _formdiv = new U.UF.UI.form(
  3923. "便签分类",
  3924. $$("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 }), {
  3925. "id": "note",
  3926. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3927. "onresize": function () { }
  3928. }, {
  3929. closecallback: function () { }
  3930. }, { "style": { "height": "36px" } }).form; //创建窗体
  3931. _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); } }
  3932. break;
  3933. // case "score":
  3934. // _formdiv = new U.UF.UI.form(
  3935. // "量规评分",
  3936. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3937. // "id": "score",
  3938. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3939. // "onresize": function() {}
  3940. // }, {
  3941. // closecallback: function() {}
  3942. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3943. // _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); } }
  3944. // break;
  3945. case "mind":
  3946. _formdiv = new U.UF.UI.form(
  3947. "思维导图",
  3948. $$("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"
  3949. "id": "mind",
  3950. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3951. "onresize": function () { }
  3952. }, {
  3953. closecallback: function () { }
  3954. }, { "style": { "height": "36px" } }).form; //创建窗体
  3955. _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); } }
  3956. break;
  3957. case "doc":
  3958. // U.MD.D.I.isRoom();
  3959. _formdiv = new U.UF.UI.form(
  3960. "协同文档",
  3961. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3962. "id": "doc",
  3963. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3964. "onresize": function () { }
  3965. }, {
  3966. closecallback: function () { }
  3967. }, { "style": { "height": "36px" } }).form; //创建窗体
  3968. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3969. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3970. // })
  3971. _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); } }
  3972. break;
  3973. case "studentStudy":
  3974. _formdiv = new U.UF.UI.form(
  3975. "课程中心",
  3976. $$("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
  3977. "id": "studentStudy",
  3978. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3979. "onresize": function () { }
  3980. }, {
  3981. closecallback: function () { }
  3982. }, { "style": { "height": "36px" } }).form; //创建窗体
  3983. _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); } }
  3984. break;
  3985. case "train": //好友打开
  3986. _formdiv = new U.UF.UI.form(
  3987. "训练平台",
  3988. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3989. "id": "train",
  3990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3991. "onresize": function () { }
  3992. }, {
  3993. closecallback: function () { }
  3994. }, { "style": { "height": "36px" } }).form; //创建窗体
  3995. _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); } }
  3996. break;
  3997. case "mindNetwork": //好友打开
  3998. _formdiv = new U.UF.UI.form(
  3999. "思维网格",
  4000. $$("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 }), {
  4001. "id": "mindNetwork",
  4002. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4003. "onresize": function () { }
  4004. }, {
  4005. closecallback: function () { }
  4006. }, { "style": { "height": "36px" } }).form; //创建窗体
  4007. _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); } }
  4008. break;
  4009. case "studentClassRoom": //好友打开
  4010. _formdiv = new U.UF.UI.form(
  4011. "实时课堂",
  4012. $$("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 }), {
  4013. "id": "studentClassRoom",
  4014. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4015. "onresize": function () { }
  4016. }, {
  4017. closecallback: function () { }
  4018. }, { "style": { "height": "36px" } }).form; //创建窗体
  4019. _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); } }
  4020. setTimeout(() => {
  4021. U.UF.F.windowZooming(_formdiv)
  4022. }, 0);
  4023. break;
  4024. }
  4025. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4026. switch (str) {
  4027. case "studnetProject": //好友打开
  4028. _formdiv = new U.UF.UI.form(
  4029. "我的项目",
  4030. $$("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 }), {
  4031. "id": "studnetProject",
  4032. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4033. "onresize": function () { }
  4034. }, {
  4035. closecallback: function () { }
  4036. }, { "style": { "height": "36px" } }).form; //创建窗体
  4037. _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); } }
  4038. break;
  4039. case "studentEvaluate": //好友打开
  4040. _formdiv = new U.UF.UI.form(
  4041. "我的评价",
  4042. $$("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 }), {
  4043. "id": "studentEvaluate",
  4044. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4045. "onresize": function () { }
  4046. }, {
  4047. closecallback: function () { }
  4048. }, { "style": { "height": "36px" } }).form; //创建窗体
  4049. _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); } }
  4050. break;
  4051. case "my":
  4052. _formdiv = new U.UF.UI.form(
  4053. "我的资料",
  4054. $$("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 }), {
  4055. "id": "my",
  4056. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4057. "onresize": function () { }
  4058. }, {
  4059. closecallback: function () { }
  4060. }, { "style": { "height": "36px" } }).form; //创建窗体
  4061. _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); } }
  4062. break;
  4063. case "program":
  4064. _formdiv = new U.UF.UI.form(
  4065. "编程平台",
  4066. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4067. "id": "program",
  4068. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4069. "onresize": function () { }
  4070. }, {
  4071. closecallback: function () { }
  4072. }, { "style": { "height": "36px" } }).form; //创建窗体
  4073. _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); } }
  4074. break;
  4075. case "library":
  4076. _formdiv = new U.UF.UI.form(
  4077. "素材库",
  4078. $$("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 }), {
  4079. "id": "library",
  4080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4081. "onresize": function () { }
  4082. }, {
  4083. closecallback: function () { }
  4084. }, { "style": { "height": "36px" } }).form; //创建窗体
  4085. _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); } }
  4086. break;
  4087. case "whiteboard":
  4088. _formdiv = new U.UF.UI.form(
  4089. "电子白板",
  4090. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4091. "id": "whiteboard",
  4092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4093. "onresize": function () { }
  4094. }, {
  4095. closecallback: function () { }
  4096. }, { "style": { "height": "36px" } }).form; //创建窗体
  4097. _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); } }
  4098. break;
  4099. case "investigation":
  4100. _formdiv = new U.UF.UI.form(
  4101. "问卷调查",
  4102. $$("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 }), {
  4103. "id": "investigation",
  4104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4105. "onresize": function () { }
  4106. }, {
  4107. closecallback: function () { }
  4108. }, { "style": { "height": "36px" } }).form; //创建窗体
  4109. _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); } }
  4110. break;
  4111. case "note":
  4112. _formdiv = new U.UF.UI.form(
  4113. "便签分类",
  4114. $$("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 }), {
  4115. "id": "note",
  4116. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4117. "onresize": function () { }
  4118. }, {
  4119. closecallback: function () { }
  4120. }, { "style": { "height": "36px" } }).form; //创建窗体
  4121. _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); } }
  4122. break;
  4123. // case "score":
  4124. // _formdiv = new U.UF.UI.form(
  4125. // "量规评分",
  4126. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4127. // "id": "score",
  4128. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4129. // "onresize": function() {}
  4130. // }, {
  4131. // closecallback: function() {}
  4132. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4133. // _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); } }
  4134. // break;
  4135. case "mind":
  4136. _formdiv = new U.UF.UI.form(
  4137. "思维导图",
  4138. $$("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"
  4139. "id": "mind",
  4140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4141. "onresize": function () { }
  4142. }, {
  4143. closecallback: function () { }
  4144. }, { "style": { "height": "36px" } }).form; //创建窗体
  4145. _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); } }
  4146. break;
  4147. case "doc":
  4148. // U.MD.D.I.isRoom();
  4149. _formdiv = new U.UF.UI.form(
  4150. "协同文档",
  4151. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4152. "id": "doc",
  4153. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4154. "onresize": function () { }
  4155. }, {
  4156. closecallback: function () { }
  4157. }, { "style": { "height": "36px" } }).form; //创建窗体
  4158. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4159. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4160. })
  4161. _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); } }
  4162. break;
  4163. case "train": //好友打开
  4164. _formdiv = new U.UF.UI.form(
  4165. "训练平台",
  4166. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4167. "id": "train",
  4168. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4169. "onresize": function () { }
  4170. }, {
  4171. closecallback: function () { }
  4172. }, { "style": { "height": "36px" } }).form; //创建窗体
  4173. _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); } }
  4174. break;
  4175. case "studentStudy":
  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": 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
  4179. "id": "studentStudy",
  4180. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4181. "onresize": function () { }
  4182. }, {
  4183. closecallback: function () { }
  4184. }, { "style": { "height": "36px" } }).form; //创建窗体
  4185. _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); } }
  4186. break;
  4187. case "mindNetwork": //好友打开
  4188. _formdiv = new U.UF.UI.form(
  4189. "思维网格",
  4190. $$("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 }), {
  4191. "id": "mindNetwork",
  4192. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4193. "onresize": function () { }
  4194. }, {
  4195. closecallback: function () { }
  4196. }, { "style": { "height": "36px" } }).form; //创建窗体
  4197. _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); } }
  4198. break;
  4199. case "studentClassRoom": //好友打开
  4200. _formdiv = new U.UF.UI.form(
  4201. "实时课堂",
  4202. $$("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 }), {
  4203. "id": "studentClassRoom",
  4204. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4205. "onresize": function () { }
  4206. }, {
  4207. closecallback: function () { }
  4208. }, { "style": { "height": "36px" } }).form; //创建窗体
  4209. _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); } }
  4210. setTimeout(() => {
  4211. U.UF.F.windowZooming(_formdiv)
  4212. }, 0);
  4213. break;
  4214. }
  4215. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4216. //选择应用处理
  4217. switch (str) {
  4218. case "project": //好友打开
  4219. _formdiv = new U.UF.UI.form(
  4220. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4221. $$("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 }), {
  4222. "id": "project",
  4223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4224. "onresize": function () { }
  4225. }, {
  4226. closecallback: function () { }
  4227. }, { "style": { "height": "36px" } }).form; //创建窗体
  4228. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4229. break;
  4230. case "student":
  4231. _formdiv = new U.UF.UI.form(
  4232. "学生管理",
  4233. $$("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 }), {
  4234. "id": "student",
  4235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4236. "onresize": function () { }
  4237. }, {
  4238. closecallback: function () { }
  4239. }, { "style": { "height": "36px" } }).form; //创建窗体
  4240. _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); } }
  4241. break;
  4242. case "evaluate":
  4243. _formdiv = new U.UF.UI.form(
  4244. "学生评价",
  4245. $$("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 }), {
  4246. "id": "evaluate",
  4247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4248. "onresize": function () { }
  4249. }, {
  4250. closecallback: function () { }
  4251. }, { "style": { "height": "36px" } }).form; //创建窗体
  4252. _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); } }
  4253. break;
  4254. case "sys":
  4255. _formdiv = new U.UF.UI.form(
  4256. "目标管理",
  4257. $$("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 }), {
  4258. "id": "sys",
  4259. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4260. "onresize": function () { }
  4261. }, {
  4262. closecallback: function () { }
  4263. }, { "style": { "height": "36px" } }).form; //创建窗体
  4264. _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); } }
  4265. break;
  4266. case "courseDesign":
  4267. _formdiv = new U.UF.UI.form(
  4268. "项目设计",
  4269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4270. "id": "courseDesign",
  4271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4272. "onresize": function () { }
  4273. }, {
  4274. closecallback: function () { }
  4275. }, { "style": { "height": "36px" } }).form; //创建窗体
  4276. _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); } }
  4277. break;
  4278. case "program":
  4279. _formdiv = new U.UF.UI.form(
  4280. "编程平台",
  4281. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4282. "id": "program",
  4283. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4284. "onresize": function () { }
  4285. }, {
  4286. closecallback: function () { }
  4287. }, { "style": { "height": "36px" } }).form; //创建窗体
  4288. _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); } }
  4289. break;
  4290. case "class":
  4291. _formdiv = new U.UF.UI.form(
  4292. "班级管理",
  4293. $$("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 }), {
  4294. "id": "class",
  4295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4296. "onresize": function () { }
  4297. }, {
  4298. closecallback: function () { }
  4299. }, { "style": { "height": "36px" } }).form; //创建窗体
  4300. _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); } }
  4301. break;
  4302. case "Grade":
  4303. _formdiv = new U.UF.UI.form(
  4304. "年级管理",
  4305. $$("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 }), {
  4306. "id": "Grade",
  4307. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4308. "onresize": function () { }
  4309. }, {
  4310. closecallback: function () { }
  4311. }, { "style": { "height": "36px" } }).form; //创建窗体
  4312. _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); } }
  4313. break;
  4314. case "teacherOffice":
  4315. _formdiv = new U.UF.UI.form(
  4316. "教研室",
  4317. $$("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 }), {
  4318. "id": "teacherOffice",
  4319. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4320. "onresize": function () { }
  4321. }, {
  4322. closecallback: function () { }
  4323. }, { "style": { "height": "36px" } }).form; //创建窗体
  4324. _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); } }
  4325. break;
  4326. case "my":
  4327. _formdiv = new U.UF.UI.form(
  4328. "我的资料",
  4329. $$("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 }), {
  4330. "id": "my",
  4331. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4332. "onresize": function () { }
  4333. }, {
  4334. closecallback: function () { }
  4335. }, { "style": { "height": "36px" } }).form; //创建窗体
  4336. _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); } }
  4337. break;
  4338. case "notice":
  4339. _formdiv = new U.UF.UI.form(
  4340. "通知公告",
  4341. $$("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 }), {
  4342. "id": "notice",
  4343. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4344. "onresize": function () { }
  4345. }, {
  4346. closecallback: function () { }
  4347. }, { "style": { "height": "36px" } }).form; //创建窗体
  4348. _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); } }
  4349. break;
  4350. case "library":
  4351. _formdiv = new U.UF.UI.form(
  4352. "素材库",
  4353. $$("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 }), {
  4354. "id": "library",
  4355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4356. "onresize": function () { }
  4357. }, {
  4358. closecallback: function () { }
  4359. }, { "style": { "height": "36px" } }).form; //创建窗体
  4360. _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); } }
  4361. break;
  4362. case "whiteboard":
  4363. _formdiv = new U.UF.UI.form(
  4364. "电子白板",
  4365. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4366. "id": "whiteboard",
  4367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4368. "onresize": function () { }
  4369. }, {
  4370. closecallback: function () { }
  4371. }, { "style": { "height": "36px" } }).form; //创建窗体
  4372. _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); } }
  4373. break;
  4374. case "investigation":
  4375. _formdiv = new U.UF.UI.form(
  4376. "问卷调查",
  4377. $$("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 }), {
  4378. "id": "investigation",
  4379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4380. "onresize": function () { }
  4381. }, {
  4382. closecallback: function () { }
  4383. }, { "style": { "height": "36px" } }).form; //创建窗体
  4384. _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); } }
  4385. break;
  4386. case "note":
  4387. _formdiv = new U.UF.UI.form(
  4388. "便签分类",
  4389. $$("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 }), {
  4390. "id": "note",
  4391. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4392. "onresize": function () { }
  4393. }, {
  4394. closecallback: function () { }
  4395. }, { "style": { "height": "36px" } }).form; //创建窗体
  4396. _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); } }
  4397. break;
  4398. // case "score":
  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 + "" }), {
  4402. // "id": "score",
  4403. // "style": { "width": "90%", "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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4409. // break;
  4410. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4414. "id": "mind",
  4415. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4421. break;
  4422. case "doc":
  4423. // U.MD.D.I.isRoom();
  4424. _formdiv = new U.UF.UI.form(
  4425. "协同文档",
  4426. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4427. "id": "doc",
  4428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4429. "onresize": function () { }
  4430. }, {
  4431. closecallback: function () { }
  4432. }, { "style": { "height": "36px" } }).form; //创建窗体
  4433. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4434. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4435. })
  4436. _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); } }
  4437. break;
  4438. case "study":
  4439. _formdiv = new U.UF.UI.form(
  4440. "课程中心",
  4441. $$("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
  4442. "id": "study",
  4443. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4444. "onresize": function () { }
  4445. }, {
  4446. closecallback: function () { }
  4447. }, { "style": { "height": "36px" } }).form; //创建窗体
  4448. _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); } }
  4449. break;
  4450. case "mindNetwork": //好友打开
  4451. _formdiv = new U.UF.UI.form(
  4452. "思维网格",
  4453. $$("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 }), {
  4454. "id": "mindNetwork",
  4455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4456. "onresize": function () { }
  4457. }, {
  4458. closecallback: function () { }
  4459. }, { "style": { "height": "36px" } }).form; //创建窗体
  4460. _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); } }
  4461. break;
  4462. case "train": //好友打开
  4463. _formdiv = new U.UF.UI.form(
  4464. "训练平台",
  4465. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4466. "id": "mindNetwork",
  4467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4468. "onresize": function () { }
  4469. }, {
  4470. closecallback: function () { }
  4471. }, { "style": { "height": "36px" } }).form; //创建窗体
  4472. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4473. break;
  4474. case "teacherClassRoom": //好友打开
  4475. _formdiv = new U.UF.UI.form(
  4476. "实时课堂",
  4477. $$("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 }), {
  4478. "id": "teacherClassRoom",
  4479. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4480. "onresize": function () { }
  4481. }, {
  4482. closecallback: function () { }
  4483. }, { "style": { "height": "36px" } }).form; //创建窗体
  4484. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4485. setTimeout(() => {
  4486. U.UF.F.windowZooming(_formdiv)
  4487. }, 0);
  4488. break;
  4489. }
  4490. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4491. switch (str) {
  4492. case "project": //好友打开
  4493. _formdiv = new U.UF.UI.form(
  4494. "课程管理",
  4495. $$("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 }), {
  4496. "id": "project",
  4497. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4498. "onresize": function () { }
  4499. }, {
  4500. closecallback: function () { }
  4501. }, { "style": { "height": "36px" } }).form; //创建窗体
  4502. _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); } }
  4503. break;
  4504. case "evaluate":
  4505. _formdiv = new U.UF.UI.form(
  4506. "学生评价",
  4507. $$("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 }), {
  4508. "id": "evaluate",
  4509. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4510. "onresize": function () { }
  4511. }, {
  4512. closecallback: function () { }
  4513. }, { "style": { "height": "36px" } }).form; //创建窗体
  4514. _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); } }
  4515. break;
  4516. case "notice":
  4517. _formdiv = new U.UF.UI.form(
  4518. "通知公告",
  4519. $$("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 }), {
  4520. "id": "notice",
  4521. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4522. "onresize": function () { }
  4523. }, {
  4524. closecallback: function () { }
  4525. }, { "style": { "height": "36px" } }).form; //创建窗体
  4526. _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); } }
  4527. break;
  4528. case "stuLibrary":
  4529. _formdiv = new U.UF.UI.form(
  4530. "学习资料",
  4531. $$("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 }), {
  4532. "id": "stuLibrary",
  4533. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4534. "onresize": function () { }
  4535. }, {
  4536. closecallback: function () { }
  4537. }, { "style": { "height": "36px" } }).form; //创建窗体
  4538. _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); } }
  4539. break;
  4540. case "program":
  4541. _formdiv = new U.UF.UI.form(
  4542. "编程平台",
  4543. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4544. "id": "program",
  4545. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4546. "onresize": function () { }
  4547. }, {
  4548. closecallback: function () { }
  4549. }, { "style": { "height": "36px" } }).form; //创建窗体
  4550. _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); } }
  4551. break;
  4552. case "whiteboard":
  4553. _formdiv = new U.UF.UI.form(
  4554. "电子白板",
  4555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4556. "id": "whiteboard",
  4557. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4558. "onresize": function () { }
  4559. }, {
  4560. closecallback: function () { }
  4561. }, { "style": { "height": "36px" } }).form; //创建窗体
  4562. _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); } }
  4563. break;
  4564. case "investigation":
  4565. _formdiv = new U.UF.UI.form(
  4566. "问卷调查",
  4567. $$("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 }), {
  4568. "id": "investigation",
  4569. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4570. "onresize": function () { }
  4571. }, {
  4572. closecallback: function () { }
  4573. }, { "style": { "height": "36px" } }).form; //创建窗体
  4574. _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); } }
  4575. break;
  4576. case "mind":
  4577. _formdiv = new U.UF.UI.form(
  4578. "思维导图",
  4579. $$("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"
  4580. "id": "mind",
  4581. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4582. "onresize": function () { }
  4583. }, {
  4584. closecallback: function () { }
  4585. }, { "style": { "height": "36px" } }).form; //创建窗体
  4586. _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); } }
  4587. break;
  4588. case "doc":
  4589. // U.MD.D.I.isRoom();
  4590. _formdiv = new U.UF.UI.form(
  4591. "协同文档",
  4592. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4593. "id": "doc",
  4594. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4595. "onresize": function () { }
  4596. }, {
  4597. closecallback: function () { }
  4598. }, { "style": { "height": "36px" } }).form; //创建窗体
  4599. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4600. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4601. })
  4602. _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); } }
  4603. break;
  4604. case "study":
  4605. _formdiv = new U.UF.UI.form(
  4606. "课程中心",
  4607. $$("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
  4608. "id": "study",
  4609. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4610. "onresize": function () { }
  4611. }, {
  4612. closecallback: function () { }
  4613. }, { "style": { "height": "36px" } }).form; //创建窗体
  4614. _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); } }
  4615. break;
  4616. case "mindNetwork": //好友打开
  4617. _formdiv = new U.UF.UI.form(
  4618. "思维网格",
  4619. $$("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 }), {
  4620. "id": "mindNetwork",
  4621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4622. "onresize": function () { }
  4623. }, {
  4624. closecallback: function () { }
  4625. }, { "style": { "height": "36px" } }).form; //创建窗体
  4626. _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); } }
  4627. break;
  4628. case "train": //好友打开
  4629. _formdiv = new U.UF.UI.form(
  4630. "训练平台",
  4631. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4632. "id": "train",
  4633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4634. "onresize": function () { }
  4635. }, {
  4636. closecallback: function () { }
  4637. }, { "style": { "height": "36px" } }).form; //创建窗体
  4638. _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); } }
  4639. break;
  4640. case "sys":
  4641. _formdiv = new U.UF.UI.form(
  4642. "目标管理",
  4643. $$("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 }), {
  4644. "id": "sys",
  4645. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4646. "onresize": function () { }
  4647. }, {
  4648. closecallback: function () { }
  4649. }, { "style": { "height": "36px" } }).form; //创建窗体
  4650. _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); } }
  4651. break;
  4652. case "courseDesign":
  4653. _formdiv = new U.UF.UI.form(
  4654. "项目设计",
  4655. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4656. "id": "courseDesign",
  4657. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4658. "onresize": function () { }
  4659. }, {
  4660. closecallback: function () { }
  4661. }, { "style": { "height": "36px" } }).form; //创建窗体
  4662. _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); } }
  4663. break;
  4664. }
  4665. } else if (!_type) {
  4666. switch (str) {
  4667. case "my":
  4668. _formdiv = new U.UF.UI.form(
  4669. "我的资料",
  4670. $$("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 }), {
  4671. "id": "my",
  4672. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4673. "onresize": function () { }
  4674. }, {
  4675. closecallback: function () { }
  4676. }, { "style": { "height": "36px" } }).form; //创建窗体
  4677. _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); } }
  4678. break;
  4679. }
  4680. }
  4681. switch (str) {
  4682. // AIprogram2 AI体验 aihub.cocorobo.cn
  4683. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4684. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4685. case "formulaEdi": //公式编辑
  4686. _formdiv = new U.UF.UI.form(
  4687. "公式编辑",
  4688. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4689. "id": "formulaEdi",
  4690. "style": { "width": "70%", "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/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4696. break;
  4697. case "molStr": //分子结构
  4698. _formdiv = new U.UF.UI.form(
  4699. "分子结构",
  4700. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4701. "id": "molStr",
  4702. "style": { "width": "70%", "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/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4708. break;
  4709. case "timeAxis": //时间轴
  4710. _formdiv = new U.UF.UI.form(
  4711. "时间轴",
  4712. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4713. "id": "timeAxis",
  4714. "style": { "width": "70%", "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/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4720. break;
  4721. case "AIprogram2": //AI体验
  4722. _formdiv = new U.UF.UI.form(
  4723. "AI体验",
  4724. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4725. "id": "AIprogram2",
  4726. "style": { "width": "70%", "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/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4732. break;
  4733. case "Pythonprogram": //python编程
  4734. _formdiv = new U.UF.UI.form(
  4735. "Python编程",
  4736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4737. "id": "Pythonprogram",
  4738. "style": { "width": "70%", "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/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4744. break;
  4745. case "AIprogram": //ai编程
  4746. _formdiv = new U.UF.UI.form(
  4747. "AI编程平台",
  4748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4749. "id": "AIprogram",
  4750. "style": { "width": "70%", "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/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4756. break;
  4757. case "CocoPi": //CocoPi
  4758. _formdiv = new U.UF.UI.form(
  4759. "CocoPi",
  4760. $$("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" }), {
  4761. "id": "CocoPi",
  4762. "style": { "width": "70%", "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/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4768. break;
  4769. case "Wood": //Wood
  4770. _formdiv = new U.UF.UI.form(
  4771. "海龟编程",
  4772. $$("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/" }), {
  4773. "id": "Wood",
  4774. "style": { "width": "70%", "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/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4780. break;
  4781. case "car": //模拟驾驶
  4782. _formdiv = new U.UF.UI.form(
  4783. "模拟驾驶",
  4784. $$("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/" }), {
  4785. "id": "car",
  4786. "style": { "width": "70%", "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/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4792. break;
  4793. case "lineSearch": //路径搜索
  4794. _formdiv = new U.UF.UI.form(
  4795. "路径搜索",
  4796. $$("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/" }), {
  4797. "id": "lineSearch",
  4798. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4799. "onresize": function () { }
  4800. }, {
  4801. closecallback: function () { }
  4802. }, { "style": { "height": "36px" } }).form; //创建窗体
  4803. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4804. break;
  4805. case "deepLearning": //深度学习
  4806. _formdiv = new U.UF.UI.form(
  4807. "深度学习",
  4808. $$("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/#" }), {
  4809. "id": "deepLearning",
  4810. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4811. "onresize": function () { }
  4812. }, {
  4813. closecallback: function () { }
  4814. }, { "style": { "height": "36px" } }).form; //创建窗体
  4815. _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); } }
  4816. break;
  4817. case "allHistory": //深度学习
  4818. _formdiv = new U.UF.UI.form(
  4819. "全历史",
  4820. $$("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/" }), {
  4821. "id": "allHistory",
  4822. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4823. "onresize": function () { }
  4824. }, {
  4825. closecallback: function () { }
  4826. }, { "style": { "height": "36px" } }).form; //创建窗体
  4827. _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); } }
  4828. break;
  4829. case "chatPDF": //ai编程
  4830. _formdiv = new U.UF.UI.form(
  4831. "chatPDF",
  4832. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4833. "id": "chatPDF",
  4834. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4835. "onresize": function () { }
  4836. }, {
  4837. closecallback: function () { }
  4838. }, { "style": { "height": "36px" } }).form; //创建窗体
  4839. _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); } }
  4840. break;
  4841. case "resources": //国家教育
  4842. _formdiv = new U.UF.UI.form(
  4843. "国家教育",
  4844. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4845. "id": "resources",
  4846. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4847. "onresize": function () { }
  4848. }, {
  4849. closecallback: function () { }
  4850. }, { "style": { "height": "36px" } }).form; //创建窗体
  4851. _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); } }
  4852. break;
  4853. case "codeEdit": //源码编辑
  4854. _formdiv = new U.UF.UI.form(
  4855. "源码编辑",
  4856. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4857. "id": "codeEdit",
  4858. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4859. "onresize": function () { }
  4860. }, {
  4861. closecallback: function () { }
  4862. }, { "style": { "height": "36px" } }).form; //创建窗体
  4863. _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); } }
  4864. break; //
  4865. case "MindMap": //MindMap
  4866. _formdiv = new U.UF.UI.form(
  4867. "MindMap",
  4868. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4869. "id": "MindMap",
  4870. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4871. "onresize": function () { }
  4872. }, {
  4873. closecallback: function () { }
  4874. }, { "style": { "height": "36px" } }).form; //创建窗体
  4875. _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); } }
  4876. break;
  4877. case "netWorkPanel": //netWorkPanel
  4878. _formdiv = new U.UF.UI.form(
  4879. "netWorkPanel",
  4880. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4881. "id": "netWorkPanel",
  4882. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4883. "onresize": function () { }
  4884. }, {
  4885. closecallback: function () { }
  4886. }, { "style": { "height": "36px" } }).form; //创建窗体
  4887. _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); } }
  4888. break;
  4889. case "GeoGebra": //GeoGebra
  4890. _formdiv = new U.UF.UI.form(
  4891. "GeoGebra",
  4892. $$("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" }), {
  4893. "id": "GeoGebra",
  4894. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. _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); } }
  4900. break;
  4901. case "translation": //翻译
  4902. _formdiv = new U.UF.UI.form(
  4903. "翻译",
  4904. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4905. "id": "translation",
  4906. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4907. "onresize": function () { }
  4908. }, {
  4909. closecallback: function () { }
  4910. }, { "style": { "height": "36px" } }).form; //创建窗体
  4911. _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); } }
  4912. break;
  4913. case "mohe": //魔盒
  4914. _formdiv = new U.UF.UI.form(
  4915. "魔盒识字",
  4916. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4917. "id": "mohe",
  4918. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4919. "onresize": function () { }
  4920. }, {
  4921. closecallback: function () { }
  4922. }, { "style": { "height": "36px" } }).form; //创建窗体
  4923. _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); } }
  4924. break;
  4925. case "24game": //24点
  4926. _formdiv = new U.UF.UI.form(
  4927. "24点",
  4928. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4929. "id": "24game",
  4930. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4931. "onresize": function () { }
  4932. }, {
  4933. closecallback: function () { }
  4934. }, { "style": { "height": "36px" } }).form; //创建窗体
  4935. _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); } }
  4936. break;
  4937. case "case":
  4938. _formdiv = new U.UF.UI.form(
  4939. "课程进展",
  4940. $$("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 }), {
  4941. "id": "case",
  4942. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4943. "onresize": function () { }
  4944. }, {
  4945. closecallback: function () { }
  4946. }, { "style": { "height": "36px" } }).form; //创建窗体
  4947. _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); } }
  4948. break;
  4949. case "snf":
  4950. _formdiv = new U.UF.UI.form(
  4951. "赛诺梵",
  4952. $$("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" }), {
  4953. "id": "snf",
  4954. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4955. "onresize": function () { }
  4956. }, {
  4957. closecallback: function () { }
  4958. }, { "style": { "height": "36px" } }).form; //创建窗体
  4959. _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); } }
  4960. break;
  4961. case "hanFamily":
  4962. _formdiv = new U.UF.UI.form(
  4963. "汉字家族",
  4964. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4965. "id": "hanFamily",
  4966. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4967. "onresize": function () { }
  4968. }, {
  4969. closecallback: function () { }
  4970. }, { "style": { "height": "36px" } }).form; //创建窗体
  4971. _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); } }
  4972. break;
  4973. case "hanClassics":
  4974. _formdiv = new U.UF.UI.form(
  4975. "国学经典",
  4976. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4977. "id": "hanClassics",
  4978. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4979. "onresize": function () { }
  4980. }, {
  4981. closecallback: function () { }
  4982. }, { "style": { "height": "36px" } }).form; //创建窗体
  4983. _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); } }
  4984. break;
  4985. case "hanTraining":
  4986. _formdiv = new U.UF.UI.form(
  4987. "笔画训练",
  4988. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4989. "id": "hanTraining",
  4990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4991. "onresize": function () { }
  4992. }, {
  4993. closecallback: function () { }
  4994. }, { "style": { "height": "36px" } }).form; //创建窗体
  4995. _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); } }
  4996. break;
  4997. case "hanClass":
  4998. _formdiv = new U.UF.UI.form(
  4999. "书法课堂",
  5000. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5001. "id": "hanClass",
  5002. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5003. "onresize": function () { }
  5004. }, {
  5005. closecallback: function () { }
  5006. }, { "style": { "height": "36px" } }).form; //创建窗体
  5007. _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); } }
  5008. break;
  5009. case "han":
  5010. _formdiv = new U.UF.UI.form(
  5011. "汉字宫",
  5012. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5013. "id": "han",
  5014. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5015. "onresize": function () { }
  5016. }, {
  5017. closecallback: function () { }
  5018. }, { "style": { "height": "36px" } }).form; //创建窗体
  5019. _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); } }
  5020. break;
  5021. case "projectGM": //课程管理
  5022. _formdiv = new U.UF.UI.form(
  5023. "课程管理",
  5024. $$("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 }), {
  5025. "id": "projectGM",
  5026. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5027. "onresize": function () { }
  5028. }, {
  5029. closecallback: function () { }
  5030. }, { "style": { "height": "36px" } }).form; //创建窗体
  5031. _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); } }
  5032. break;
  5033. case "studyGM": //课程中心
  5034. _formdiv = new U.UF.UI.form(
  5035. "课程中心",
  5036. $$("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
  5037. "id": "study",
  5038. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5039. "onresize": function () { }
  5040. }, {
  5041. closecallback: function () { }
  5042. }, { "style": { "height": "36px" } }).form; //创建窗体
  5043. _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); } }
  5044. break;
  5045. // studentGM
  5046. case "studentGM": //学生管理
  5047. _formdiv = new U.UF.UI.form(
  5048. "学生管理",
  5049. $$("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 }), {
  5050. "id": "studentGM",
  5051. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5052. "onresize": function () { }
  5053. }, {
  5054. closecallback: function () { }
  5055. }, { "style": { "height": "36px" } }).form; //创建窗体
  5056. _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); } }
  5057. break;
  5058. case "evaluateGM": //学生评价
  5059. _formdiv = new U.UF.UI.form(
  5060. "学生评价",
  5061. $$("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 }), {
  5062. "id": "evaluateGM",
  5063. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5064. "onresize": function () { }
  5065. }, {
  5066. closecallback: function () { }
  5067. }, { "style": { "height": "36px" } }).form; //创建窗体
  5068. _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); } }
  5069. break;
  5070. // classGM
  5071. case "classGM": //班级管理
  5072. _formdiv = new U.UF.UI.form(
  5073. "班级管理",
  5074. $$("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 }), {
  5075. "id": "classGM",
  5076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5077. "onresize": function () { }
  5078. }, {
  5079. closecallback: function () { }
  5080. }, { "style": { "height": "36px" } }).form; //创建窗体
  5081. _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); } }
  5082. break;
  5083. // dataGM
  5084. case "dataGM":
  5085. _formdiv = new U.UF.UI.form(
  5086. "我的资料",
  5087. $$("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 }), {
  5088. "id": "dataGM",
  5089. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5090. "onresize": function () { }
  5091. }, {
  5092. closecallback: function () { }
  5093. }, { "style": { "height": "36px" } }).form; //创建窗体
  5094. _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); } }
  5095. break;
  5096. // caseGM
  5097. case "caseGM": //课程进展
  5098. _formdiv = new U.UF.UI.form(
  5099. "课程进展",
  5100. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5101. "id": "caseGM",
  5102. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5103. "onresize": function () { }
  5104. }, {
  5105. closecallback: function () { }
  5106. }, { "style": { "height": "36px" } }).form; //创建窗体
  5107. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5108. break;
  5109. // meterialGM
  5110. case "meterialGM": //素材库
  5111. _formdiv = new U.UF.UI.form(
  5112. "素材库",
  5113. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  5114. "id": "meterialGM",
  5115. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5116. "onresize": function () { }
  5117. }, {
  5118. closecallback: function () { }
  5119. }, { "style": { "height": "36px" } }).form; //创建窗体
  5120. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5121. break;
  5122. // evaluateSGM
  5123. case "evaluateSGM": //我的评价
  5124. _formdiv = new U.UF.UI.form(
  5125. "我的评价",
  5126. $$("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 }), {
  5127. "id": "evaluateSGM",
  5128. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5129. "onresize": function () { }
  5130. }, {
  5131. closecallback: function () { }
  5132. }, { "style": { "height": "36px" } }).form; //创建窗体
  5133. _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); } }
  5134. break;
  5135. case "jupyter": //jupyter
  5136. _formdiv = new U.UF.UI.form(
  5137. "jupyter",
  5138. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5139. "id": "jupyter",
  5140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5141. "onresize": function () { }
  5142. }, {
  5143. closecallback: function () { }
  5144. }, { "style": { "height": "36px" } }).form; //创建窗体
  5145. _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); } }
  5146. break;
  5147. case "number": //数字实验室
  5148. _formdiv = new U.UF.UI.form(
  5149. "数字实验室",
  5150. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5151. "id": "number",
  5152. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5153. "onresize": function () { }
  5154. }, {
  5155. closecallback: function () { }
  5156. }, { "style": { "height": "36px" } }).form; //创建窗体
  5157. _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); } }
  5158. break;
  5159. case "studentCourse": //项目管理 学生
  5160. _formdiv = new U.UF.UI.form(
  5161. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5162. $$("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 }), {
  5163. "id": "studentCourse",
  5164. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5165. "onresize": function () { }
  5166. }, {
  5167. closecallback: function () { }
  5168. }, { "style": { "height": "36px" } }).form; //创建窗体
  5169. _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); } }
  5170. break;
  5171. case "studentCourseS": //项目管理 老师
  5172. _formdiv = new U.UF.UI.form(
  5173. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5174. $$("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 }), {
  5175. "id": "studentCourseS",
  5176. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5177. "onresize": function () { }
  5178. }, {
  5179. closecallback: function () { }
  5180. }, { "style": { "height": "36px" } }).form; //创建窗体
  5181. _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); } }
  5182. break;
  5183. case "studentIndex": //项目中心
  5184. _formdiv = new U.UF.UI.form(
  5185. "项目中心",
  5186. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  5187. "id": "studentIndex",
  5188. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5189. "onresize": function () { }
  5190. }, {
  5191. closecallback: function () { }
  5192. }, { "style": { "height": "36px" } }).form; //创建窗体
  5193. _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); } }
  5194. break;
  5195. case "CaseDesignS":
  5196. _formdiv = new U.UF.UI.form(
  5197. "项目进展",
  5198. $$("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 }), {
  5199. "id": "case",
  5200. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5201. "onresize": function () { }
  5202. }, {
  5203. closecallback: function () { }
  5204. }, { "style": { "height": "36px" } }).form; //创建窗体
  5205. _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); } }
  5206. break;
  5207. case "tcStudent": //腾讯学生管理
  5208. _formdiv = new U.UF.UI.form(
  5209. "学生管理",
  5210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5211. "id": "tcStudent",
  5212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5213. "onresize": function () { }
  5214. }, {
  5215. closecallback: function () { }
  5216. }, { "style": { "height": "36px" } }).form; //创建窗体
  5217. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5218. break;
  5219. case "tcSchool": //腾讯学校管理
  5220. _formdiv = new U.UF.UI.form(
  5221. "学校管理",
  5222. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5223. "id": "tcSchool",
  5224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5225. "onresize": function () { }
  5226. }, {
  5227. closecallback: function () { }
  5228. }, { "style": { "height": "36px" } }).form; //创建窗体
  5229. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5230. break;
  5231. case "tcTeacher": //腾讯学校管理
  5232. _formdiv = new U.UF.UI.form(
  5233. "教师管理",
  5234. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5235. "id": "tcTeacher",
  5236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5237. "onresize": function () { }
  5238. }, {
  5239. closecallback: function () { }
  5240. }, { "style": { "height": "36px" } }).form; //创建窗体
  5241. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5242. break;
  5243. case "tcData": //腾讯我的资料
  5244. _formdiv = new U.UF.UI.form(
  5245. "我的资料",
  5246. $$("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 }), {
  5247. "id": "tcData",
  5248. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5249. "onresize": function () { }
  5250. }, {
  5251. closecallback: function () { }
  5252. }, { "style": { "height": "36px" } }).form; //创建窗体
  5253. _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); } }
  5254. break;
  5255. case "tcNotice": //腾讯消息通知
  5256. _formdiv = new U.UF.UI.form(
  5257. "消息通知",
  5258. $$("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 }), {
  5259. "id": "tcNotice",
  5260. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5261. "onresize": function () { }
  5262. }, {
  5263. closecallback: function () { }
  5264. }, { "style": { "height": "36px" } }).form; //创建窗体
  5265. _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); } }
  5266. break;
  5267. case "myReport": //好友打开
  5268. _formdiv = new U.UF.UI.form(
  5269. "我的评价",
  5270. $$("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 }), {
  5271. "id": "myReport",
  5272. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5273. "onresize": function () { }
  5274. }, {
  5275. closecallback: function () { }
  5276. }, { "style": { "height": "36px" } }).form; //创建窗体
  5277. _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); } }
  5278. break;
  5279. case "learnAna": //好友打开
  5280. _formdiv = new U.UF.UI.form(
  5281. "学习分析",
  5282. $$("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 }), {
  5283. "id": "learnAna",
  5284. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5285. "onresize": function () { }
  5286. }, {
  5287. closecallback: function () { }
  5288. }, { "style": { "height": "36px" } }).form; //创建窗体
  5289. _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); } }
  5290. break;
  5291. case "AIChat": //AI共创
  5292. _formdiv = new U.UF.UI.form(
  5293. "AI共创",
  5294. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5295. "id": "AIChat",
  5296. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5297. "onresize": function () { }
  5298. }, {
  5299. istop: true,
  5300. closecallback: function () { $("#aichat_icon").remove(); },
  5301. narrowcallback: function () {
  5302. if (!$("#aichat_icon")[0]) {
  5303. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5304. }
  5305. },
  5306. }, { "style": { "height": "36px" } }).form; //创建窗体
  5307. _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); } }
  5308. break;
  5309. case "ainew": //AI共创
  5310. _formdiv = new U.UF.UI.form(
  5311. "AI协同",
  5312. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5313. "id": "ainew",
  5314. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. _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); } }
  5320. break;
  5321. case "gpt4": //gpt4
  5322. _formdiv = new U.UF.UI.form(
  5323. "AI助手",
  5324. $$("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 }), {
  5325. "id": "gpt4",
  5326. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5327. "onresize": function () { }
  5328. }, {
  5329. closecallback: function () { }
  5330. }, { "style": { "height": "36px" } }).form; //创建窗体
  5331. _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); } }
  5332. break;
  5333. case "aigpt": //gpt4
  5334. _formdiv = new U.UF.UI.form(
  5335. "AI助手+",
  5336. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5337. "id": "aigpt",
  5338. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5339. "onresize": function () { }
  5340. }, {
  5341. closecallback: function () { }
  5342. }, { "style": { "height": "36px" } }).form; //创建窗体
  5343. _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); } }
  5344. break;
  5345. case "futureClass": //AI共创
  5346. _formdiv = new U.UF.UI.form(
  5347. "协同建构",
  5348. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  5349. "id": "synergyCourse",
  5350. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5351. "onresize": function () { }
  5352. }, {
  5353. closecallback: function () {
  5354. $("iframe", _formdiv)[0].contentWindow.loginout();
  5355. }
  5356. }, { "style": { "height": "36px" } }).form; //创建窗体
  5357. _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); } }
  5358. break;
  5359. case "aiagent": //ai agent
  5360. _formdiv = new U.UF.UI.form(
  5361. "AI Agent",
  5362. $$("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" }), {
  5363. "id": "AIAgent",
  5364. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5365. "onresize": function () { }
  5366. }, {
  5367. closecallback: function () { }
  5368. }, { "style": { "height": "36px" } }).form; //创建窗体
  5369. _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); } }
  5370. break;
  5371. case "dataBoard": //数据看板
  5372. _formdiv = new U.UF.UI.form(
  5373. "数据看板",
  5374. $$("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 }), {
  5375. "id": "dataBoard",
  5376. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5377. "onresize": function () { }
  5378. }, {
  5379. closecallback: function () { }
  5380. }, { "style": { "height": "36px" } }).form; //创建窗体
  5381. _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); } }
  5382. break;
  5383. case "dataBoardSies": //数据融合
  5384. _formdiv = new U.UF.UI.form(
  5385. "数据融合",
  5386. $$("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 }), {
  5387. "id": "dataBoardSies",
  5388. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5389. "onresize": function () { }
  5390. }, {
  5391. closecallback: function () { }
  5392. }, { "style": { "height": "36px" } }).form; //创建窗体
  5393. _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); } }
  5394. break;
  5395. case "dataBoardNew": //数据看板
  5396. _formdiv = new U.UF.UI.form(
  5397. "综合看板",
  5398. $$("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 }), {
  5399. "id": "dataBoardNew",
  5400. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5401. "onresize": function () { }
  5402. }, {
  5403. closecallback: function () { }
  5404. }, { "style": { "height": "36px" } }).form; //创建窗体
  5405. _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); } }
  5406. break;
  5407. case "dataBoardTest": //数据看板
  5408. _formdiv = new U.UF.UI.form(
  5409. "评测看板",
  5410. $$("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 }), {
  5411. "id": "dataBoardTest",
  5412. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5413. "onresize": function () { }
  5414. }, {
  5415. closecallback: function () { }
  5416. }, { "style": { "height": "36px" } }).form; //创建窗体
  5417. _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); } }
  5418. break;
  5419. case "AIAnalyse": //AI共创
  5420. _formdiv = new U.UF.UI.form(
  5421. "AI分析",
  5422. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5423. "id": "AIAnalyse",
  5424. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5425. "onresize": function () { }
  5426. }, {
  5427. closecallback: function () { }
  5428. }, { "style": { "height": "36px" } }).form; //创建窗体
  5429. _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); } }
  5430. break;
  5431. case "studioCourse": //AI共创
  5432. _formdiv = new U.UF.UI.form(
  5433. "工作管理",
  5434. $$("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 }), {
  5435. "id": "studioCourse",
  5436. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5437. "onresize": function () { }
  5438. }, {
  5439. closecallback: function () { }
  5440. }, { "style": { "height": "36px" } }).form; //创建窗体
  5441. _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); } }
  5442. break;
  5443. case "studioIndex": //AI共创
  5444. _formdiv = new U.UF.UI.form(
  5445. "工作中心",
  5446. $$("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 }), {
  5447. "id": "studioIndex",
  5448. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5449. "onresize": function () { }
  5450. }, {
  5451. closecallback: function () { }
  5452. }, { "style": { "height": "36px" } }).form; //创建窗体
  5453. _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); } }
  5454. break;
  5455. case "source":
  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/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5459. "id": "source",
  5460. "style": { "width": "80%", "height": "80%", "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/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5466. break;
  5467. case "testTeacher":
  5468. _formdiv = new U.UF.UI.form(
  5469. "教师管理",
  5470. $$("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 }), {
  5471. "id": "testTeacher",
  5472. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5473. "onresize": function () { }
  5474. }, {
  5475. closecallback: function () { }
  5476. }, { "style": { "height": "36px" } }).form; //创建窗体
  5477. _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); } }
  5478. break;
  5479. case "testStudent":
  5480. _formdiv = new U.UF.UI.form(
  5481. "教师中心",
  5482. $$("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 }), {
  5483. "id": "testStudent",
  5484. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5485. "onresize": function () { }
  5486. }, {
  5487. closecallback: function () { }
  5488. }, { "style": { "height": "36px" } }).form; //创建窗体
  5489. _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); } }
  5490. break;
  5491. case "testTeacherSies":
  5492. _formdiv = new U.UF.UI.form(
  5493. "教师管理",
  5494. $$("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 }), {
  5495. "id": "testTeacherSies",
  5496. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5497. "onresize": function () { }
  5498. }, {
  5499. closecallback: function () { }
  5500. }, { "style": { "height": "36px" } }).form; //创建窗体
  5501. _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); } }
  5502. break;
  5503. case "testStudentSies":
  5504. _formdiv = new U.UF.UI.form(
  5505. "教师中心",
  5506. $$("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 }), {
  5507. "id": "testStudentSies",
  5508. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5509. "onresize": function () { }
  5510. }, {
  5511. closecallback: function () { }
  5512. }, { "style": { "height": "36px" } }).form; //创建窗体
  5513. _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); } }
  5514. break;
  5515. case "ytpbl": //消息通知
  5516. _formdiv = new U.UF.UI.form(
  5517. "案例征集",
  5518. $$("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 }), {
  5519. "id": "ytpbl",
  5520. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5521. "onresize": function () { }
  5522. }, {
  5523. closecallback: function () { }
  5524. }, { "style": { "height": "36px" } }).form; //创建窗体
  5525. _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); } }
  5526. // 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");
  5527. break;
  5528. case "aiCourseResource": //人工智能窗体
  5529. _formdiv = new U.UF.UI.form(
  5530. false,
  5531. $$("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 }), {
  5532. "id": "aiCourseResource",
  5533. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5534. "onresize": function () { },
  5535. "isdrag": false,
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //创建窗体
  5539. _taskbar = ''
  5540. break;
  5541. case "szdjgCocooroboX": //图形化编程
  5542. _formdiv = new U.UF.UI.form(
  5543. "图形化编程",
  5544. $$("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" }), {
  5545. "id": "szdjgCocooroboX",
  5546. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5547. "onresize": function () { }
  5548. }, {
  5549. closecallback: function () { }
  5550. }, { "style": { "height": "36px" } }).form; //创建窗体
  5551. _taskbar = ''
  5552. break;
  5553. case "szdjgPython": //python编程
  5554. _formdiv = new U.UF.UI.form(
  5555. "Python编程",
  5556. $$("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" }), {
  5557. "id": "szdjgPython",
  5558. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //创建窗体
  5563. _taskbar = ''
  5564. break;
  5565. case "Record":
  5566. _formdiv = new U.UF.UI.form(
  5567. "观察记录",
  5568. $$("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 }), {
  5569. "id": "Record",
  5570. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //创建窗体
  5575. _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); } }
  5576. break;
  5577. case "aigptCourse":
  5578. _formdiv = new U.UF.UI.form(
  5579. "AI智能体",
  5580. $$("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' }), {
  5581. "id": "aigptCourse",
  5582. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. _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); } }
  5588. break;
  5589. case "classroomObservation":
  5590. _formdiv = new U.UF.UI.form(
  5591. "课堂观察",
  5592. $$("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 }), {
  5593. "id": "classroomObservation",
  5594. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5595. "onresize": function () { }
  5596. }, {
  5597. closecallback: function () { }
  5598. }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. _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); } }
  5600. break;
  5601. case "pblCourse":
  5602. _formdiv = new U.UF.UI.form(
  5603. "学生PBL",
  5604. $$("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 }), {
  5605. "id": "pblCourse",
  5606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //创建窗体
  5611. _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); } }
  5612. break;
  5613. }
  5614. //U.MD.D.I.openClick(str);
  5615. //如果有任务栏信息
  5616. if (_taskbar) {
  5617. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5618. }
  5619. }
  5620. // U.MD.D.I.openClick = function(str){
  5621. // var click = '';
  5622. // switch(str){
  5623. // case 'friend':
  5624. // click = '我的好友';
  5625. // break;
  5626. // case 'domain':
  5627. // click = '域名管理';
  5628. // break;
  5629. // case 'disk':
  5630. // click = '我的云盘';
  5631. // break;
  5632. // case 'word':
  5633. // click = 'Word';
  5634. // break;
  5635. // case 'excel':
  5636. // click = 'Execl';
  5637. // break;
  5638. // case 'txt':
  5639. // click = '文本文件';
  5640. // break;
  5641. // case 'lookupFriend':
  5642. // click = '查找好友';
  5643. // break;
  5644. // case 'ftp':
  5645. // click = 'FTP';
  5646. // break;
  5647. // case 'group':
  5648. // click = '群组';
  5649. // break;
  5650. // case 'set':
  5651. // click = '我的设置';
  5652. // break;
  5653. // case 'systemSet':
  5654. // click = '系统设置';
  5655. // break;
  5656. // case 'boomYun':
  5657. // click = '互联办公';
  5658. // break;
  5659. // case 'xz':
  5660. // click = '云端下载';
  5661. // break;
  5662. // case 'client':
  5663. // click = '有思浏览器';
  5664. // break;
  5665. // case 'backEndProgramming':
  5666. // click = '在线后台编程';
  5667. // break;
  5668. // case 'frontEndProgramming':
  5669. // click = '在线前端编程';
  5670. // break;
  5671. // default: break;
  5672. // }
  5673. // if(U.MD.D.I.Ip && click){
  5674. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5675. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5676. // })
  5677. // }
  5678. // }
  5679. /**
  5680. *函数作用:ajax简易函数,使用post格式
  5681. *@param url {data} 后台地址
  5682. *@param data {data} 参数json
  5683. *@param fn {data} 回调函数
  5684. *
  5685. */
  5686. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5687. // var xhr = new XMLHttpRequest();
  5688. // xhr.open("GET",url,true);
  5689. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5690. // xhr.onreadystatechange = function(){
  5691. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5692. // fn.call(this,xhr.responseText);
  5693. // }
  5694. // };
  5695. // xhr.send();
  5696. // }
  5697. /*判断是否是内网IP*/
  5698. // U.MD.D.I.isInnerIPFn = function(str){
  5699. // var curPageUrl = str;
  5700. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5701. // curPageUrl =curPageUrl.replace(reg1,'');
  5702. // // console.log('curPageUrl-1 '+curPageUrl);
  5703. // var reg2 = /\:+/g;//替换冒号为一点
  5704. // curPageUrl =curPageUrl.replace(reg2,'.');
  5705. // // console.log('curPageUrl-2 '+curPageUrl);
  5706. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5707. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5708. // if(curPageUrl[2] != '16'){
  5709. // return ipAddress;
  5710. // }else{
  5711. // return false;
  5712. // }
  5713. // }
  5714. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5715. // //compatibility for firefox and chrome
  5716. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5717. // var pc = new myPeerConnection({
  5718. // iceServers: []
  5719. // }),
  5720. // noop = function() {},
  5721. // localIPs = {},
  5722. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5723. // key;
  5724. // function iterateIP(ip) {
  5725. // if (!localIPs[ip]) onNewIP(ip);
  5726. // localIPs[ip] = true;
  5727. // }
  5728. // //create a bogus data channel
  5729. // pc.createDataChannel("");
  5730. // // create offer and set local description
  5731. // pc.createOffer().then(function(sdp) {
  5732. // sdp.sdp.split('\n').forEach(function(line) {
  5733. // if (line.indexOf('candidate') < 0) return;
  5734. // line.match(ipRegex).forEach(iterateIP);
  5735. // });
  5736. // pc.setLocalDescription(sdp, noop, noop);
  5737. // }).catch(function(reason) {
  5738. // // An error occurred, so handle the failure to connect
  5739. // });
  5740. // //sten for candidate events
  5741. // pc.onicecandidate = function(ice) {
  5742. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5743. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5744. // };
  5745. // }
  5746. // U.MD.D.I.getUserIpBool = function(callback){
  5747. // U.MD.D.I.getUserIP(function(ip){
  5748. // alert("Got IP! :" + ip);
  5749. // });
  5750. //}
  5751. //#endregion
  5752. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5753. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5754. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5755. _userinfo = US.userInfo, //登录用户信息
  5756. _userid = US.userInfo.userid //登录用户id
  5757. let _iframe;
  5758. let _cid = cid,
  5759. _stage = stage,
  5760. _task = task,
  5761. _tool = tool;
  5762. var _jie = $$("div", {
  5763. "style": {
  5764. "position": "absolute",
  5765. "bottom": "50px",
  5766. "right": "50px",
  5767. "zIndex": "9999",
  5768. "backgroundColor": "#2268bc",
  5769. "color": "#fff",
  5770. "padding": "12px 20px",
  5771. "cursor": "pointer",
  5772. "borderRadius": "4px",
  5773. },
  5774. "innerHTML": "提交作业"
  5775. })
  5776. let aTool = ''
  5777. let _loading = document.createElement('div')
  5778. _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;"
  5779. // _loading.id = "";
  5780. let _lchild = document.createElement('div')
  5781. let _limg = document.createElement('img')
  5782. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5783. _limg.style = "width: 26px;margin-right: 10px;"
  5784. _lchild.appendChild(_limg)
  5785. let _lspan = document.createElement('span')
  5786. _lspan.innerHTML = "上传中..."
  5787. _lchild.appendChild(_lspan)
  5788. _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%);"
  5789. _loading.appendChild(_lchild)
  5790. var _box = $$('div', {
  5791. "style": {
  5792. "position": "relative",
  5793. "width": "100%",
  5794. "height": "100%",
  5795. },
  5796. })
  5797. _box.appendChild(_loading)
  5798. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5799. switch (str) {
  5800. case "whiteboard":
  5801. aTool = 1;
  5802. _iframe = $$("iframe", {
  5803. "frameborder": "no",
  5804. "border": "0",
  5805. "scrolling ": "no",
  5806. "style": {
  5807. "cssText": "border:0;width:100%;height:100%"
  5808. },
  5809. "src": "https://beta.iwb.cocorobo.cn/"
  5810. })
  5811. _box.appendChild(_iframe);
  5812. _box.appendChild(_jie);
  5813. _formdiv = new U.UF.UI.form(
  5814. "电子白板",
  5815. _box, {
  5816. "id": "whiteboard" + cid + stage + task + tool,
  5817. "style": {
  5818. "width": "90%",
  5819. "height": "90%",
  5820. "overflow": 'hidden'
  5821. },
  5822. "onresize": function () { }
  5823. }, {
  5824. closecallback: function () { }
  5825. }, {
  5826. "style": {
  5827. "height": "36px"
  5828. }
  5829. }).form; //创建窗体
  5830. _taskbar = {
  5831. "id": str + _formdiv.id,
  5832. "style": {
  5833. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5834. },
  5835. "name": "电子白板",
  5836. "forms": _formdiv,
  5837. "click": function () {
  5838. U.MD.D.I.openApplication(str, obj, info);
  5839. }
  5840. }
  5841. break;
  5842. case "mind":
  5843. aTool = 3;
  5844. _iframe = $$("iframe", {
  5845. "frameborder": "no",
  5846. "border": "0",
  5847. "scrolling ": "no",
  5848. "style": {
  5849. "cssText": "border:0;width:100%;height:100%"
  5850. },
  5851. "src": "/kityminder-editor/dist/index.html"
  5852. })
  5853. _box.appendChild(_iframe);
  5854. _box.appendChild(_jie);
  5855. _formdiv = new U.UF.UI.form(
  5856. "思维导图",
  5857. _box, { //"/jsmind/example/demo.html"
  5858. "id": "mind" + cid + stage + task + tool,
  5859. "style": {
  5860. "width": "90%",
  5861. "height": "90%",
  5862. "overflow": 'hidden'
  5863. },
  5864. "onresize": function () { }
  5865. }, {
  5866. closecallback: function () { }
  5867. }, {
  5868. "style": {
  5869. "height": "36px"
  5870. }
  5871. }).form; //创建窗体
  5872. _taskbar = {
  5873. "id": str + _formdiv.id,
  5874. "style": {
  5875. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5876. },
  5877. "name": "思维导图",
  5878. "forms": _formdiv,
  5879. "click": function () {
  5880. U.MD.D.I.openApplication(str, obj, info);
  5881. }
  5882. }
  5883. break;
  5884. case "MindMap":
  5885. aTool = 3;
  5886. _iframe = $$("iframe", {
  5887. "frameborder": "no",
  5888. "border": "0",
  5889. "scrolling ": "no",
  5890. "style": {
  5891. "cssText": "border:0;width:100%;height:100%"
  5892. },
  5893. "src": "//cloud.cocorobo.cn/mind/"
  5894. })
  5895. _box.appendChild(_iframe);
  5896. _box.appendChild(_jie);
  5897. _formdiv = new U.UF.UI.form(
  5898. "思维导图",
  5899. _box, { //"/jsmind/example/demo.html"
  5900. "id": "mind" + cid + stage + task + tool,
  5901. "style": {
  5902. "width": "90%",
  5903. "height": "90%",
  5904. "overflow": 'hidden'
  5905. },
  5906. "onresize": function () { }
  5907. }, {
  5908. closecallback: function () { }
  5909. }, {
  5910. "style": {
  5911. "height": "36px"
  5912. }
  5913. }).form; //创建窗体
  5914. _taskbar = {
  5915. "id": str + _formdiv.id,
  5916. "style": {
  5917. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5918. },
  5919. "name": "思维导图",
  5920. "forms": _formdiv,
  5921. "click": function () {
  5922. U.MD.D.I.openApplication(str, obj, info);
  5923. }
  5924. }
  5925. break;
  5926. case "doc":
  5927. aTool = 6;
  5928. _iframe = $$("iframe", {
  5929. "frameborder": "no",
  5930. "border": "0",
  5931. "scrolling ": "no",
  5932. "style": {
  5933. "cssText": "border:0;width:100%;height:100%"
  5934. },
  5935. "src": "/Office/Word/WordEditArea.htm"
  5936. })
  5937. _box.appendChild(_iframe);
  5938. _box.appendChild(_jie);
  5939. _formdiv = new U.UF.UI.form(
  5940. "协同文档",
  5941. _box, {
  5942. "id": "doc" + cid + stage + task + tool,
  5943. "style": {
  5944. "width": "90%",
  5945. "height": "90%",
  5946. "overflow": 'hidden'
  5947. },
  5948. "onresize": function () { }
  5949. }, {
  5950. closecallback: function () { }
  5951. }, {
  5952. "style": {
  5953. "height": "36px"
  5954. }
  5955. }).form; //创建窗体
  5956. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5957. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5958. })
  5959. _taskbar = {
  5960. "id": str + _formdiv.id,
  5961. "style": {
  5962. "backgroundImage": "url(/img/icon/doc.png)"
  5963. },
  5964. "name": "协同文档",
  5965. "forms": _formdiv,
  5966. "click": function () {
  5967. U.MD.D.I.openApplication(str, obj, info);
  5968. }
  5969. }
  5970. break;
  5971. case "mindNetwork": //好友打开
  5972. aTool = 7;
  5973. _iframe = $$("iframe", {
  5974. "webkitallowfullscreen": "",
  5975. "mozallowfullscreen": "",
  5976. "allowfullscreen": "",
  5977. "frameborder": "no",
  5978. "border": "0",
  5979. "scrolling ": "no",
  5980. "style": {
  5981. "cssText": "border:0; width:100%; height:100%;"
  5982. },
  5983. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5984. })
  5985. _box.appendChild(_iframe);
  5986. _box.appendChild(_jie);
  5987. _formdiv = new U.UF.UI.form(
  5988. "思维网格",
  5989. _box, {
  5990. "id": "mindNetwork" + cid + stage + task + tool,
  5991. "style": {
  5992. "width": "90%",
  5993. "height": "90%",
  5994. "overflow": 'hidden'
  5995. },
  5996. "onresize": function () { }
  5997. }, {
  5998. closecallback: function () { }
  5999. }, {
  6000. "style": {
  6001. "height": "36px"
  6002. }
  6003. }).form; //创建窗体
  6004. _taskbar = {
  6005. "id": str + _formdiv.id,
  6006. "style": {
  6007. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6008. },
  6009. "name": "思维网格",
  6010. "forms": _formdiv,
  6011. "click": function () {
  6012. U.MD.D.I.openApplication(str, obj, info);
  6013. }
  6014. }
  6015. break;
  6016. case "courseDesign":
  6017. _iframe = $$("iframe", {
  6018. "webkitallowfullscreen": "",
  6019. "mozallowfullscreen": "",
  6020. "allowfullscreen": "",
  6021. "frameborder": "no",
  6022. "border": "0",
  6023. "scrolling ": "no",
  6024. "style": {
  6025. "cssText": "border:0; width:100%; height:100%;"
  6026. },
  6027. "src": "/course-design-vue"
  6028. })
  6029. _box.appendChild(_iframe);
  6030. _box.appendChild(_jie);
  6031. _formdiv = new U.UF.UI.form(
  6032. "项目设计",
  6033. _box, {
  6034. "id": "courseDesign" + cid + stage + task + tool,
  6035. "style": {
  6036. "width": "90%",
  6037. "height": "90%",
  6038. "overflow": 'hidden'
  6039. },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, {
  6044. "style": {
  6045. "height": "36px"
  6046. }
  6047. }).form; //创建窗体
  6048. _taskbar = {
  6049. "id": str + _formdiv.id,
  6050. "style": {
  6051. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6052. },
  6053. "name": "项目设计",
  6054. "forms": _formdiv,
  6055. "click": function () {
  6056. U.MD.D.I.openApplication(str, obj, info);
  6057. }
  6058. }
  6059. break;
  6060. }
  6061. const script1 = document.createElement("script");
  6062. script1.type = "text/javascript";
  6063. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6064. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6065. const script2 = document.createElement("script");
  6066. script2.type = "text/javascript";
  6067. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6068. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6069. const script3 = document.createElement("script");
  6070. script3.type = "text/javascript";
  6071. script3.charset = "UTF-8";
  6072. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6073. const script4 = document.createElement("script");
  6074. script4.type = "text/javascript";
  6075. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6076. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6077. if (_iframe) {
  6078. if (str == 'doc') {
  6079. _iframe = _formdiv.querySelector('iframe')
  6080. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6081. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6082. _iframe.contentWindow.document.body.appendChild(script1);
  6083. _iframe.contentWindow.document.body.appendChild(script2);
  6084. // _iframe.contentWindow.document.body.appendChild(script3);
  6085. _iframe.contentWindow.document.body.appendChild(script4);
  6086. })
  6087. if (onloadListener) {
  6088. _iframe.contentDocument.location.reload()
  6089. } else {
  6090. _iframe.contentDocument.location.reload()
  6091. }
  6092. } else if (str == 'courseDesign') {
  6093. U.UF.DL.iframeLoad(_iframe, function () {
  6094. // _iframe.contentWindow.U.MD.O.W.load();
  6095. // _iframe.contentWindow.document.body.appendChild(script1);
  6096. _iframe.contentWindow.document.body.appendChild(script2);
  6097. _iframe.contentWindow.document.body.appendChild(script4);
  6098. })
  6099. } else if (str == 'mind') {
  6100. _iframe = _formdiv.querySelector('iframe')
  6101. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6102. //
  6103. _iframe.contentWindow.document.body.appendChild(script1);
  6104. _iframe.contentWindow.document.body.appendChild(script2);
  6105. _iframe.contentWindow.document.body.appendChild(script4);
  6106. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6107. })
  6108. if (onloadListener) {
  6109. _iframe.contentDocument.location.reload()
  6110. } else {
  6111. _iframe.contentDocument.location.reload()
  6112. }
  6113. } else if (str == 'whiteboard') {
  6114. _iframe = _formdiv.querySelector('iframe')
  6115. let onloadListener = _iframe.onload = () => {
  6116. _iframe.contentWindow.document.body.appendChild(script1);
  6117. _iframe.contentWindow.document.body.appendChild(script2);
  6118. _iframe.contentWindow.document.body.appendChild(script4);
  6119. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6120. };
  6121. // if (onloadListener) {
  6122. // try {
  6123. // _iframe.src += "?cocorobo="+new Date().getTime()
  6124. // _iframe.contentWindow.document.location.reload()
  6125. // } catch (error) {
  6126. // }
  6127. // } else {
  6128. // _iframe.contentDocument.location.reload()
  6129. // }
  6130. } else {
  6131. _iframe.onload = () => {
  6132. _iframe.contentWindow.document.body.appendChild(script1);
  6133. _iframe.contentWindow.document.body.appendChild(script2);
  6134. // _iframe.contentWindow.document.body.appendChild(script3);
  6135. _iframe.contentWindow.document.body.appendChild(script4);
  6136. };
  6137. }
  6138. _jie.onclick = async () => {
  6139. let text = ''
  6140. if (aTool == 1) {
  6141. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6142. } else if (aTool == 6) {
  6143. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6144. } else if (aTool == 3) {
  6145. text = await U.MD.D.I.getEditorContent(_iframe);
  6146. }
  6147. _loading.style.display = 'flex'
  6148. console.log(_loading);
  6149. var _ajs = _iframe.contentWindow.document.createElement("script");
  6150. _ajs.type = "text/javascript";
  6151. _ajs.innerHTML =
  6152. // 'console.log(' + _loading + ');\n' +
  6153. 'var _js = document.createElement("script");\n' +
  6154. '_js.type="text/javascript";\n' +
  6155. '_js.charset="UTF-8";\n' +
  6156. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6157. "_js.onload = function(){\n" +
  6158. ' var a = document.getElementsByTagName("img")\n' +
  6159. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6160. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6161. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6162. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6163. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6164. "beforeUpload_shishi(file," +
  6165. "'" +
  6166. _userid +
  6167. "'" +
  6168. ", " +
  6169. "'" +
  6170. _cid +
  6171. "'" +
  6172. ", " +
  6173. "'" +
  6174. _stage +
  6175. "'" +
  6176. ", " +
  6177. "'" +
  6178. _task +
  6179. "'" +
  6180. ", " +
  6181. "'" +
  6182. _tool +
  6183. "'" +
  6184. ", " +
  6185. "'" +
  6186. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6187. "'" +
  6188. ", " +
  6189. "'" +
  6190. aTool +
  6191. "'" +
  6192. ", " +
  6193. "`" +
  6194. text +
  6195. "`" +
  6196. ")\n" +
  6197. " });\n" +
  6198. "}\n" +
  6199. "document.head.appendChild(_js);\n";
  6200. _iframe.contentWindow.document.head.appendChild(_ajs);
  6201. }
  6202. }
  6203. //U.MD.D.I.openClick(str);
  6204. //如果有任务栏信息
  6205. // if (_taskbar) {
  6206. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6207. // }
  6208. }
  6209. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6210. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6211. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6212. _userinfo = US.userInfo, //登录用户信息
  6213. _userid = US.userInfo.userid //登录用户id
  6214. let _iframe;
  6215. let _cid = cid,
  6216. _stage = stage,
  6217. _task = task,
  6218. _tool = tool;
  6219. var _jie = $$("div", {
  6220. "style": {
  6221. "position": "absolute",
  6222. "bottom": "50px",
  6223. "right": "50px",
  6224. "zIndex": "9999",
  6225. "backgroundColor": "#2268bc",
  6226. "color": "#fff",
  6227. "padding": "12px 20px",
  6228. "cursor": "pointer",
  6229. "borderRadius": "4px",
  6230. },
  6231. "innerHTML": "提交作业"
  6232. })
  6233. let aTool = ''
  6234. let _loading = document.createElement('div')
  6235. _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;"
  6236. // _loading.id = "";
  6237. let _lchild = document.createElement('div')
  6238. let _limg = document.createElement('img')
  6239. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6240. _limg.style = "width: 26px;margin-right: 10px;"
  6241. _lchild.appendChild(_limg)
  6242. let _lspan = document.createElement('span')
  6243. _lspan.innerHTML = "上传中..."
  6244. _lchild.appendChild(_lspan)
  6245. _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%);"
  6246. _loading.appendChild(_lchild)
  6247. let _box = $$('div', {
  6248. "style": {
  6249. "position": "relative",
  6250. "width": "100%",
  6251. "height": "100%",
  6252. },
  6253. })
  6254. _box.appendChild(_loading)
  6255. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6256. switch (str) {
  6257. case "whiteboard":
  6258. aTool = 1;
  6259. _iframe = $$("iframe", {
  6260. "frameborder": "no",
  6261. "border": "0",
  6262. "scrolling ": "no",
  6263. "style": {
  6264. "cssText": "border:0;width:100%;height:100%"
  6265. },
  6266. "src": "https://beta.iwb.cocorobo.cn/"
  6267. })
  6268. _box.appendChild(_iframe);
  6269. _box.appendChild(_jie);
  6270. _formdiv = new U.UF.UI.form(
  6271. "电子白板",
  6272. _box, {
  6273. "id": "whiteboard" + cid + stage + task + tool,
  6274. "style": {
  6275. "width": "90%",
  6276. "height": "90%",
  6277. "overflow": 'hidden'
  6278. },
  6279. "onresize": function () { }
  6280. }, {
  6281. closecallback: function () { }
  6282. }, {
  6283. "style": {
  6284. "height": "36px"
  6285. }
  6286. }).form; //创建窗体
  6287. _taskbar = {
  6288. "id": str + _formdiv.id,
  6289. "style": {
  6290. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6291. },
  6292. "name": "电子白板",
  6293. "forms": _formdiv,
  6294. "click": function () {
  6295. U.MD.D.I.openApplication(str, obj, info);
  6296. }
  6297. }
  6298. break;
  6299. case "mind":
  6300. aTool = 3;
  6301. _iframe = $$("iframe", {
  6302. "frameborder": "no",
  6303. "border": "0",
  6304. "scrolling ": "no",
  6305. "style": {
  6306. "cssText": "border:0;width:100%;height:100%"
  6307. },
  6308. "src": "/kityminder-editor/dist/index.html"
  6309. })
  6310. _box.appendChild(_iframe);
  6311. _box.appendChild(_jie);
  6312. _formdiv = new U.UF.UI.form(
  6313. "思维导图",
  6314. _box, { //"/jsmind/example/demo.html"
  6315. "id": "mind" + cid + stage + task + tool,
  6316. "style": {
  6317. "width": "90%",
  6318. "height": "90%",
  6319. "overflow": 'hidden'
  6320. },
  6321. "onresize": function () { }
  6322. }, {
  6323. closecallback: function () { }
  6324. }, {
  6325. "style": {
  6326. "height": "36px"
  6327. }
  6328. }).form; //创建窗体
  6329. _taskbar = {
  6330. "id": str + _formdiv.id,
  6331. "style": {
  6332. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6333. },
  6334. "name": "思维导图",
  6335. "forms": _formdiv,
  6336. "click": function () {
  6337. U.MD.D.I.openApplication(str, obj, info);
  6338. }
  6339. }
  6340. break;
  6341. case "MindMap":
  6342. aTool = 3;
  6343. _iframe = $$("iframe", {
  6344. "frameborder": "no",
  6345. "border": "0",
  6346. "scrolling ": "no",
  6347. "style": {
  6348. "cssText": "border:0;width:100%;height:100%"
  6349. },
  6350. "src": "//cloud.cocorobo.cn/mind/"
  6351. })
  6352. _box.appendChild(_iframe);
  6353. _box.appendChild(_jie);
  6354. _formdiv = new U.UF.UI.form(
  6355. "思维导图",
  6356. _box, { //"/jsmind/example/demo.html"
  6357. "id": "mind" + cid + stage + task + tool,
  6358. "style": {
  6359. "width": "90%",
  6360. "height": "90%",
  6361. "overflow": 'hidden'
  6362. },
  6363. "onresize": function () { }
  6364. }, {
  6365. closecallback: function () { }
  6366. }, {
  6367. "style": {
  6368. "height": "36px"
  6369. }
  6370. }).form; //创建窗体
  6371. _taskbar = {
  6372. "id": str + _formdiv.id,
  6373. "style": {
  6374. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6375. },
  6376. "name": "思维导图",
  6377. "forms": _formdiv,
  6378. "click": function () {
  6379. U.MD.D.I.openApplication(str, obj, info);
  6380. }
  6381. }
  6382. break;
  6383. case "doc":
  6384. aTool = 6;
  6385. _iframe = $$("iframe", {
  6386. "frameborder": "no",
  6387. "border": "0",
  6388. "scrolling ": "no",
  6389. "style": {
  6390. "cssText": "border:0;width:100%;height:100%"
  6391. },
  6392. "src": "/Office/Word/WordEditArea.htm"
  6393. })
  6394. _box.appendChild(_iframe);
  6395. _box.appendChild(_jie);
  6396. _formdiv = new U.UF.UI.form(
  6397. "协同文档",
  6398. _box, {
  6399. "id": "doc" + cid + stage + task + tool,
  6400. "style": {
  6401. "width": "90%",
  6402. "height": "90%",
  6403. "overflow": 'hidden'
  6404. },
  6405. "onresize": function () { }
  6406. }, {
  6407. closecallback: function () { }
  6408. }, {
  6409. "style": {
  6410. "height": "36px"
  6411. }
  6412. }).form; //创建窗体
  6413. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6414. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6415. })
  6416. _taskbar = {
  6417. "id": str + _formdiv.id,
  6418. "style": {
  6419. "backgroundImage": "url(/img/icon/doc.png)"
  6420. },
  6421. "name": "协同文档",
  6422. "forms": _formdiv,
  6423. "click": function () {
  6424. U.MD.D.I.openApplication(str, obj, info);
  6425. }
  6426. }
  6427. break;
  6428. case "mindNetwork": //好友打开
  6429. aTool = 7;
  6430. _iframe = $$("iframe", {
  6431. "webkitallowfullscreen": "",
  6432. "mozallowfullscreen": "",
  6433. "allowfullscreen": "",
  6434. "frameborder": "no",
  6435. "border": "0",
  6436. "scrolling ": "no",
  6437. "style": {
  6438. "cssText": "border:0; width:100%; height:100%;"
  6439. },
  6440. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6441. })
  6442. _box.appendChild(_iframe);
  6443. _box.appendChild(_jie);
  6444. _formdiv = new U.UF.UI.form(
  6445. "思维网格",
  6446. _box, {
  6447. "id": "mindNetwork" + cid + stage + task + tool,
  6448. "style": {
  6449. "width": "90%",
  6450. "height": "90%",
  6451. "overflow": 'hidden'
  6452. },
  6453. "onresize": function () { }
  6454. }, {
  6455. closecallback: function () { }
  6456. }, {
  6457. "style": {
  6458. "height": "36px"
  6459. }
  6460. }).form; //创建窗体
  6461. _taskbar = {
  6462. "id": str + _formdiv.id,
  6463. "style": {
  6464. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6465. },
  6466. "name": "思维网格",
  6467. "forms": _formdiv,
  6468. "click": function () {
  6469. U.MD.D.I.openApplication(str, obj, info);
  6470. }
  6471. }
  6472. break;
  6473. case "courseDesign":
  6474. _iframe = $$("iframe", {
  6475. "webkitallowfullscreen": "",
  6476. "mozallowfullscreen": "",
  6477. "allowfullscreen": "",
  6478. "frameborder": "no",
  6479. "border": "0",
  6480. "scrolling ": "no",
  6481. "style": {
  6482. "cssText": "border:0; width:100%; height:100%;"
  6483. },
  6484. "src": "/course-design-vue"
  6485. })
  6486. _box.appendChild(_iframe);
  6487. _box.appendChild(_jie);
  6488. _formdiv = new U.UF.UI.form(
  6489. "项目设计",
  6490. _box, {
  6491. "id": "courseDesign" + cid + stage + task + tool,
  6492. "style": {
  6493. "width": "90%",
  6494. "height": "90%",
  6495. "overflow": 'hidden'
  6496. },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, {
  6501. "style": {
  6502. "height": "36px"
  6503. }
  6504. }).form; //创建窗体
  6505. _taskbar = {
  6506. "id": str + _formdiv.id,
  6507. "style": {
  6508. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6509. },
  6510. "name": "项目设计",
  6511. "forms": _formdiv,
  6512. "click": function () {
  6513. U.MD.D.I.openApplication(str, obj, info);
  6514. }
  6515. }
  6516. break;
  6517. }
  6518. const script1 = document.createElement("script");
  6519. script1.type = "text/javascript";
  6520. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6521. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6522. const script2 = document.createElement("script");
  6523. script2.type = "text/javascript";
  6524. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6525. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6526. const script3 = document.createElement("script");
  6527. script3.type = "text/javascript";
  6528. script3.charset = "UTF-8";
  6529. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6530. const script4 = document.createElement("script");
  6531. script4.type = "text/javascript";
  6532. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6533. script4.src = window.origin + "/js/Common/jietu2E.js";
  6534. if (_iframe) {
  6535. if (str == 'doc') {
  6536. _iframe = _formdiv.querySelector('iframe')
  6537. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6538. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6539. _iframe.contentWindow.document.body.appendChild(script1);
  6540. _iframe.contentWindow.document.body.appendChild(script2);
  6541. // _iframe.contentWindow.document.body.appendChild(script3);
  6542. _iframe.contentWindow.document.body.appendChild(script4);
  6543. })
  6544. if (onloadListener) {
  6545. _iframe.contentDocument.location.reload()
  6546. } else {
  6547. _iframe.contentDocument.location.reload()
  6548. }
  6549. } else if (str == 'courseDesign') {
  6550. U.UF.DL.iframeLoad(_iframe, function () {
  6551. // _iframe.contentWindow.U.MD.O.W.load();
  6552. // _iframe.contentWindow.document.body.appendChild(script1);
  6553. _iframe.contentWindow.document.body.appendChild(script2);
  6554. _iframe.contentWindow.document.body.appendChild(script4);
  6555. })
  6556. } else if (str == 'mind') {
  6557. _iframe = _formdiv.querySelector('iframe')
  6558. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6559. //
  6560. _iframe.contentWindow.document.body.appendChild(script1);
  6561. _iframe.contentWindow.document.body.appendChild(script2);
  6562. _iframe.contentWindow.document.body.appendChild(script4);
  6563. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6564. })
  6565. if (onloadListener) {
  6566. _iframe.contentDocument.location.reload()
  6567. } else {
  6568. _iframe.contentDocument.location.reload()
  6569. }
  6570. } else if (str == 'whiteboard') {
  6571. _iframe = _formdiv.querySelector('iframe')
  6572. let onloadListener = _iframe.onload = () => {
  6573. _iframe.contentWindow.document.body.appendChild(script1);
  6574. _iframe.contentWindow.document.body.appendChild(script2);
  6575. _iframe.contentWindow.document.body.appendChild(script4);
  6576. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6577. };
  6578. // if (onloadListener) {
  6579. // try {
  6580. // _iframe.src += "?cocorobo="+new Date().getTime()
  6581. // _iframe.contentWindow.document.location.reload()
  6582. // } catch (error) {
  6583. // }
  6584. // } else {
  6585. // _iframe.contentDocument.location.reload()
  6586. // }
  6587. } else {
  6588. _iframe.onload = () => {
  6589. _iframe.contentWindow.document.body.appendChild(script1);
  6590. _iframe.contentWindow.document.body.appendChild(script2);
  6591. // _iframe.contentWindow.document.body.appendChild(script3);
  6592. _iframe.contentWindow.document.body.appendChild(script4);
  6593. };
  6594. }
  6595. _jie.onclick = async () => {
  6596. let text = ''
  6597. if (aTool == 1) {
  6598. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6599. } else if (aTool == 6) {
  6600. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6601. } else if (aTool == 3) {
  6602. text = await U.MD.D.I.getEditorContent(_iframe);
  6603. }
  6604. _loading.style.display = 'flex'
  6605. console.log(_loading);
  6606. var _ajs = _iframe.contentWindow.document.createElement("script");
  6607. _ajs.type = "text/javascript";
  6608. _ajs.innerHTML =
  6609. // 'console.log(' + _loading + ');\n' +
  6610. 'var _js = document.createElement("script");\n' +
  6611. '_js.type="text/javascript";\n' +
  6612. '_js.charset="UTF-8";\n' +
  6613. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6614. "_js.onload = function(){\n" +
  6615. ' var a = document.getElementsByTagName("img")\n' +
  6616. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6617. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6618. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6619. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6620. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6621. "beforeUpload_shishi(file," +
  6622. "'" +
  6623. _userid +
  6624. "'" +
  6625. ", " +
  6626. "'" +
  6627. _cid +
  6628. "'" +
  6629. ", " +
  6630. "'" +
  6631. _stage +
  6632. "'" +
  6633. ", " +
  6634. "'" +
  6635. _task +
  6636. "'" +
  6637. ", " +
  6638. "'" +
  6639. _tool +
  6640. "'" +
  6641. ", " +
  6642. "'" +
  6643. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6644. "'" +
  6645. ", " +
  6646. "'" +
  6647. aTool +
  6648. "'" +
  6649. ", " +
  6650. "`" +
  6651. text +
  6652. "`" +
  6653. ")\n" +
  6654. " });\n" +
  6655. "}\n" +
  6656. "document.head.appendChild(_js);\n";
  6657. _iframe.contentWindow.document.head.appendChild(_ajs);
  6658. }
  6659. }
  6660. //U.MD.D.I.openClick(str);
  6661. //如果有任务栏信息
  6662. // if (_taskbar) {
  6663. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6664. // }
  6665. }
  6666. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6667. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6668. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6669. _userid = student.userid, //登录用户id
  6670. _username = student.student //用户名字
  6671. let _iframe;
  6672. let _cid = cid,
  6673. _stage = stage,
  6674. _task = task,
  6675. _tool = tool;
  6676. var _jie = $$("div", {
  6677. "style": {
  6678. "position": "absolute",
  6679. "bottom": "50px",
  6680. "right": "50px",
  6681. "zIndex": "9999",
  6682. "backgroundColor": "#2268bc",
  6683. "color": "#fff",
  6684. "padding": "12px 20px",
  6685. "cursor": "pointer",
  6686. "borderRadius": "4px",
  6687. },
  6688. "innerHTML": "提交作业"
  6689. })
  6690. let aTool = ''
  6691. let _loading = document.createElement('div')
  6692. _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;"
  6693. // _loading.id = "";
  6694. let _lchild = document.createElement('div')
  6695. let _limg = document.createElement('img')
  6696. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6697. _limg.style = "width: 26px;margin-right: 10px;"
  6698. _lchild.appendChild(_limg)
  6699. let _lspan = document.createElement('span')
  6700. _lspan.innerHTML = "上传中..."
  6701. _lchild.appendChild(_lspan)
  6702. _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%);"
  6703. _loading.appendChild(_lchild)
  6704. var _box = $$('div', {
  6705. "style": {
  6706. "position": "relative",
  6707. "width": "100%",
  6708. "height": "100%",
  6709. },
  6710. })
  6711. _box.appendChild(_loading)
  6712. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6713. switch (str) {
  6714. case "whiteboard":
  6715. aTool = 1;
  6716. _iframe = $$("iframe", {
  6717. "frameborder": "no",
  6718. "border": "0",
  6719. "scrolling ": "no",
  6720. "style": {
  6721. "cssText": "border:0;width:100%;height:100%"
  6722. },
  6723. "src": "https://beta.iwb.cocorobo.cn/"
  6724. })
  6725. _box.appendChild(_iframe);
  6726. _box.appendChild(_jie);
  6727. _formdiv = new U.UF.UI.form(
  6728. "电子白板-" + _username,
  6729. _box, {
  6730. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6731. "style": {
  6732. "width": "90%",
  6733. "height": "90%",
  6734. "overflow": 'hidden'
  6735. },
  6736. "onresize": function () { }
  6737. }, {
  6738. closecallback: function () { }
  6739. }, {
  6740. "style": {
  6741. "height": "36px"
  6742. }
  6743. }).form; //创建窗体
  6744. _taskbar = {
  6745. "id": str + _formdiv.id,
  6746. "style": {
  6747. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6748. },
  6749. "name": "电子白板",
  6750. "forms": _formdiv,
  6751. "click": function () {
  6752. U.MD.D.I.openApplication(str, obj, info);
  6753. }
  6754. }
  6755. break;
  6756. case "mind":
  6757. aTool = 3;
  6758. _iframe = $$("iframe", {
  6759. "frameborder": "no",
  6760. "border": "0",
  6761. "scrolling ": "no",
  6762. "style": {
  6763. "cssText": "border:0;width:100%;height:100%"
  6764. },
  6765. "src": "/kityminder-editor/dist/index.html"
  6766. })
  6767. _box.appendChild(_iframe);
  6768. _box.appendChild(_jie);
  6769. _formdiv = new U.UF.UI.form(
  6770. "思维导图-" + _username,
  6771. _box, { //"/jsmind/example/demo.html"
  6772. "id": "mind" + cid + stage + task + tool + _userid,
  6773. "style": {
  6774. "width": "90%",
  6775. "height": "90%",
  6776. "overflow": 'hidden'
  6777. },
  6778. "onresize": function () { }
  6779. }, {
  6780. closecallback: function () { }
  6781. }, {
  6782. "style": {
  6783. "height": "36px"
  6784. }
  6785. }).form; //创建窗体
  6786. _taskbar = {
  6787. "id": str + _formdiv.id,
  6788. "style": {
  6789. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6790. },
  6791. "name": "思维导图",
  6792. "forms": _formdiv,
  6793. "click": function () {
  6794. U.MD.D.I.openApplication(str, obj, info);
  6795. }
  6796. }
  6797. break;
  6798. case "MindMap":
  6799. aTool = 3;
  6800. _iframe = $$("iframe", {
  6801. "frameborder": "no",
  6802. "border": "0",
  6803. "scrolling ": "no",
  6804. "style": {
  6805. "cssText": "border:0;width:100%;height:100%"
  6806. },
  6807. "src": "//cloud.cocorobo.cn/mind/"
  6808. })
  6809. _box.appendChild(_iframe);
  6810. _box.appendChild(_jie);
  6811. _formdiv = new U.UF.UI.form(
  6812. "思维导图-" + _username,
  6813. _box, { //"/jsmind/example/demo.html"
  6814. "id": "mind" + cid + stage + task + tool + _userid,
  6815. "style": {
  6816. "width": "90%",
  6817. "height": "90%",
  6818. "overflow": 'hidden'
  6819. },
  6820. "onresize": function () { }
  6821. }, {
  6822. closecallback: function () { }
  6823. }, {
  6824. "style": {
  6825. "height": "36px"
  6826. }
  6827. }).form; //创建窗体
  6828. _taskbar = {
  6829. "id": str + _formdiv.id,
  6830. "style": {
  6831. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6832. },
  6833. "name": "思维导图",
  6834. "forms": _formdiv,
  6835. "click": function () {
  6836. U.MD.D.I.openApplication(str, obj, info);
  6837. }
  6838. }
  6839. break;
  6840. case "doc":
  6841. aTool = 6;
  6842. _iframe = $$("iframe", {
  6843. "frameborder": "no",
  6844. "border": "0",
  6845. "scrolling ": "no",
  6846. "style": {
  6847. "cssText": "border:0;width:100%;height:100%"
  6848. },
  6849. "src": "/Office/Word/WordEditArea.htm"
  6850. })
  6851. _box.appendChild(_iframe);
  6852. _box.appendChild(_jie);
  6853. _formdiv = new U.UF.UI.form(
  6854. "协同文档-" + _username,
  6855. _box, {
  6856. "id": "doc" + cid + stage + task + tool + _userid,
  6857. "style": {
  6858. "width": "90%",
  6859. "height": "90%",
  6860. "overflow": 'hidden'
  6861. },
  6862. "onresize": function () { }
  6863. }, {
  6864. closecallback: function () { }
  6865. }, {
  6866. "style": {
  6867. "height": "36px"
  6868. }
  6869. }).form; //创建窗体
  6870. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6871. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6872. })
  6873. _taskbar = {
  6874. "id": str + _formdiv.id,
  6875. "style": {
  6876. "backgroundImage": "url(/img/icon/doc.png)"
  6877. },
  6878. "name": "协同文档",
  6879. "forms": _formdiv,
  6880. "click": function () {
  6881. U.MD.D.I.openApplication(str, obj, info);
  6882. }
  6883. }
  6884. break;
  6885. case "mindNetwork": //好友打开
  6886. aTool = 7;
  6887. _iframe = $$("iframe", {
  6888. "webkitallowfullscreen": "",
  6889. "mozallowfullscreen": "",
  6890. "allowfullscreen": "",
  6891. "frameborder": "no",
  6892. "border": "0",
  6893. "scrolling ": "no",
  6894. "style": {
  6895. "cssText": "border:0; width:100%; height:100%;"
  6896. },
  6897. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6898. })
  6899. _box.appendChild(_iframe);
  6900. _box.appendChild(_jie);
  6901. _formdiv = new U.UF.UI.form(
  6902. "思维网格-" + _username,
  6903. _box, {
  6904. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6905. "style": {
  6906. "width": "90%",
  6907. "height": "90%",
  6908. "overflow": 'hidden'
  6909. },
  6910. "onresize": function () { }
  6911. }, {
  6912. closecallback: function () { }
  6913. }, {
  6914. "style": {
  6915. "height": "36px"
  6916. }
  6917. }).form; //创建窗体
  6918. _taskbar = {
  6919. "id": str + _formdiv.id,
  6920. "style": {
  6921. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6922. },
  6923. "name": "思维网格",
  6924. "forms": _formdiv,
  6925. "click": function () {
  6926. U.MD.D.I.openApplication(str, obj, info);
  6927. }
  6928. }
  6929. break;
  6930. case "courseDesign":
  6931. _iframe = $$("iframe", {
  6932. "webkitallowfullscreen": "",
  6933. "mozallowfullscreen": "",
  6934. "allowfullscreen": "",
  6935. "frameborder": "no",
  6936. "border": "0",
  6937. "scrolling ": "no",
  6938. "style": {
  6939. "cssText": "border:0; width:100%; height:100%;"
  6940. },
  6941. "src": "/course-design-vue"
  6942. })
  6943. _box.appendChild(_iframe);
  6944. _box.appendChild(_jie);
  6945. _formdiv = new U.UF.UI.form(
  6946. "项目设计-" + _username,
  6947. _box, {
  6948. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6949. "style": {
  6950. "width": "90%",
  6951. "height": "90%",
  6952. "overflow": 'hidden'
  6953. },
  6954. "onresize": function () { }
  6955. }, {
  6956. closecallback: function () { }
  6957. }, {
  6958. "style": {
  6959. "height": "36px"
  6960. }
  6961. }).form; //创建窗体
  6962. _taskbar = {
  6963. "id": str + _formdiv.id,
  6964. "style": {
  6965. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6966. },
  6967. "name": "项目设计",
  6968. "forms": _formdiv,
  6969. "click": function () {
  6970. U.MD.D.I.openApplication(str, obj, info);
  6971. }
  6972. }
  6973. break;
  6974. }
  6975. const script1 = document.createElement("script");
  6976. script1.type = "text/javascript";
  6977. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6978. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6979. const script2 = document.createElement("script");
  6980. script2.type = "text/javascript";
  6981. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6982. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6983. const script3 = document.createElement("script");
  6984. script3.type = "text/javascript";
  6985. script3.charset = "UTF-8";
  6986. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6987. const script4 = document.createElement("script");
  6988. script4.type = "text/javascript";
  6989. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6990. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6991. if (_iframe) {
  6992. if (str == 'doc') {
  6993. _iframe = _formdiv.querySelector('iframe')
  6994. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6995. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6996. _iframe.contentWindow.document.body.appendChild(script1);
  6997. _iframe.contentWindow.document.body.appendChild(script2);
  6998. // _iframe.contentWindow.document.body.appendChild(script3);
  6999. _iframe.contentWindow.document.body.appendChild(script4);
  7000. })
  7001. if (onloadListener) {
  7002. _iframe.contentDocument.location.reload()
  7003. } else {
  7004. _iframe.contentDocument.location.reload()
  7005. }
  7006. } else if (str == 'courseDesign') {
  7007. U.UF.DL.iframeLoad(_iframe, function () {
  7008. // _iframe.contentWindow.U.MD.O.W.load();
  7009. // _iframe.contentWindow.document.body.appendChild(script1);
  7010. _iframe.contentWindow.document.body.appendChild(script2);
  7011. _iframe.contentWindow.document.body.appendChild(script4);
  7012. })
  7013. } else if (str == 'mind') {
  7014. _iframe = _formdiv.querySelector('iframe')
  7015. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7016. //
  7017. _iframe.contentWindow.document.body.appendChild(script1);
  7018. _iframe.contentWindow.document.body.appendChild(script2);
  7019. _iframe.contentWindow.document.body.appendChild(script4);
  7020. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7021. })
  7022. if (onloadListener) {
  7023. _iframe.contentDocument.location.reload()
  7024. } else {
  7025. _iframe.contentDocument.location.reload()
  7026. }
  7027. } else if (str == 'whiteboard') {
  7028. _iframe = _formdiv.querySelector('iframe')
  7029. let onloadListener = _iframe.onload = () => {
  7030. _iframe.contentWindow.document.body.appendChild(script1);
  7031. _iframe.contentWindow.document.body.appendChild(script2);
  7032. _iframe.contentWindow.document.body.appendChild(script4);
  7033. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7034. };
  7035. // if (onloadListener) {
  7036. // try {
  7037. // _iframe.src += "?cocorobo="+new Date().getTime()
  7038. // _iframe.contentWindow.document.location.reload()
  7039. // } catch (error) {
  7040. // }
  7041. // } else {
  7042. // _iframe.contentDocument.location.reload()
  7043. // }
  7044. } else {
  7045. _iframe.onload = () => {
  7046. _iframe.contentWindow.document.body.appendChild(script1);
  7047. _iframe.contentWindow.document.body.appendChild(script2);
  7048. // _iframe.contentWindow.document.body.appendChild(script3);
  7049. _iframe.contentWindow.document.body.appendChild(script4);
  7050. };
  7051. }
  7052. _jie.onclick = async () => {
  7053. let text = ''
  7054. if (aTool == 1) {
  7055. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7056. } else if (aTool == 6) {
  7057. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7058. } else if (aTool == 3) {
  7059. text = await U.MD.D.I.getEditorContent(_iframe);
  7060. }
  7061. _loading.style.display = 'flex'
  7062. console.log(_loading);
  7063. var _ajs = _iframe.contentWindow.document.createElement("script");
  7064. _ajs.type = "text/javascript";
  7065. _ajs.innerHTML =
  7066. // 'console.log(' + _loading + ');\n' +
  7067. 'var _js = document.createElement("script");\n' +
  7068. '_js.type="text/javascript";\n' +
  7069. '_js.charset="UTF-8";\n' +
  7070. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7071. "_js.onload = function(){\n" +
  7072. ' var a = document.getElementsByTagName("img")\n' +
  7073. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7074. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7075. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7076. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7077. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7078. "beforeUpload_shishi(file," +
  7079. "'" +
  7080. _userid +
  7081. "'" +
  7082. ", " +
  7083. "'" +
  7084. _cid +
  7085. "'" +
  7086. ", " +
  7087. "'" +
  7088. _stage +
  7089. "'" +
  7090. ", " +
  7091. "'" +
  7092. _task +
  7093. "'" +
  7094. ", " +
  7095. "'" +
  7096. _tool +
  7097. "'" +
  7098. ", " +
  7099. "'" +
  7100. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7101. "'" +
  7102. ", " +
  7103. "'" +
  7104. aTool +
  7105. "'" +
  7106. ", " +
  7107. "`" +
  7108. text +
  7109. "`" +
  7110. ")\n" +
  7111. " });\n" +
  7112. "}\n" +
  7113. "document.head.appendChild(_js);\n";
  7114. _iframe.contentWindow.document.head.appendChild(_ajs);
  7115. }
  7116. }
  7117. }
  7118. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7119. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7120. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7121. _userid = student.userid, //登录用户id
  7122. _username = student.student //用户名字
  7123. let _iframe;
  7124. let _cid = cid,
  7125. _stage = stage,
  7126. _task = task,
  7127. _tool = tool;
  7128. var _jie = $$("div", {
  7129. "style": {
  7130. "position": "absolute",
  7131. "bottom": "50px",
  7132. "right": "50px",
  7133. "zIndex": "9999",
  7134. "backgroundColor": "#2268bc",
  7135. "color": "#fff",
  7136. "padding": "12px 20px",
  7137. "cursor": "pointer",
  7138. "borderRadius": "4px",
  7139. },
  7140. "innerHTML": "提交作业"
  7141. })
  7142. let aTool = ''
  7143. let _loading = document.createElement('div')
  7144. _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;"
  7145. // _loading.id = "";
  7146. let _lchild = document.createElement('div')
  7147. let _limg = document.createElement('img')
  7148. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7149. _limg.style = "width: 26px;margin-right: 10px;"
  7150. _lchild.appendChild(_limg)
  7151. let _lspan = document.createElement('span')
  7152. _lspan.innerHTML = "上传中..."
  7153. _lchild.appendChild(_lspan)
  7154. _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%);"
  7155. _loading.appendChild(_lchild)
  7156. var _box = $$('div', {
  7157. "style": {
  7158. "position": "relative",
  7159. "width": "100%",
  7160. "height": "100%",
  7161. },
  7162. })
  7163. _box.appendChild(_loading)
  7164. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7165. switch (str) {
  7166. case "whiteboard":
  7167. aTool = 1;
  7168. _iframe = $$("iframe", {
  7169. "frameborder": "no",
  7170. "border": "0",
  7171. "scrolling ": "no",
  7172. "style": {
  7173. "cssText": "border:0;width:100%;height:100%"
  7174. },
  7175. "src": "https://beta.iwb.cocorobo.cn/"
  7176. })
  7177. _box.appendChild(_iframe);
  7178. _box.appendChild(_jie);
  7179. _formdiv = new U.UF.UI.form(
  7180. "电子白板-" + _username,
  7181. _box, {
  7182. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7183. "style": {
  7184. "width": "90%",
  7185. "height": "90%",
  7186. "overflow": 'hidden'
  7187. },
  7188. "onresize": function () { }
  7189. }, {
  7190. closecallback: function () { }
  7191. }, {
  7192. "style": {
  7193. "height": "36px"
  7194. }
  7195. }).form; //创建窗体
  7196. _taskbar = {
  7197. "id": str + _formdiv.id,
  7198. "style": {
  7199. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7200. },
  7201. "name": "电子白板",
  7202. "forms": _formdiv,
  7203. "click": function () {
  7204. U.MD.D.I.openApplication(str, obj, info);
  7205. }
  7206. }
  7207. break;
  7208. case "mind":
  7209. aTool = 3;
  7210. _iframe = $$("iframe", {
  7211. "frameborder": "no",
  7212. "border": "0",
  7213. "scrolling ": "no",
  7214. "style": {
  7215. "cssText": "border:0;width:100%;height:100%"
  7216. },
  7217. "src": "/kityminder-editor/dist/index.html"
  7218. })
  7219. _box.appendChild(_iframe);
  7220. _box.appendChild(_jie);
  7221. _formdiv = new U.UF.UI.form(
  7222. "思维导图-" + _username,
  7223. _box, { //"/jsmind/example/demo.html"
  7224. "id": "mind" + cid + stage + task + tool + _userid,
  7225. "style": {
  7226. "width": "90%",
  7227. "height": "90%",
  7228. "overflow": 'hidden'
  7229. },
  7230. "onresize": function () { }
  7231. }, {
  7232. closecallback: function () { }
  7233. }, {
  7234. "style": {
  7235. "height": "36px"
  7236. }
  7237. }).form; //创建窗体
  7238. _taskbar = {
  7239. "id": str + _formdiv.id,
  7240. "style": {
  7241. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7242. },
  7243. "name": "思维导图",
  7244. "forms": _formdiv,
  7245. "click": function () {
  7246. U.MD.D.I.openApplication(str, obj, info);
  7247. }
  7248. }
  7249. break;
  7250. case "MindMap":
  7251. aTool = 3;
  7252. _iframe = $$("iframe", {
  7253. "frameborder": "no",
  7254. "border": "0",
  7255. "scrolling ": "no",
  7256. "style": {
  7257. "cssText": "border:0;width:100%;height:100%"
  7258. },
  7259. "src": "//cloud.cocorobo.cn/mind/"
  7260. })
  7261. _box.appendChild(_iframe);
  7262. _box.appendChild(_jie);
  7263. _formdiv = new U.UF.UI.form(
  7264. "思维导图-" + _username,
  7265. _box, { //"/jsmind/example/demo.html"
  7266. "id": "mind" + cid + stage + task + tool + _userid,
  7267. "style": {
  7268. "width": "90%",
  7269. "height": "90%",
  7270. "overflow": 'hidden'
  7271. },
  7272. "onresize": function () { }
  7273. }, {
  7274. closecallback: function () { }
  7275. }, {
  7276. "style": {
  7277. "height": "36px"
  7278. }
  7279. }).form; //创建窗体
  7280. _taskbar = {
  7281. "id": str + _formdiv.id,
  7282. "style": {
  7283. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7284. },
  7285. "name": "思维导图",
  7286. "forms": _formdiv,
  7287. "click": function () {
  7288. U.MD.D.I.openApplication(str, obj, info);
  7289. }
  7290. }
  7291. break;
  7292. case "doc":
  7293. aTool = 6;
  7294. _iframe = $$("iframe", {
  7295. "frameborder": "no",
  7296. "border": "0",
  7297. "scrolling ": "no",
  7298. "style": {
  7299. "cssText": "border:0;width:100%;height:100%"
  7300. },
  7301. "src": "/Office/Word/WordEditArea.htm"
  7302. })
  7303. _box.appendChild(_iframe);
  7304. _box.appendChild(_jie);
  7305. _formdiv = new U.UF.UI.form(
  7306. "协同文档-" + _username,
  7307. _box, {
  7308. "id": "doc" + cid + stage + task + tool + _userid,
  7309. "style": {
  7310. "width": "90%",
  7311. "height": "90%",
  7312. "overflow": 'hidden'
  7313. },
  7314. "onresize": function () { }
  7315. }, {
  7316. closecallback: function () { }
  7317. }, {
  7318. "style": {
  7319. "height": "36px"
  7320. }
  7321. }).form; //创建窗体
  7322. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7323. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7324. })
  7325. _taskbar = {
  7326. "id": str + _formdiv.id,
  7327. "style": {
  7328. "backgroundImage": "url(/img/icon/doc.png)"
  7329. },
  7330. "name": "协同文档",
  7331. "forms": _formdiv,
  7332. "click": function () {
  7333. U.MD.D.I.openApplication(str, obj, info);
  7334. }
  7335. }
  7336. break;
  7337. case "mindNetwork": //好友打开
  7338. aTool = 7;
  7339. _iframe = $$("iframe", {
  7340. "webkitallowfullscreen": "",
  7341. "mozallowfullscreen": "",
  7342. "allowfullscreen": "",
  7343. "frameborder": "no",
  7344. "border": "0",
  7345. "scrolling ": "no",
  7346. "style": {
  7347. "cssText": "border:0; width:100%; height:100%;"
  7348. },
  7349. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7350. })
  7351. _box.appendChild(_iframe);
  7352. _box.appendChild(_jie);
  7353. _formdiv = new U.UF.UI.form(
  7354. "思维网格-" + _username,
  7355. _box, {
  7356. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7357. "style": {
  7358. "width": "90%",
  7359. "height": "90%",
  7360. "overflow": 'hidden'
  7361. },
  7362. "onresize": function () { }
  7363. }, {
  7364. closecallback: function () { }
  7365. }, {
  7366. "style": {
  7367. "height": "36px"
  7368. }
  7369. }).form; //创建窗体
  7370. _taskbar = {
  7371. "id": str + _formdiv.id,
  7372. "style": {
  7373. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7374. },
  7375. "name": "思维网格",
  7376. "forms": _formdiv,
  7377. "click": function () {
  7378. U.MD.D.I.openApplication(str, obj, info);
  7379. }
  7380. }
  7381. break;
  7382. case "courseDesign":
  7383. _iframe = $$("iframe", {
  7384. "webkitallowfullscreen": "",
  7385. "mozallowfullscreen": "",
  7386. "allowfullscreen": "",
  7387. "frameborder": "no",
  7388. "border": "0",
  7389. "scrolling ": "no",
  7390. "style": {
  7391. "cssText": "border:0; width:100%; height:100%;"
  7392. },
  7393. "src": "/course-design-vue"
  7394. })
  7395. _box.appendChild(_iframe);
  7396. _box.appendChild(_jie);
  7397. _formdiv = new U.UF.UI.form(
  7398. "项目设计-" + _username,
  7399. _box, {
  7400. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7401. "style": {
  7402. "width": "90%",
  7403. "height": "90%",
  7404. "overflow": 'hidden'
  7405. },
  7406. "onresize": function () { }
  7407. }, {
  7408. closecallback: function () { }
  7409. }, {
  7410. "style": {
  7411. "height": "36px"
  7412. }
  7413. }).form; //创建窗体
  7414. _taskbar = {
  7415. "id": str + _formdiv.id,
  7416. "style": {
  7417. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7418. },
  7419. "name": "项目设计",
  7420. "forms": _formdiv,
  7421. "click": function () {
  7422. U.MD.D.I.openApplication(str, obj, info);
  7423. }
  7424. }
  7425. break;
  7426. }
  7427. const script1 = document.createElement("script");
  7428. script1.type = "text/javascript";
  7429. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7430. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7431. const script2 = document.createElement("script");
  7432. script2.type = "text/javascript";
  7433. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7434. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7435. const script3 = document.createElement("script");
  7436. script3.type = "text/javascript";
  7437. script3.charset = "UTF-8";
  7438. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7439. const script4 = document.createElement("script");
  7440. script4.type = "text/javascript";
  7441. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7442. script4.src = window.origin + "/js/Common/jietu2E.js";
  7443. if (_iframe) {
  7444. if (str == 'doc') {
  7445. _iframe = _formdiv.querySelector('iframe')
  7446. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7447. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7448. _iframe.contentWindow.document.body.appendChild(script1);
  7449. _iframe.contentWindow.document.body.appendChild(script2);
  7450. // _iframe.contentWindow.document.body.appendChild(script3);
  7451. _iframe.contentWindow.document.body.appendChild(script4);
  7452. })
  7453. if (onloadListener) {
  7454. _iframe.contentDocument.location.reload()
  7455. } else {
  7456. _iframe.contentDocument.location.reload()
  7457. }
  7458. } else if (str == 'courseDesign') {
  7459. U.UF.DL.iframeLoad(_iframe, function () {
  7460. // _iframe.contentWindow.U.MD.O.W.load();
  7461. // _iframe.contentWindow.document.body.appendChild(script1);
  7462. _iframe.contentWindow.document.body.appendChild(script2);
  7463. _iframe.contentWindow.document.body.appendChild(script4);
  7464. })
  7465. } else if (str == 'mind') {
  7466. _iframe = _formdiv.querySelector('iframe')
  7467. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7468. //
  7469. _iframe.contentWindow.document.body.appendChild(script1);
  7470. _iframe.contentWindow.document.body.appendChild(script2);
  7471. _iframe.contentWindow.document.body.appendChild(script4);
  7472. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7473. })
  7474. if (onloadListener) {
  7475. _iframe.contentDocument.location.reload()
  7476. } else {
  7477. _iframe.contentDocument.location.reload()
  7478. }
  7479. } else if (str == 'whiteboard') {
  7480. _iframe = _formdiv.querySelector('iframe')
  7481. let onloadListener = _iframe.onload = () => {
  7482. _iframe.contentWindow.document.body.appendChild(script1);
  7483. _iframe.contentWindow.document.body.appendChild(script2);
  7484. _iframe.contentWindow.document.body.appendChild(script4);
  7485. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7486. };
  7487. // if (onloadListener) {
  7488. // try {
  7489. // _iframe.src += "?cocorobo="+new Date().getTime()
  7490. // _iframe.contentWindow.document.location.reload()
  7491. // } catch (error) {
  7492. // }
  7493. // } else {
  7494. // _iframe.contentDocument.location.reload()
  7495. // }
  7496. } else {
  7497. _iframe.onload = () => {
  7498. _iframe.contentWindow.document.body.appendChild(script1);
  7499. _iframe.contentWindow.document.body.appendChild(script2);
  7500. // _iframe.contentWindow.document.body.appendChild(script3);
  7501. _iframe.contentWindow.document.body.appendChild(script4);
  7502. };
  7503. }
  7504. _jie.onclick = async () => {
  7505. let text = ''
  7506. if (aTool == 1) {
  7507. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7508. } else if (aTool == 6) {
  7509. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7510. } else if (aTool == 3) {
  7511. text = await U.MD.D.I.getEditorContent(_iframe);
  7512. }
  7513. _loading.style.display = 'flex'
  7514. console.log(_loading);
  7515. var _ajs = _iframe.contentWindow.document.createElement("script");
  7516. _ajs.type = "text/javascript";
  7517. _ajs.innerHTML =
  7518. // 'console.log(' + _loading + ');\n' +
  7519. 'var _js = document.createElement("script");\n' +
  7520. '_js.type="text/javascript";\n' +
  7521. '_js.charset="UTF-8";\n' +
  7522. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7523. "_js.onload = function(){\n" +
  7524. ' var a = document.getElementsByTagName("img")\n' +
  7525. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7526. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7527. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7528. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7529. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7530. "beforeUpload_shishi(file," +
  7531. "'" +
  7532. _userid +
  7533. "'" +
  7534. ", " +
  7535. "'" +
  7536. _cid +
  7537. "'" +
  7538. ", " +
  7539. "'" +
  7540. _stage +
  7541. "'" +
  7542. ", " +
  7543. "'" +
  7544. _task +
  7545. "'" +
  7546. ", " +
  7547. "'" +
  7548. _tool +
  7549. "'" +
  7550. ", " +
  7551. "'" +
  7552. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7553. "'" +
  7554. ", " +
  7555. "'" +
  7556. aTool +
  7557. "'" +
  7558. ", " +
  7559. "`" +
  7560. text +
  7561. "`" +
  7562. ")\n" +
  7563. " });\n" +
  7564. "}\n" +
  7565. "document.head.appendChild(_js);\n";
  7566. _iframe.contentWindow.document.head.appendChild(_ajs);
  7567. }
  7568. }
  7569. }
  7570. U.MD.D.I.getEditorContent = function (iframe) {
  7571. return new Promise((resolve, reject) => {
  7572. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7573. console.log(content);
  7574. resolve(content)
  7575. });
  7576. });
  7577. }
  7578. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7579. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7580. // if (res.value[0].length > 0) {
  7581. // // resolve(res.value[0][0].text);
  7582. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7583. // $(fileInput).val('');
  7584. // });
  7585. // }
  7586. // }, [], { "type": "GET", "withCredentials": true });
  7587. var xmlhttp;
  7588. var Mac, Sn, DeviceId
  7589. if (window.XMLHttpRequest) {
  7590. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7591. xmlhttp = new XMLHttpRequest();
  7592. } else {
  7593. // IE6, IE5 浏览器执行代码
  7594. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7595. }
  7596. xmlhttp.onreadystatechange = function () {
  7597. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7598. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7599. // resolve(res.value[0][0].text);
  7600. if (type == '2') {
  7601. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7602. } else if (type == '3') {
  7603. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7604. }
  7605. } else {
  7606. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7607. }
  7608. }
  7609. }
  7610. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7611. xmlhttp.send();
  7612. }
  7613. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7614. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7615. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7616. _userinfo = US.userInfo, //登录用户信息
  7617. _userid = US.userInfo.userid //登录用户id
  7618. let _iframe;
  7619. let _cid = cid,
  7620. _stage = stage,
  7621. _task = task,
  7622. _tool = tool;
  7623. var _jie = $$("div", {
  7624. "style": {
  7625. "position": "absolute",
  7626. "bottom": "50px",
  7627. "right": "50px",
  7628. "zIndex": "9999",
  7629. "backgroundColor": "#2268bc",
  7630. "color": "#fff",
  7631. "padding": "12px 20px",
  7632. "cursor": "pointer",
  7633. "borderRadius": "4px",
  7634. },
  7635. "innerHTML": "确认并提交"
  7636. })
  7637. let aTool = ''
  7638. let _loading = document.createElement('div')
  7639. _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;"
  7640. // _loading.id = "";
  7641. let _lchild = document.createElement('div')
  7642. let _limg = document.createElement('img')
  7643. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7644. _limg.style = "width: 26px;margin-right: 10px;"
  7645. _lchild.appendChild(_limg)
  7646. let _lspan = document.createElement('span')
  7647. _lspan.innerHTML = "上传中..."
  7648. _lchild.appendChild(_lspan)
  7649. _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%);"
  7650. _loading.appendChild(_lchild)
  7651. var _box = $$('div', {
  7652. "style": {
  7653. "position": "relative",
  7654. "width": "100%",
  7655. "height": "100%",
  7656. },
  7657. })
  7658. _box.appendChild(_loading)
  7659. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7660. switch (str) {
  7661. case "whiteboard":
  7662. aTool = 1;
  7663. _iframe = $$("iframe", {
  7664. "frameborder": "no",
  7665. "border": "0",
  7666. "scrolling ": "no",
  7667. "style": {
  7668. "cssText": "border:0;width:100%;height:100%"
  7669. },
  7670. "src": "https://beta.iwb.cocorobo.cn/"
  7671. })
  7672. _box.appendChild(_iframe);
  7673. _box.appendChild(_jie);
  7674. _formdiv = new U.UF.UI.form(
  7675. "电子白板",
  7676. _box, {
  7677. "id": "whiteboards" + cid + stage + task + tool,
  7678. "style": {
  7679. "width": "90%",
  7680. "height": "90%",
  7681. "overflow": 'hidden'
  7682. },
  7683. "onresize": function () { }
  7684. }, {
  7685. closecallback: function () { }
  7686. }, {
  7687. "style": {
  7688. "height": "36px"
  7689. }
  7690. }).form; //创建窗体
  7691. _taskbar = {
  7692. "id": str + _formdiv.id,
  7693. "style": {
  7694. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7695. },
  7696. "name": "电子白板",
  7697. "forms": _formdiv,
  7698. "click": function () {
  7699. U.MD.D.I.openApplication(str, obj, info);
  7700. }
  7701. }
  7702. break;
  7703. case "mind":
  7704. aTool = 3;
  7705. _iframe = $$("iframe", {
  7706. "frameborder": "no",
  7707. "border": "0",
  7708. "scrolling ": "no",
  7709. "style": {
  7710. "cssText": "border:0;width:100%;height:100%"
  7711. },
  7712. "src": "/kityminder-editor/dist/index.html"
  7713. });
  7714. _box.appendChild(_iframe);
  7715. _box.appendChild(_jie);
  7716. _formdiv = new U.UF.UI.form(
  7717. "思维导图",
  7718. _box, { //"/jsmind/example/demo.html"
  7719. "id": "minds" + cid + stage + task + tool,
  7720. "style": {
  7721. "width": "90%",
  7722. "height": "90%",
  7723. "overflow": 'hidden'
  7724. },
  7725. "onresize": function () { }
  7726. }, {
  7727. closecallback: function () { }
  7728. }, {
  7729. "style": {
  7730. "height": "36px"
  7731. }
  7732. }).form; //创建窗体
  7733. _taskbar = {
  7734. "id": str + _formdiv.id,
  7735. "style": {
  7736. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7737. },
  7738. "name": "思维导图",
  7739. "forms": _formdiv,
  7740. "click": function () {
  7741. U.MD.D.I.openApplication(str, obj, info);
  7742. }
  7743. }
  7744. break;
  7745. case "doc":
  7746. aTool = 6;
  7747. _iframe = $$("iframe", {
  7748. "frameborder": "no",
  7749. "border": "0",
  7750. "scrolling ": "no",
  7751. "style": {
  7752. "cssText": "border:0;width:100%;height:100%"
  7753. },
  7754. "src": "/Office/Word/WordEditArea.htm"
  7755. })
  7756. _box.appendChild(_iframe);
  7757. _box.appendChild(_jie);
  7758. _formdiv = new U.UF.UI.form(
  7759. "协同文档",
  7760. _box, {
  7761. "id": "docs" + cid + stage + task + tool,
  7762. "style": {
  7763. "width": "90%",
  7764. "height": "90%",
  7765. "overflow": 'hidden'
  7766. },
  7767. "onresize": function () { }
  7768. }, {
  7769. closecallback: function () { }
  7770. }, {
  7771. "style": {
  7772. "height": "36px"
  7773. }
  7774. }).form; //创建窗体
  7775. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7776. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7777. })
  7778. _taskbar = {
  7779. "id": str + _formdiv.id,
  7780. "style": {
  7781. "backgroundImage": "url(/img/icon/doc.png)"
  7782. },
  7783. "name": "协同文档",
  7784. "forms": _formdiv,
  7785. "click": function () {
  7786. U.MD.D.I.openApplication(str, obj, info);
  7787. }
  7788. }
  7789. break;
  7790. }
  7791. const script1 = document.createElement("script");
  7792. script1.type = "text/javascript";
  7793. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7794. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7795. const script2 = document.createElement("script");
  7796. script2.type = "text/javascript";
  7797. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7798. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7799. const script3 = document.createElement("script");
  7800. script3.type = "text/javascript";
  7801. script3.charset = "UTF-8";
  7802. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7803. const script4 = document.createElement("script");
  7804. script4.type = "text/javascript";
  7805. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7806. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7807. if (_iframe) {
  7808. if (str == 'doc') {
  7809. _iframe = _formdiv.querySelector('iframe')
  7810. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7811. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7812. _iframe.contentWindow.document.body.appendChild(script1);
  7813. _iframe.contentWindow.document.body.appendChild(script2);
  7814. // _iframe.contentWindow.document.body.appendChild(script3);
  7815. _iframe.contentWindow.document.body.appendChild(script4);
  7816. })
  7817. if (onloadListener) {
  7818. _iframe.contentDocument.location.reload()
  7819. } else {
  7820. _iframe.contentDocument.location.reload()
  7821. }
  7822. } else if (str == 'mind') {
  7823. _iframe = _formdiv.querySelector('iframe')
  7824. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7825. _iframe.contentWindow.document.body.appendChild(script1);
  7826. _iframe.contentWindow.document.body.appendChild(script2);
  7827. _iframe.contentWindow.document.body.appendChild(script4);
  7828. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7829. })
  7830. if (onloadListener) {
  7831. _iframe.contentDocument.location.reload()
  7832. } else {
  7833. _iframe.contentDocument.location.reload()
  7834. }
  7835. } else {
  7836. _iframe.onload = () => {
  7837. _iframe.contentWindow.document.body.appendChild(script1);
  7838. _iframe.contentWindow.document.body.appendChild(script2);
  7839. // _iframe.contentWindow.document.body.appendChild(script3);
  7840. _iframe.contentWindow.document.body.appendChild(script4);
  7841. };
  7842. }
  7843. _jie.onclick = async () => {
  7844. let text = ''
  7845. if (aTool == 6) {
  7846. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7847. } else if (aTool == 3) {
  7848. text = await U.MD.D.I.getEditorContent(_iframe);
  7849. }
  7850. _loading.style.display = 'flex'
  7851. console.log(_loading);
  7852. var _ajs = _iframe.contentWindow.document.createElement("script");
  7853. _ajs.type = "text/javascript";
  7854. _ajs.innerHTML =
  7855. // 'console.log(' + _loading + ');\n' +
  7856. 'var _js = document.createElement("script");\n' +
  7857. '_js.type="text/javascript";\n' +
  7858. '_js.charset="UTF-8";\n' +
  7859. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7860. "_js.onload = function(){\n" +
  7861. ' var a = document.getElementsByTagName("img")\n' +
  7862. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7863. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7864. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7865. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7866. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7867. "beforeUpload_shishi(file," +
  7868. "'" +
  7869. _userid +
  7870. "'" +
  7871. ", " +
  7872. "'" +
  7873. _cid +
  7874. "'" +
  7875. ", " +
  7876. "'" +
  7877. _stage +
  7878. "'" +
  7879. ", " +
  7880. "'" +
  7881. _task +
  7882. "'" +
  7883. ", " +
  7884. "'" +
  7885. _tool +
  7886. "'" +
  7887. ", " +
  7888. "'" +
  7889. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7890. "'" +
  7891. ", " +
  7892. "'" +
  7893. aTool +
  7894. "'" +
  7895. ", " +
  7896. "`" +
  7897. text +
  7898. "`" +
  7899. ")\n" +
  7900. " });\n" +
  7901. "}\n" +
  7902. "document.head.appendChild(_js);\n";
  7903. _iframe.contentWindow.document.head.appendChild(_ajs);
  7904. }
  7905. }
  7906. //U.MD.D.I.openClick(str);
  7907. //如果有任务栏信息
  7908. // if (_taskbar) {
  7909. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7910. // }
  7911. }
  7912. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7913. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7914. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7915. _userinfo = US.userInfo, //登录用户信息
  7916. _userid = US.userInfo.userid //登录用户id
  7917. let _iframe;
  7918. let _cid = cid,
  7919. _stage = stage,
  7920. _task = task,
  7921. _tool = tool;
  7922. var _jie = $$("div", {
  7923. "style": {
  7924. "position": "absolute",
  7925. "bottom": "50px",
  7926. "right": "50px",
  7927. "zIndex": "9999",
  7928. "backgroundColor": "#2268bc",
  7929. "color": "#fff",
  7930. "padding": "12px 20px",
  7931. "cursor": "pointer",
  7932. "borderRadius": "4px",
  7933. },
  7934. "innerHTML": "确认并提交"
  7935. })
  7936. let aTool = ''
  7937. let _loading = document.createElement('div')
  7938. _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;"
  7939. // _loading.id = "";
  7940. let _lchild = document.createElement('div')
  7941. let _limg = document.createElement('img')
  7942. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7943. _limg.style = "width: 26px;margin-right: 10px;"
  7944. _lchild.appendChild(_limg)
  7945. let _lspan = document.createElement('span')
  7946. _lspan.innerHTML = "上传中..."
  7947. _lchild.appendChild(_lspan)
  7948. _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%);"
  7949. _loading.appendChild(_lchild)
  7950. var _box = $$('div', {
  7951. "style": {
  7952. "position": "relative",
  7953. "width": "100%",
  7954. "height": "100%",
  7955. },
  7956. })
  7957. _box.appendChild(_loading)
  7958. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7959. switch (str) {
  7960. case "whiteboard":
  7961. aTool = 1;
  7962. _iframe = $$("iframe", {
  7963. "frameborder": "no",
  7964. "border": "0",
  7965. "scrolling ": "no",
  7966. "style": {
  7967. "cssText": "border:0;width:100%;height:100%"
  7968. },
  7969. "src": "https://beta.iwb.cocorobo.cn/"
  7970. })
  7971. _box.appendChild(_iframe);
  7972. _box.appendChild(_jie);
  7973. _formdiv = new U.UF.UI.form(
  7974. "电子白板",
  7975. _box, {
  7976. "id": "whiteboards" + cid + stage + task + tool,
  7977. "style": {
  7978. "width": "90%",
  7979. "height": "90%",
  7980. "overflow": 'hidden'
  7981. },
  7982. "onresize": function () { }
  7983. }, {
  7984. closecallback: function () { }
  7985. }, {
  7986. "style": {
  7987. "height": "36px"
  7988. }
  7989. }).form; //创建窗体
  7990. _taskbar = {
  7991. "id": str + _formdiv.id,
  7992. "style": {
  7993. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7994. },
  7995. "name": "电子白板",
  7996. "forms": _formdiv,
  7997. "click": function () {
  7998. U.MD.D.I.openApplication(str, obj, info);
  7999. }
  8000. }
  8001. break;
  8002. case "mind":
  8003. aTool = 3;
  8004. _iframe = $$("iframe", {
  8005. "frameborder": "no",
  8006. "border": "0",
  8007. "scrolling ": "no",
  8008. "style": {
  8009. "cssText": "border:0;width:100%;height:100%"
  8010. },
  8011. "src": "/kityminder-editor/dist/index.html"
  8012. });
  8013. _box.appendChild(_iframe);
  8014. _box.appendChild(_jie);
  8015. _formdiv = new U.UF.UI.form(
  8016. "思维导图",
  8017. _box, { //"/jsmind/example/demo.html"
  8018. "id": "minds" + cid + stage + task + tool,
  8019. "style": {
  8020. "width": "90%",
  8021. "height": "90%",
  8022. "overflow": 'hidden'
  8023. },
  8024. "onresize": function () { }
  8025. }, {
  8026. closecallback: function () { }
  8027. }, {
  8028. "style": {
  8029. "height": "36px"
  8030. }
  8031. }).form; //创建窗体
  8032. _taskbar = {
  8033. "id": str + _formdiv.id,
  8034. "style": {
  8035. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8036. },
  8037. "name": "思维导图",
  8038. "forms": _formdiv,
  8039. "click": function () {
  8040. U.MD.D.I.openApplication(str, obj, info);
  8041. }
  8042. }
  8043. break;
  8044. case "doc":
  8045. aTool = 6;
  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": "/Office/Word/WordEditArea.htm"
  8054. })
  8055. _box.appendChild(_iframe);
  8056. _box.appendChild(_jie);
  8057. _formdiv = new U.UF.UI.form(
  8058. "协同文档",
  8059. _box, {
  8060. "id": "docs" + 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. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8075. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8076. })
  8077. _taskbar = {
  8078. "id": str + _formdiv.id,
  8079. "style": {
  8080. "backgroundImage": "url(/img/icon/doc.png)"
  8081. },
  8082. "name": "协同文档",
  8083. "forms": _formdiv,
  8084. "click": function () {
  8085. U.MD.D.I.openApplication(str, obj, info);
  8086. }
  8087. }
  8088. break;
  8089. }
  8090. const script1 = document.createElement("script");
  8091. script1.type = "text/javascript";
  8092. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8093. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8094. const script2 = document.createElement("script");
  8095. script2.type = "text/javascript";
  8096. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8097. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8098. const script3 = document.createElement("script");
  8099. script3.type = "text/javascript";
  8100. script3.charset = "UTF-8";
  8101. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8102. const script4 = document.createElement("script");
  8103. script4.type = "text/javascript";
  8104. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8105. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8106. if (_iframe) {
  8107. if (str == 'doc') {
  8108. _iframe = _formdiv.querySelector('iframe')
  8109. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8110. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8111. _iframe.contentWindow.document.body.appendChild(script1);
  8112. _iframe.contentWindow.document.body.appendChild(script2);
  8113. // _iframe.contentWindow.document.body.appendChild(script3);
  8114. _iframe.contentWindow.document.body.appendChild(script4);
  8115. })
  8116. if (onloadListener) {
  8117. _iframe.contentDocument.location.reload()
  8118. } else {
  8119. _iframe.contentDocument.location.reload()
  8120. }
  8121. } else if (str == 'mind') {
  8122. _iframe = _formdiv.querySelector('iframe')
  8123. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8124. _iframe.contentWindow.document.body.appendChild(script1);
  8125. _iframe.contentWindow.document.body.appendChild(script2);
  8126. _iframe.contentWindow.document.body.appendChild(script4);
  8127. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8128. })
  8129. if (onloadListener) {
  8130. _iframe.contentDocument.location.reload()
  8131. } else {
  8132. _iframe.contentDocument.location.reload()
  8133. }
  8134. } else {
  8135. _iframe.onload = () => {
  8136. _iframe.contentWindow.document.body.appendChild(script1);
  8137. _iframe.contentWindow.document.body.appendChild(script2);
  8138. // _iframe.contentWindow.document.body.appendChild(script3);
  8139. _iframe.contentWindow.document.body.appendChild(script4);
  8140. };
  8141. }
  8142. _jie.onclick = async () => {
  8143. let text = ''
  8144. if (aTool == 6) {
  8145. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8146. } else if (aTool == 3) {
  8147. text = await U.MD.D.I.getEditorContent(_iframe);
  8148. }
  8149. _loading.style.display = 'flex'
  8150. console.log(_loading);
  8151. var _ajs = _iframe.contentWindow.document.createElement("script");
  8152. _ajs.type = "text/javascript";
  8153. _ajs.innerHTML =
  8154. // 'console.log(' + _loading + ');\n' +
  8155. 'var _js = document.createElement("script");\n' +
  8156. '_js.type="text/javascript";\n' +
  8157. '_js.charset="UTF-8";\n' +
  8158. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8159. "_js.onload = function(){\n" +
  8160. ' var a = document.getElementsByTagName("img")\n' +
  8161. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8162. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8163. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8164. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8165. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8166. "beforeUpload_shishi(file," +
  8167. "'" +
  8168. _userid +
  8169. "'" +
  8170. ", " +
  8171. "'" +
  8172. _cid +
  8173. "'" +
  8174. ", " +
  8175. "'" +
  8176. _stage +
  8177. "'" +
  8178. ", " +
  8179. "'" +
  8180. _task +
  8181. "'" +
  8182. ", " +
  8183. "'" +
  8184. _tool +
  8185. "'" +
  8186. ", " +
  8187. "'" +
  8188. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8189. "'" +
  8190. ", " +
  8191. "'" +
  8192. aTool +
  8193. "'" +
  8194. ", " +
  8195. "`" +
  8196. text +
  8197. "`" +
  8198. ")\n" +
  8199. " });\n" +
  8200. "}\n" +
  8201. "document.head.appendChild(_js);\n";
  8202. _iframe.contentWindow.document.head.appendChild(_ajs);
  8203. }
  8204. }
  8205. //U.MD.D.I.openClick(str);
  8206. //如果有任务栏信息
  8207. // if (_taskbar) {
  8208. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8209. // }
  8210. }
  8211. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8212. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8213. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8214. _userinfo = US.userInfo, //登录用户信息
  8215. _userid = US.userInfo.userid //登录用户id
  8216. let _iframe;
  8217. let _cid = cid,
  8218. _stage = stage,
  8219. _task = task,
  8220. _tool = tool;
  8221. var _jie = $$("div", {
  8222. "style": {
  8223. "position": "absolute",
  8224. "bottom": "50px",
  8225. "right": "50px",
  8226. "zIndex": "9999",
  8227. "backgroundColor": "#2268bc",
  8228. "color": "#fff",
  8229. "padding": "12px 20px",
  8230. "cursor": "pointer",
  8231. "borderRadius": "4px",
  8232. },
  8233. "innerHTML": "上传模板"
  8234. })
  8235. let aTool = ''
  8236. let _loading = document.createElement('div')
  8237. _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;"
  8238. // _loading.id = "";
  8239. let _lchild = document.createElement('div')
  8240. let _limg = document.createElement('img')
  8241. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8242. _limg.style = "width: 26px;margin-right: 10px;"
  8243. _lchild.appendChild(_limg)
  8244. let _lspan = document.createElement('span')
  8245. _lspan.innerHTML = "上传中..."
  8246. _lchild.appendChild(_lspan)
  8247. _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%);"
  8248. _loading.appendChild(_lchild)
  8249. var _box = $$('div', {
  8250. "style": {
  8251. "position": "relative",
  8252. "width": "100%",
  8253. "height": "100%",
  8254. },
  8255. })
  8256. _box.appendChild(_loading)
  8257. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8258. switch (str) {
  8259. case "whiteboard":
  8260. aTool = 1;
  8261. _iframe = $$("iframe", {
  8262. "frameborder": "no",
  8263. "border": "0",
  8264. "scrolling ": "no",
  8265. "style": {
  8266. "cssText": "border:0;width:100%;height:100%"
  8267. },
  8268. "src": "https://beta.iwb.cocorobo.cn/"
  8269. })
  8270. _box.appendChild(_iframe);
  8271. _box.appendChild(_jie);
  8272. _formdiv = new U.UF.UI.form(
  8273. "电子白板",
  8274. _box, {
  8275. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8276. "style": {
  8277. "width": "90%",
  8278. "height": "90%",
  8279. "overflow": 'hidden'
  8280. },
  8281. "onresize": function () { }
  8282. }, {
  8283. closecallback: function () { }
  8284. }, {
  8285. "style": {
  8286. "height": "36px"
  8287. }
  8288. }).form; //创建窗体
  8289. _taskbar = {
  8290. "id": str + _formdiv.id,
  8291. "style": {
  8292. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8293. },
  8294. "name": "电子白板",
  8295. "forms": _formdiv,
  8296. "click": function () {
  8297. U.MD.D.I.openApplication(str, obj, info);
  8298. }
  8299. }
  8300. break;
  8301. case "mind":
  8302. aTool = 3;
  8303. _iframe = $$("iframe", {
  8304. "frameborder": "no",
  8305. "border": "0",
  8306. "scrolling ": "no",
  8307. "style": {
  8308. "cssText": "border:0;width:100%;height:100%"
  8309. },
  8310. "src": "/kityminder-editor/dist/index.html"
  8311. });
  8312. _box.appendChild(_iframe);
  8313. _box.appendChild(_jie);
  8314. _formdiv = new U.UF.UI.form(
  8315. "思维导图",
  8316. _box, { //"/jsmind/example/demo.html"
  8317. "id": "minds_Yu" + cid + stage + task + tool,
  8318. "style": {
  8319. "width": "90%",
  8320. "height": "90%",
  8321. "overflow": 'hidden'
  8322. },
  8323. "onresize": function () { }
  8324. }, {
  8325. closecallback: function () { }
  8326. }, {
  8327. "style": {
  8328. "height": "36px"
  8329. }
  8330. }).form; //创建窗体
  8331. _taskbar = {
  8332. "id": str + _formdiv.id,
  8333. "style": {
  8334. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8335. },
  8336. "name": "思维导图",
  8337. "forms": _formdiv,
  8338. "click": function () {
  8339. U.MD.D.I.openApplication(str, obj, info);
  8340. }
  8341. }
  8342. break;
  8343. case "doc":
  8344. aTool = 6;
  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": "/Office/Word/WordEditArea.htm"
  8353. })
  8354. _box.appendChild(_iframe);
  8355. _box.appendChild(_jie);
  8356. _formdiv = new U.UF.UI.form(
  8357. "协同文档",
  8358. _box, {
  8359. "id": "docs_Yu" + 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. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8374. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8375. })
  8376. _taskbar = {
  8377. "id": str + _formdiv.id,
  8378. "style": {
  8379. "backgroundImage": "url(/img/icon/doc.png)"
  8380. },
  8381. "name": "协同文档",
  8382. "forms": _formdiv,
  8383. "click": function () {
  8384. U.MD.D.I.openApplication(str, obj, info);
  8385. }
  8386. }
  8387. break;
  8388. case "CocoPi":
  8389. aTool = 57;
  8390. _iframe = $$("iframe", {
  8391. "allowpaymentrequest": "allowpaymentrequest",
  8392. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8393. "webkitallowfullscreen": "",
  8394. "mozallowfullscreen": "",
  8395. "frameborder": "no",
  8396. "border": "0",
  8397. "scrolling ": "no",
  8398. "style": {
  8399. "cssText": "border:0;width:100%;height:100%"
  8400. },
  8401. "src": "https://pi.cocorobo.cn/"
  8402. })
  8403. _box.appendChild(_iframe);
  8404. _box.appendChild(_jie);
  8405. _formdiv = new U.UF.UI.form(
  8406. "CocoPi",
  8407. _box, {
  8408. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8409. "style": {
  8410. "width": "90%",
  8411. "height": "90%",
  8412. "overflow": 'hidden'
  8413. },
  8414. "onresize": function () { }
  8415. }, {
  8416. closecallback: function () { }
  8417. }, {
  8418. "style": {
  8419. "height": "36px"
  8420. }
  8421. }).form; //创建窗体
  8422. _taskbar = {
  8423. "id": str + _formdiv.id,
  8424. "style": {
  8425. "backgroundImage": "url(/img/icon/cocopi.png)"
  8426. },
  8427. "name": "CocoPi",
  8428. "forms": _formdiv,
  8429. "click": function () {
  8430. U.MD.D.I.openApplication(str, obj, info);
  8431. }
  8432. }
  8433. break;
  8434. }
  8435. if (_iframe) {
  8436. if (str == 'doc') {
  8437. _iframe = _formdiv.querySelector('iframe')
  8438. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8439. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8440. })
  8441. if (onloadListener) {
  8442. _iframe.contentDocument.location.reload()
  8443. } else {
  8444. _iframe.contentDocument.location.reload()
  8445. }
  8446. } else if (str == 'mind') {
  8447. _iframe = _formdiv.querySelector('iframe')
  8448. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8449. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8450. })
  8451. if (onloadListener) {
  8452. _iframe.contentDocument.location.reload()
  8453. } else {
  8454. _iframe.contentDocument.location.reload()
  8455. }
  8456. } else if (str == 'whiteboard') {
  8457. _iframe = _formdiv.querySelector('iframe')
  8458. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8459. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8460. })
  8461. // if (onloadListener) {
  8462. // try {
  8463. // _iframe.src += "?cocorobo="+new Date().getTime()
  8464. // _iframe.contentWindow.document.location.reload()
  8465. // } catch (error) {
  8466. // }
  8467. // } else {
  8468. // _iframe.contentDocument.location.reload()
  8469. // }
  8470. } else if (str == 'CocoPi') {
  8471. _iframe = _formdiv.querySelector('iframe')
  8472. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8473. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8474. })
  8475. if (onloadListener) {
  8476. _iframe.contentDocument.location.reload()
  8477. } else {
  8478. _iframe.contentDocument.location.reload()
  8479. }
  8480. } else {
  8481. _iframe.onload = () => { };
  8482. }
  8483. _jie.onclick = async () => {
  8484. let text = ''
  8485. let type = '2'
  8486. if (aTool == 1) {
  8487. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8488. type = '3'
  8489. } else if (aTool == 6) {
  8490. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8491. type = '1'
  8492. } else if (aTool == 3) {
  8493. text = await U.MD.D.I.getEditorContent(_iframe);
  8494. type = '2'
  8495. } else if (aTool == 57) {
  8496. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8497. type = '4'
  8498. }
  8499. _loading.style.display = 'flex'
  8500. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8501. }
  8502. }
  8503. //U.MD.D.I.openClick(str);
  8504. //如果有任务栏信息
  8505. // if (_taskbar) {
  8506. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8507. // }
  8508. }
  8509. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8510. var xmlhttp;
  8511. var Mac, Sn, DeviceId
  8512. if (window.XMLHttpRequest) {
  8513. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8514. xmlhttp = new XMLHttpRequest();
  8515. } else {
  8516. // IE6, IE5 浏览器执行代码
  8517. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8518. }
  8519. xmlhttp.onreadystatechange = function () {
  8520. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8521. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8522. // resolve(res.value[0][0].text);
  8523. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8524. }
  8525. }
  8526. }
  8527. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8528. xmlhttp.send();
  8529. }
  8530. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8531. var xmlhttp;
  8532. var Mac, Sn, DeviceId
  8533. if (window.XMLHttpRequest) {
  8534. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8535. xmlhttp = new XMLHttpRequest();
  8536. } else {
  8537. // IE6, IE5 浏览器执行代码
  8538. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8539. }
  8540. xmlhttp.onreadystatechange = function () {
  8541. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8542. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8543. // resolve(res.value[0][0].text);
  8544. if (type == '2') {
  8545. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8546. } else if (type == '3') {
  8547. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8548. } else if (type == '4') {
  8549. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8550. }
  8551. } else {
  8552. if (type == '2') {
  8553. iframe.contentWindow.editor.minder.importData('json', '')
  8554. } else if (type == '3') {
  8555. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8556. } else if (type == '4') {
  8557. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8558. }
  8559. }
  8560. }
  8561. }
  8562. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8563. xmlhttp.send();
  8564. }
  8565. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8566. var xmlhttp;
  8567. var Mac, Sn, DeviceId
  8568. if (window.XMLHttpRequest) {
  8569. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8570. xmlhttp = new XMLHttpRequest();
  8571. } else {
  8572. // IE6, IE5 浏览器执行代码
  8573. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8574. }
  8575. xmlhttp.onreadystatechange = function () {
  8576. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8577. if (xmlhttp.response) {
  8578. // resolve(res.value[0][0].text);
  8579. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8580. // $(fileInput).val('');
  8581. // });
  8582. span.innerHTML = '上传成功'
  8583. setTimeout(() => {
  8584. loading.style.display = 'none'
  8585. }, 1000);
  8586. }
  8587. }
  8588. }
  8589. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8590. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8591. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8592. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8593. // 设置请求头,表示请求体的编码格式
  8594. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8595. // 设置请求体,使用url-encoded格式的数据
  8596. }
  8597. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8598. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8599. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8600. _userinfo = US.userInfo, //登录用户信息
  8601. _userid = US.userInfo.userid //登录用户id
  8602. let _iframe;
  8603. let _cid = cid,
  8604. _stage = stage,
  8605. _task = task,
  8606. _tool = tool;
  8607. var _jie = $$("div", {
  8608. "style": {
  8609. "position": "absolute",
  8610. "bottom": "50px",
  8611. "right": "50px",
  8612. "zIndex": "9999",
  8613. "backgroundColor": "#2268bc",
  8614. "color": "#fff",
  8615. "padding": "12px 20px",
  8616. "cursor": "pointer",
  8617. "borderRadius": "4px",
  8618. },
  8619. "innerHTML": "提交作业"
  8620. })
  8621. let aTool = ''
  8622. let _loading = document.createElement('div')
  8623. _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;"
  8624. // _loading.id = "";
  8625. let _lchild = document.createElement('div')
  8626. let _limg = document.createElement('img')
  8627. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8628. _limg.style = "width: 26px;margin-right: 10px;"
  8629. _lchild.appendChild(_limg)
  8630. let _lspan = document.createElement('span')
  8631. _lspan.innerHTML = "上传中..."
  8632. _lchild.appendChild(_lspan)
  8633. _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%);"
  8634. _loading.appendChild(_lchild)
  8635. var _box = $$('div', {
  8636. "style": {
  8637. "position": "relative",
  8638. "width": "100%",
  8639. "height": "100%",
  8640. },
  8641. })
  8642. _box.appendChild(_loading)
  8643. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8644. switch (str) {
  8645. case "CocoPi":
  8646. aTool = 57;
  8647. _iframe = $$("iframe", {
  8648. "allowpaymentrequest": "allowpaymentrequest",
  8649. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8650. "webkitallowfullscreen": "",
  8651. "mozallowfullscreen": "",
  8652. "frameborder": "no",
  8653. "border": "0",
  8654. "scrolling ": "no",
  8655. "style": {
  8656. "cssText": "border:0;width:100%;height:100%"
  8657. },
  8658. "src": "https://pi.cocorobo.cn/"
  8659. })
  8660. _box.appendChild(_iframe);
  8661. _box.appendChild(_jie);
  8662. _formdiv = new U.UF.UI.form(
  8663. "CocoPi",
  8664. _box, {
  8665. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8666. "style": {
  8667. "width": "90%",
  8668. "height": "90%",
  8669. "overflow": 'hidden'
  8670. },
  8671. "onresize": function () { }
  8672. }, {
  8673. closecallback: function () { }
  8674. }, {
  8675. "style": {
  8676. "height": "36px"
  8677. }
  8678. }).form; //创建窗体
  8679. _taskbar = {
  8680. "id": str + _formdiv.id,
  8681. "style": {
  8682. "backgroundImage": "url(/img/icon/cocopi.png)"
  8683. },
  8684. "name": "CocoPi",
  8685. "forms": _formdiv,
  8686. "click": function () {
  8687. U.MD.D.I.openApplication(str, obj, info);
  8688. }
  8689. }
  8690. break;
  8691. }
  8692. if (_iframe) {
  8693. if (str == 'CocoPi') {
  8694. _iframe = _formdiv.querySelector('iframe')
  8695. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8696. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8697. })
  8698. if (onloadListener) {
  8699. _iframe.contentDocument.location.reload()
  8700. } else {
  8701. _iframe.contentDocument.location.reload()
  8702. }
  8703. }
  8704. _jie.onclick = async () => {
  8705. let text = ''
  8706. if (aTool == 57) {
  8707. text = _iframe.contentWindow.getLoadXmlStr()
  8708. }
  8709. _loading.style.display = 'flex'
  8710. console.log(_loading);
  8711. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8712. _loading.style.display = 'none'
  8713. let _div = document.createElement('div')
  8714. _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;"
  8715. let _inner = document.createElement('div')
  8716. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8717. _inner.innerHTML = "上传成功"
  8718. _div.appendChild(_inner)
  8719. _iframe.contentWindow.window.document.body.appendChild(_div)
  8720. _div.onclick = () => {
  8721. _iframe.contentWindow.window.document.body.removeChild(_div)
  8722. }
  8723. setTimeout(() => {
  8724. _iframe.contentWindow.window.document.body.removeChild(_div)
  8725. }, 1000);
  8726. }, [], { "type": "POST", "withCredentials": true });
  8727. }
  8728. }
  8729. }
  8730. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8731. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8732. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8733. _userid = student.userid, //登录用户id
  8734. _username = student.student //用户名字
  8735. let _iframe;
  8736. let _cid = cid,
  8737. _stage = stage,
  8738. _task = task,
  8739. _tool = tool;
  8740. var _jie = $$("div", {
  8741. "style": {
  8742. "position": "absolute",
  8743. "bottom": "50px",
  8744. "right": "50px",
  8745. "zIndex": "9999",
  8746. "backgroundColor": "#2268bc",
  8747. "color": "#fff",
  8748. "padding": "12px 20px",
  8749. "cursor": "pointer",
  8750. "borderRadius": "4px",
  8751. },
  8752. "innerHTML": "提交作业"
  8753. })
  8754. let aTool = ''
  8755. let _loading = document.createElement('div')
  8756. _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;"
  8757. // _loading.id = "";
  8758. let _lchild = document.createElement('div')
  8759. let _limg = document.createElement('img')
  8760. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8761. _limg.style = "width: 26px;margin-right: 10px;"
  8762. _lchild.appendChild(_limg)
  8763. let _lspan = document.createElement('span')
  8764. _lspan.innerHTML = "上传中..."
  8765. _lchild.appendChild(_lspan)
  8766. _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%);"
  8767. _loading.appendChild(_lchild)
  8768. var _box = $$('div', {
  8769. "style": {
  8770. "position": "relative",
  8771. "width": "100%",
  8772. "height": "100%",
  8773. },
  8774. })
  8775. _box.appendChild(_loading)
  8776. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8777. switch (str) {
  8778. case "CocoPi":
  8779. aTool = 57;
  8780. _iframe = $$("iframe", {
  8781. "allowpaymentrequest": "allowpaymentrequest",
  8782. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8783. "webkitallowfullscreen": "",
  8784. "mozallowfullscreen": "",
  8785. "frameborder": "no",
  8786. "border": "0",
  8787. "scrolling ": "no",
  8788. "style": {
  8789. "cssText": "border:0;width:100%;height:100%"
  8790. },
  8791. "src": "https://pi.cocorobo.cn/"
  8792. })
  8793. _box.appendChild(_iframe);
  8794. _box.appendChild(_jie);
  8795. _formdiv = new U.UF.UI.form(
  8796. "CocoPi-" + _username,
  8797. _box, {
  8798. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8799. "style": {
  8800. "width": "90%",
  8801. "height": "90%",
  8802. "overflow": 'hidden'
  8803. },
  8804. "onresize": function () { }
  8805. }, {
  8806. closecallback: function () { }
  8807. }, {
  8808. "style": {
  8809. "height": "36px"
  8810. }
  8811. }).form; //创建窗体
  8812. _taskbar = {
  8813. "id": str + _formdiv.id,
  8814. "style": {
  8815. "backgroundImage": "url(/img/icon/cocopi.png)"
  8816. },
  8817. "name": "CocoPi",
  8818. "forms": _formdiv,
  8819. "click": function () {
  8820. U.MD.D.I.openApplication(str, obj, info);
  8821. }
  8822. }
  8823. break;
  8824. }
  8825. if (_iframe) {
  8826. if (str == 'CocoPi') {
  8827. _iframe = _formdiv.querySelector('iframe')
  8828. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8829. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8830. })
  8831. if (onloadListener) {
  8832. _iframe.contentDocument.location.reload()
  8833. } else {
  8834. _iframe.contentDocument.location.reload()
  8835. }
  8836. }
  8837. _jie.onclick = async () => {
  8838. let text = ''
  8839. if (aTool == 57) {
  8840. text = _iframe.contentWindow.getLoadXmlStr()
  8841. }
  8842. _loading.style.display = 'flex'
  8843. console.log(_loading);
  8844. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8845. _loading.style.display = 'none'
  8846. let _div = document.createElement('div')
  8847. _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;"
  8848. let _inner = document.createElement('div')
  8849. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8850. _inner.innerHTML = "上传成功"
  8851. _div.appendChild(_inner)
  8852. _iframe.contentWindow.window.document.body.appendChild(_div)
  8853. _div.onclick = () => {
  8854. _iframe.contentWindow.window.document.body.removeChild(_div)
  8855. }
  8856. setTimeout(() => {
  8857. _iframe.contentWindow.window.document.body.removeChild(_div)
  8858. }, 1000);
  8859. }, [], { "type": "POST", "withCredentials": true });
  8860. }
  8861. }
  8862. }
  8863. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8864. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8865. if (res.value[0].length > 0) {
  8866. if (atool == 57) {
  8867. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8868. }
  8869. } else {
  8870. if (atool == 57) {
  8871. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8872. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8873. }
  8874. }
  8875. }, [], { "type": "POST", "withCredentials": true });
  8876. }