DeskTop.js 535 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828
  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": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  633. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  634. ];
  635. //教科院实小教师桌面图标的全局变量
  636. U.MD.D.I.siesStudentDeskIcon = [
  637. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  638. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  640. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  641. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  642. ];
  643. //福田
  644. U.MD.D.I.gdjgTeacherDeskIcon = [
  645. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  646. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  647. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  648. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  649. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  650. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  651. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  652. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  653. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  654. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  655. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  656. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. ];
  660. //gdjg
  661. U.MD.D.I.gdjgAdminDeskIcon = [
  662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  664. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  665. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  666. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  667. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  668. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  669. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  670. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  671. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  672. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  674. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  675. ];
  676. //hk
  677. U.MD.D.I.hkteacherDeskIcon = [
  678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  682. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  683. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  684. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  685. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  687. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  688. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  689. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  690. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  691. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  692. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  694. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  695. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  696. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  697. ];
  698. //hk
  699. U.MD.D.I.hkStudentDeskIcon = [
  700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  704. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  705. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkaceteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  729. ];
  730. //hk
  731. U.MD.D.I.hkaceStudentDeskIcon = [
  732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  734. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  735. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  737. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  738. ];
  739. //香海正覺蓮社佛教正覺中學
  740. U.MD.D.I.hkZJLSteacherDeskIcon = [
  741. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  742. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  743. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  744. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  745. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  747. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  748. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  749. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  750. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  751. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  752. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  753. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  754. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  757. ];
  758. //香海正覺蓮社佛教正覺中學
  759. U.MD.D.I.hkZJLSStudentDeskIcon = [
  760. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  764. ];
  765. //云海
  766. U.MD.D.I.yunhaiTeacherDeskIcon = [
  767. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  768. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  769. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  770. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  771. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  773. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  774. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  775. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  776. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  777. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  778. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  779. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  780. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  781. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  782. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  783. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  784. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  785. ];
  786. //福田
  787. U.MD.D.I.heyuanTeacherDeskIcon = [
  788. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  789. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  790. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  791. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  792. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  793. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  794. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  795. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  796. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  800. ];
  801. //福田
  802. U.MD.D.I.heyuanAdminDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  807. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  808. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  809. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  810. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  811. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  812. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  813. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  814. ];
  815. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  816. U.MD.D.I.szherTeacherDeskIcon = [
  817. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  818. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  819. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  820. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  821. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  822. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  823. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  824. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  825. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  826. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  827. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  828. ];
  829. //dsei
  830. U.MD.D.I.dseiTeacherDeskIcon = [
  831. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  832. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  833. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  834. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  835. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  836. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  837. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  838. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  839. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  840. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  841. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  842. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  843. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  844. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  845. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  846. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  847. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  848. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  849. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  850. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  851. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  852. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  853. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  854. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  855. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  856. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  857. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  858. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  859. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  860. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  861. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  862. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  863. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  864. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  865. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  866. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  867. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  868. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  869. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  870. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  871. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  872. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  873. ];
  874. //dsei
  875. U.MD.D.I.dseiAdminDeskIcon = [
  876. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  877. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  878. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  879. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  880. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  881. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  882. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  883. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  884. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  885. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  886. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  887. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  888. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  889. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  890. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  891. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  892. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  893. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  894. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  895. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  896. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  897. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  898. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  899. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  900. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  901. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  902. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  903. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  904. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  905. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  906. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  907. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  908. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  909. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  910. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  911. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  912. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  913. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  914. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  916. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  917. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  918. ];
  919. //dsei
  920. U.MD.D.I.dseiStudentDeskIcon = [
  921. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  927. ];
  928. //未来教育基地
  929. U.MD.D.I.szjkyTeacherDeskIcon = [
  930. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  931. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  932. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  933. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  934. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  935. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  936. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  937. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  938. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  939. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  940. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  941. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  942. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  944. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  945. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  946. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  947. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  948. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  949. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  950. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  951. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  962. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  963. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  964. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  965. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  966. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  967. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  968. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  970. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  971. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  972. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  973. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  974. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  975. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  976. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  977. ];
  978. //未来教育基地
  979. U.MD.D.I.szjkyStudentDeskIcon = [
  980. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  981. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  982. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  983. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  984. ];
  985. //成华教育局
  986. U.MD.D.I.chjyjTeacherDeskIcon = [
  987. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  988. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  989. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  990. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  991. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  992. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  993. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  994. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  995. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  996. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  997. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  998. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  999. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1000. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1001. ];
  1002. //成华教育局chjyj
  1003. U.MD.D.I.chjyjAdminDeskIcon = [
  1004. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1005. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1006. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1007. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1008. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1009. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1010. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1011. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1012. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1013. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1014. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1015. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1016. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1017. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1018. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1019. ];
  1020. //成华教育局chjyj
  1021. U.MD.D.I.chjyjStudentDeskIcon = [
  1022. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1023. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1024. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1025. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1026. ];
  1027. //tpc
  1028. U.MD.D.I.tpcStudentDeskIcon = [
  1029. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1030. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1031. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1032. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1033. ];
  1034. //tpc
  1035. U.MD.D.I.tpcTeacherDeskIcon = [
  1036. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1037. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1038. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1039. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1040. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1041. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1042. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1043. ];
  1044. //tpc
  1045. U.MD.D.I.tpcAdminDeskIcon = [
  1046. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1047. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1048. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1049. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1050. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1051. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1052. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1053. ];
  1054. //THU-IOE
  1055. U.MD.D.I.thuioeTeacherDeskIcon = [
  1056. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1057. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1058. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1059. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1060. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1061. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1062. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1063. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1064. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1065. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1066. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1067. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1068. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1069. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1070. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1071. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1072. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1073. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1074. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1075. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1076. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1077. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1078. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1079. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1080. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1081. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1082. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1083. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1084. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1085. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1086. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1087. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1088. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1089. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1090. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1091. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1092. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1093. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1094. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1095. ];
  1096. //THU-IOE
  1097. U.MD.D.I.thuioeStudentDeskIcon = [
  1098. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1099. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1100. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1101. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1102. ];
  1103. //jccssyl
  1104. U.MD.D.I.jccssylTeacherDeskIcon = [
  1105. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1106. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1107. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1108. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1109. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1110. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1111. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1112. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1113. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1114. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1115. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1116. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1117. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1118. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1119. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1120. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1121. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1122. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1123. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1124. ];
  1125. //jccssyl
  1126. U.MD.D.I.jccssylStudentDeskIcon = [
  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. //cale
  1133. U.MD.D.I.caleTeacherDeskIcon = [
  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. //cale
  1155. U.MD.D.I.caleStudentDeskIcon = [
  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. //lqwmsgzs
  1162. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1170. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1171. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1172. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1173. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1174. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1175. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1176. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1177. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1178. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1179. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1180. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1181. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1182. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1183. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1184. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1185. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1186. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1187. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1188. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1189. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1190. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1191. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1192. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1193. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1194. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1195. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1196. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1197. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1198. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1199. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1200. ];
  1201. //lqwmsgzs
  1202. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1203. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1204. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1205. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1206. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1207. ];
  1208. //盐田区幼儿园
  1209. U.MD.D.I.ytyTeacherDeskIcon = [
  1210. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1211. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1212. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1213. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1214. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1217. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1218. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1219. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1220. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1221. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1222. ];
  1223. //盐田区幼儿园
  1224. U.MD.D.I.ytyStudentDeskIcon = [
  1225. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1226. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1227. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1228. ];
  1229. //#region 桌面初始化a
  1230. /**
  1231. * 初始化桌面的起始函数
  1232. *
  1233. */
  1234. U.MD.D.I.init = function () {
  1235. if ($("#U_MD_D_K")[0]) {
  1236. //初始化桌面图标
  1237. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1238. // var clickUrl = ':12588/requestIp.php';
  1239. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1240. // U.MD.D.I.Ip = data;
  1241. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1242. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1243. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1244. // })
  1245. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1246. // })
  1247. }
  1248. }
  1249. /**
  1250. * 模式切换
  1251. *
  1252. */
  1253. U.MD.D.I.ModeCheck = function (type) {
  1254. if (US.Config.type == type) {
  1255. return
  1256. }
  1257. US.Config.type = type
  1258. $('.U_PBL_Check .active')[0].className = ''
  1259. if (type == 1) {
  1260. $('.U_PBL_Check div')[0].className = 'active'
  1261. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1262. } else {
  1263. $('.U_PBL_Check div')[1].className = 'active'
  1264. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1265. }
  1266. //初始化桌面图标
  1267. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1268. if (type == 2) {
  1269. U.MD.D.I.openApplication("project")
  1270. }
  1271. }
  1272. /**
  1273. * 隐藏任务栏
  1274. *
  1275. * @param {element} 桌面元素
  1276. */
  1277. U.MD.D.I.hiddenTaskbar = function (el) {
  1278. //任务栏位置变小
  1279. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1280. //桌面的位置变大
  1281. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1282. }
  1283. /**
  1284. * 隐藏任务栏
  1285. *
  1286. * @param {element} 桌面元素
  1287. */
  1288. U.MD.D.I.hiddenTaskbarout = function (el) {
  1289. //任务栏位置变小
  1290. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1291. //任务栏位置变化
  1292. U.selectEl(el).css({ "bottom": "-60px" });
  1293. //桌面的位置变大
  1294. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1295. }
  1296. }
  1297. /**
  1298. * 初始化打印桌面图标
  1299. *
  1300. * @param {element} 桌面元素
  1301. */
  1302. U.MD.D.I.initDesktopIcons = function (el, type) {
  1303. var i, //用于循环
  1304. _content, //桌面图标元素
  1305. _iconcontent, //桌面图标元素
  1306. _frag = $$("frag"), //定义一个碎片元素
  1307. _type = US.userInfo.type,
  1308. _org = US.userInfo.org,
  1309. _oid = US.userInfo.organizeid,
  1310. _role = US.userInfo.role,
  1311. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1312. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1313. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1314. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1315. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1316. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1317. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1318. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1319. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1320. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1321. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1322. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1323. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1324. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1325. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1326. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1327. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1328. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1329. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1330. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1331. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1332. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1333. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1334. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1335. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1336. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1337. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1338. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1339. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1340. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1341. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1342. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1343. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1344. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1345. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1346. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1347. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1348. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1349. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1350. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1351. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1352. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1353. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1354. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1355. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1356. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1357. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1358. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1359. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1360. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1361. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1362. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1363. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1364. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1365. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1366. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1367. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1368. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1369. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1370. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1371. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1372. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1373. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1374. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1375. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1376. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1377. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1378. 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'];
  1379. 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'];
  1380. //清楚桌面图标
  1381. el.innerHTML = "";
  1382. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1383. _teacherDesktopIconInfo.push(
  1384. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1385. { "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)" } },
  1386. )
  1387. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1388. }
  1389. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1390. _teacherDesktopIconInfo.push(
  1391. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1392. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1393. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1394. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1395. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1396. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1397. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1398. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1399. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1400. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1401. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1402. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1403. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1404. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1405. )
  1406. }
  1407. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1408. _teacherDesktopIconInfo.push(
  1409. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1410. )
  1411. }
  1412. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1413. // _teacherDesktopIconInfo.push(
  1414. // )
  1415. // }
  1416. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1417. _teacherDesktopIconInfo.push(
  1418. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1419. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1420. )
  1421. }
  1422. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1423. _teacherDesktopIconInfo.push(
  1424. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1427. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1428. )
  1429. _studentDesktopIconInfo.push(
  1430. )
  1431. }
  1432. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1433. _teacherDesktopIconInfo.push(
  1434. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1435. )
  1436. _studentDesktopIconInfo.push(
  1437. )
  1438. }
  1439. //麒麟二中 和 民新小学
  1440. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1441. _teacherDesktopIconInfo.push(
  1442. )
  1443. }
  1444. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1445. _teacherDesktopIconInfo.push(
  1446. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1447. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1448. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1449. )
  1450. }
  1451. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1452. _teacherDesktopIconInfo.push(
  1453. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1454. )
  1455. }
  1456. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1457. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1458. _teacherDesktopIconInfo.push(
  1459. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1460. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1461. )
  1462. }
  1463. //麒麟二中
  1464. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1465. _studentDesktopIconInfo.push(
  1466. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1467. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1468. )
  1469. }
  1470. //万科双语
  1471. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1472. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1473. if (el.Name == '项目管理') {
  1474. el.Name = 'PBL项目'
  1475. }
  1476. return el
  1477. })
  1478. _studentDesktopIconInfo3.push(
  1479. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. )
  1481. }
  1482. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1483. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1484. return el.Name != '魔盒识字' && el.Name != '24点'
  1485. })
  1486. }
  1487. 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) {
  1488. _studentDesktopIconInfo.push(
  1489. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1490. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1491. )
  1492. }
  1493. //循环创建桌面图标
  1494. if (type == 1) {
  1495. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1496. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1497. _content = $$("div", {
  1498. className: "U_MD_D_KO",
  1499. "onmousedown": U.UF.C.closure(function (obj) {
  1500. //防止拖动图标即打开了桌面应用
  1501. U.MD.D.click(this, obj);
  1502. }, [_studentDesktopIconInfo[i]]),
  1503. "onclick": U.UF.C.closure(function (obj) {
  1504. //防止拖动图标即打开了桌面应用
  1505. U.MD.D.click(this, obj);
  1506. }, [_studentDesktopIconInfo[i]])
  1507. }, _frag); //
  1508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1511. }
  1512. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1513. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1514. _content = $$("div", {
  1515. className: "U_MD_D_KO",
  1516. "onmousedown": U.UF.C.closure(function (obj) {
  1517. //防止拖动图标即打开了桌面应用
  1518. U.MD.D.click(this, obj);
  1519. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1520. "onclick": U.UF.C.closure(function (obj) {
  1521. //防止拖动图标即打开了桌面应用
  1522. U.MD.D.click(this, obj);
  1523. }, [_hkZJLSStudentDeskIconInfo[i]])
  1524. }, _frag); //
  1525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1528. } //
  1529. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1530. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1531. _content = $$("div", {
  1532. className: "U_MD_D_KO",
  1533. "onmousedown": U.UF.C.closure(function (obj) {
  1534. //防止拖动图标即打开了桌面应用
  1535. U.MD.D.click(this, obj);
  1536. }, [_ytyStudentDeskIconInfo[i]]),
  1537. "onclick": U.UF.C.closure(function (obj) {
  1538. //防止拖动图标即打开了桌面应用
  1539. U.MD.D.click(this, obj);
  1540. }, [_ytyStudentDeskIconInfo[i]])
  1541. }, _frag); //
  1542. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1543. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1544. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1545. } //
  1546. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1547. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1548. _content = $$("div", {
  1549. className: "U_MD_D_KO",
  1550. "onmousedown": U.UF.C.closure(function (obj) {
  1551. //防止拖动图标即打开了桌面应用
  1552. U.MD.D.click(this, obj);
  1553. }, [_jccssylStudentDeskIconInfo[i]]),
  1554. "onclick": U.UF.C.closure(function (obj) {
  1555. //防止拖动图标即打开了桌面应用
  1556. U.MD.D.click(this, obj);
  1557. }, [_jccssylStudentDeskIconInfo[i]])
  1558. }, _frag); //
  1559. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1562. }
  1563. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1564. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1565. _content = $$("div", {
  1566. className: "U_MD_D_KO",
  1567. "onmousedown": U.UF.C.closure(function (obj) {
  1568. //防止拖动图标即打开了桌面应用
  1569. U.MD.D.click(this, obj);
  1570. }, [_caleStudentDeskIconInfo[i]]),
  1571. "onclick": U.UF.C.closure(function (obj) {
  1572. //防止拖动图标即打开了桌面应用
  1573. U.MD.D.click(this, obj);
  1574. }, [_caleStudentDeskIconInfo[i]])
  1575. }, _frag); //
  1576. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1577. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1578. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1579. }
  1580. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1581. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1582. _content = $$("div", {
  1583. className: "U_MD_D_KO",
  1584. "onmousedown": U.UF.C.closure(function (obj) {
  1585. //防止拖动图标即打开了桌面应用
  1586. U.MD.D.click(this, obj);
  1587. }, [_thuioeStudentDeskIconInfo[i]]),
  1588. "onclick": U.UF.C.closure(function (obj) {
  1589. //防止拖动图标即打开了桌面应用
  1590. U.MD.D.click(this, obj);
  1591. }, [_thuioeStudentDeskIconInfo[i]])
  1592. }, _frag); //
  1593. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1594. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1595. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1596. }
  1597. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1598. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1599. _content = $$("div", {
  1600. className: "U_MD_D_KO",
  1601. "onmousedown": U.UF.C.closure(function (obj) {
  1602. //防止拖动图标即打开了桌面应用
  1603. U.MD.D.click(this, obj);
  1604. }, [_tpcStudentDeskIconInfo[i]]),
  1605. "onclick": U.UF.C.closure(function (obj) {
  1606. //防止拖动图标即打开了桌面应用
  1607. U.MD.D.click(this, obj);
  1608. }, [_tpcStudentDeskIconInfo[i]])
  1609. }, _frag); //
  1610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1613. } //
  1614. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1615. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1616. _content = $$("div", {
  1617. className: "U_MD_D_KO",
  1618. "onmousedown": U.UF.C.closure(function (obj) {
  1619. //防止拖动图标即打开了桌面应用
  1620. U.MD.D.click(this, obj);
  1621. }, [_chjyjStudentDeskIconInfo[i]]),
  1622. "onclick": U.UF.C.closure(function (obj) {
  1623. //防止拖动图标即打开了桌面应用
  1624. U.MD.D.click(this, obj);
  1625. }, [_chjyjStudentDeskIconInfo[i]])
  1626. }, _frag); //
  1627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1630. }
  1631. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1632. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1633. _content = $$("div", {
  1634. className: "U_MD_D_KO",
  1635. "onmousedown": U.UF.C.closure(function (obj) {
  1636. //防止拖动图标即打开了桌面应用
  1637. U.MD.D.click(this, obj);
  1638. }, [_szjkyStudentDeskIconInfo[i]]),
  1639. "onclick": U.UF.C.closure(function (obj) {
  1640. //防止拖动图标即打开了桌面应用
  1641. U.MD.D.click(this, obj);
  1642. }, [_szjkyStudentDeskIconInfo[i]])
  1643. }, _frag); //
  1644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1647. }
  1648. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1649. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1650. _content = $$("div", {
  1651. className: "U_MD_D_KO",
  1652. "onmousedown": U.UF.C.closure(function (obj) {
  1653. //防止拖动图标即打开了桌面应用
  1654. U.MD.D.click(this, obj);
  1655. }, [_dseiStudentDeskIconInfo[i]]),
  1656. "onclick": U.UF.C.closure(function (obj) {
  1657. //防止拖动图标即打开了桌面应用
  1658. U.MD.D.click(this, obj);
  1659. }, [_dseiStudentDeskIconInfo[i]])
  1660. }, _frag); //
  1661. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1662. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1663. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1664. }
  1665. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1666. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1667. _content = $$("div", {
  1668. className: "U_MD_D_KO",
  1669. "onmousedown": U.UF.C.closure(function (obj) {
  1670. //防止拖动图标即打开了桌面应用
  1671. U.MD.D.click(this, obj);
  1672. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1673. "onclick": U.UF.C.closure(function (obj) {
  1674. //防止拖动图标即打开了桌面应用
  1675. U.MD.D.click(this, obj);
  1676. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1677. }, _frag); //
  1678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1681. }
  1682. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1683. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1684. _content = $$("div", {
  1685. className: "U_MD_D_KO",
  1686. "onmousedown": U.UF.C.closure(function (obj) {
  1687. //防止拖动图标即打开了桌面应用
  1688. U.MD.D.click(this, obj);
  1689. }, [_siesStudentDeskIconInfo[i]]),
  1690. "onclick": U.UF.C.closure(function (obj) {
  1691. //防止拖动图标即打开了桌面应用
  1692. U.MD.D.click(this, obj);
  1693. }, [_siesStudentDeskIconInfo[i]])
  1694. }, _frag); //
  1695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1698. }
  1699. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1700. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1701. _content = $$("div", {
  1702. className: "U_MD_D_KO",
  1703. "onmousedown": U.UF.C.closure(function (obj) {
  1704. //防止拖动图标即打开了桌面应用
  1705. U.MD.D.click(this, obj);
  1706. }, [_hkStudentDeskIconInfo[i]]),
  1707. "onclick": U.UF.C.closure(function (obj) {
  1708. //防止拖动图标即打开了桌面应用
  1709. U.MD.D.click(this, obj);
  1710. }, [_hkStudentDeskIconInfo[i]])
  1711. }, _frag); //
  1712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1715. }
  1716. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1717. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1718. _content = $$("div", {
  1719. className: "U_MD_D_KO",
  1720. "onmousedown": U.UF.C.closure(function (obj) {
  1721. //防止拖动图标即打开了桌面应用
  1722. U.MD.D.click(this, obj);
  1723. }, [_hkaceStudentDeskIconInfo[i]]),
  1724. "onclick": U.UF.C.closure(function (obj) {
  1725. //防止拖动图标即打开了桌面应用
  1726. U.MD.D.click(this, obj);
  1727. }, [_hkaceStudentDeskIconInfo[i]])
  1728. }, _frag); //
  1729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1732. }
  1733. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1734. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1735. _content = $$("div", {
  1736. className: "U_MD_D_KO",
  1737. "onmousedown": U.UF.C.closure(function (obj) {
  1738. //防止拖动图标即打开了桌面应用
  1739. U.MD.D.click(this, obj);
  1740. }, [_studentDesktopIconInfo[i]]),
  1741. "onclick": U.UF.C.closure(function (obj) {
  1742. //防止拖动图标即打开了桌面应用
  1743. U.MD.D.click(this, obj);
  1744. }, [_studentDesktopIconInfo[i]])
  1745. }, _frag); //
  1746. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1747. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1748. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1749. }
  1750. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1751. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1752. _content = $$("div", {
  1753. className: "U_MD_D_KO",
  1754. "onmousedown": U.UF.C.closure(function (obj) {
  1755. //防止拖动图标即打开了桌面应用
  1756. U.MD.D.click(this, obj);
  1757. }, [_tcStudentDeskIconInfo[i]]),
  1758. "onclick": U.UF.C.closure(function (obj) {
  1759. //防止拖动图标即打开了桌面应用
  1760. U.MD.D.click(this, obj);
  1761. }, [_tcStudentDeskIconInfo[i]])
  1762. }, _frag); //
  1763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1766. }
  1767. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1768. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1769. _content = $$("div", {
  1770. className: "U_MD_D_KO",
  1771. "onmousedown": U.UF.C.closure(function (obj) {
  1772. //防止拖动图标即打开了桌面应用
  1773. U.MD.D.click(this, obj);
  1774. }, [_szscStudentDeskIconInfo[i]]),
  1775. "onclick": U.UF.C.closure(function (obj) {
  1776. //防止拖动图标即打开了桌面应用
  1777. U.MD.D.click(this, obj);
  1778. }, [_szscStudentDeskIconInfo[i]])
  1779. }, _frag); //
  1780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1783. }
  1784. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1785. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1786. _content = $$("div", {
  1787. className: "U_MD_D_KO",
  1788. "onmousedown": U.UF.C.closure(function (obj) {
  1789. //防止拖动图标即打开了桌面应用
  1790. U.MD.D.click(this, obj);
  1791. }, [_studentDesktopIconInfo3[i]]),
  1792. "onclick": U.UF.C.closure(function (obj) {
  1793. //防止拖动图标即打开了桌面应用
  1794. U.MD.D.click(this, obj);
  1795. }, [_studentDesktopIconInfo3[i]])
  1796. }, _frag); //
  1797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1800. }
  1801. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1802. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1803. _content = $$("div", {
  1804. className: "U_MD_D_KO",
  1805. "onmousedown": U.UF.C.closure(function (obj) {
  1806. //防止拖动图标即打开了桌面应用
  1807. U.MD.D.click(this, obj);
  1808. }, [_studentDesktopIconInfo2[i]]),
  1809. "onclick": U.UF.C.closure(function (obj) {
  1810. //防止拖动图标即打开了桌面应用
  1811. U.MD.D.click(this, obj);
  1812. }, [_studentDesktopIconInfo2[i]])
  1813. }, _frag); //
  1814. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1815. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1816. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1817. }
  1818. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1819. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1820. _content = $$("div", {
  1821. className: "U_MD_D_KO",
  1822. "onmousedown": U.UF.C.closure(function (obj) {
  1823. //防止拖动图标即打开了桌面应用
  1824. U.MD.D.click(this, obj);
  1825. }, [_wanketeacherDesktopIconInfo[i]]),
  1826. "onclick": U.UF.C.closure(function (obj) {
  1827. //防止拖动图标即打开了桌面应用
  1828. U.MD.D.click(this, obj);
  1829. }, [_wanketeacherDesktopIconInfo[i]])
  1830. }, _frag); //
  1831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1834. }
  1835. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1836. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1837. _content = $$("div", {
  1838. className: "U_MD_D_KO",
  1839. "onmousedown": U.UF.C.closure(function (obj) {
  1840. //防止拖动图标即打开了桌面应用
  1841. U.MD.D.click(this, obj);
  1842. }, [_wankeAdminDesktopIconInfo[i]]),
  1843. "onclick": U.UF.C.closure(function (obj) {
  1844. //防止拖动图标即打开了桌面应用
  1845. U.MD.D.click(this, obj);
  1846. }, [_wankeAdminDesktopIconInfo[i]])
  1847. }, _frag); //
  1848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1851. }
  1852. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1853. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1854. _content = $$("div", {
  1855. className: "U_MD_D_KO",
  1856. "onmousedown": U.UF.C.closure(function (obj) {
  1857. //防止拖动图标即打开了桌面应用
  1858. U.MD.D.click(this, obj);
  1859. }, [_jccssylTeacherDeskIconInfo[i]]),
  1860. "onclick": U.UF.C.closure(function (obj) {
  1861. //防止拖动图标即打开了桌面应用
  1862. U.MD.D.click(this, obj);
  1863. }, [_jccssylTeacherDeskIconInfo[i]])
  1864. }, _frag); //
  1865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1868. }
  1869. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1870. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1871. _content = $$("div", {
  1872. className: "U_MD_D_KO",
  1873. "onmousedown": U.UF.C.closure(function (obj) {
  1874. //防止拖动图标即打开了桌面应用
  1875. U.MD.D.click(this, obj);
  1876. }, [_caleTeacherDeskIconInfo[i]]),
  1877. "onclick": U.UF.C.closure(function (obj) {
  1878. //防止拖动图标即打开了桌面应用
  1879. U.MD.D.click(this, obj);
  1880. }, [_caleTeacherDeskIconInfo[i]])
  1881. }, _frag); //
  1882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1885. }
  1886. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1887. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1888. _content = $$("div", {
  1889. className: "U_MD_D_KO",
  1890. "onmousedown": U.UF.C.closure(function (obj) {
  1891. //防止拖动图标即打开了桌面应用
  1892. U.MD.D.click(this, obj);
  1893. }, [_tpcOrganizerDeskIconInfo[i]]),
  1894. "onclick": U.UF.C.closure(function (obj) {
  1895. //防止拖动图标即打开了桌面应用
  1896. U.MD.D.click(this, obj);
  1897. }, [_tpcOrganizerDeskIconInfo[i]])
  1898. }, _frag); //
  1899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1902. }
  1903. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1904. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1905. _content = $$("div", {
  1906. className: "U_MD_D_KO",
  1907. "onmousedown": U.UF.C.closure(function (obj) {
  1908. //防止拖动图标即打开了桌面应用
  1909. U.MD.D.click(this, obj);
  1910. }, [_tpcTeacherDeskIconInfo[i]]),
  1911. "onclick": U.UF.C.closure(function (obj) {
  1912. //防止拖动图标即打开了桌面应用
  1913. U.MD.D.click(this, obj);
  1914. }, [_tpcTeacherDeskIconInfo[i]])
  1915. }, _frag); //
  1916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1919. }
  1920. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1921. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1922. _content = $$("div", {
  1923. className: "U_MD_D_KO",
  1924. "onmousedown": U.UF.C.closure(function (obj) {
  1925. //防止拖动图标即打开了桌面应用
  1926. U.MD.D.click(this, obj);
  1927. }, [_teacherDesktopIconInfo2[i]]),
  1928. "onclick": U.UF.C.closure(function (obj) {
  1929. //防止拖动图标即打开了桌面应用
  1930. U.MD.D.click(this, obj);
  1931. }, [_teacherDesktopIconInfo2[i]])
  1932. }, _frag); //
  1933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1936. }
  1937. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1938. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1939. _content = $$("div", {
  1940. className: "U_MD_D_KO",
  1941. "onmousedown": U.UF.C.closure(function (obj) {
  1942. //防止拖动图标即打开了桌面应用
  1943. U.MD.D.click(this, obj);
  1944. }, [_thuioeTeacherDeskIconInfo[i]]),
  1945. "onclick": U.UF.C.closure(function (obj) {
  1946. //防止拖动图标即打开了桌面应用
  1947. U.MD.D.click(this, obj);
  1948. }, [_thuioeTeacherDeskIconInfo[i]])
  1949. }, _frag); //
  1950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1953. }
  1954. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1955. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1956. _content = $$("div", {
  1957. className: "U_MD_D_KO",
  1958. "onmousedown": U.UF.C.closure(function (obj) {
  1959. //防止拖动图标即打开了桌面应用
  1960. U.MD.D.click(this, obj);
  1961. }, [_lotechTeacherDeskIconInfo[i]]),
  1962. "onclick": U.UF.C.closure(function (obj) {
  1963. //防止拖动图标即打开了桌面应用
  1964. U.MD.D.click(this, obj);
  1965. }, [_lotechTeacherDeskIconInfo[i]])
  1966. }, _frag); //
  1967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1970. }//
  1971. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1972. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1973. _content = $$("div", {
  1974. className: "U_MD_D_KO",
  1975. "onmousedown": U.UF.C.closure(function (obj) {
  1976. //防止拖动图标即打开了桌面应用
  1977. U.MD.D.click(this, obj);
  1978. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1979. "onclick": U.UF.C.closure(function (obj) {
  1980. //防止拖动图标即打开了桌面应用
  1981. U.MD.D.click(this, obj);
  1982. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1983. }, _frag); //
  1984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1987. }
  1988. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1989. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1990. _content = $$("div", {
  1991. className: "U_MD_D_KO",
  1992. "onmousedown": U.UF.C.closure(function (obj) {
  1993. //防止拖动图标即打开了桌面应用
  1994. U.MD.D.click(this, obj);
  1995. }, [_siesTeacherDeskIconInfo[i]]),
  1996. "onclick": U.UF.C.closure(function (obj) {
  1997. //防止拖动图标即打开了桌面应用
  1998. U.MD.D.click(this, obj);
  1999. }, [_siesTeacherDeskIconInfo[i]])
  2000. }, _frag); //
  2001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2004. }
  2005. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2006. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2007. _content = $$("div", {
  2008. className: "U_MD_D_KO",
  2009. "onmousedown": U.UF.C.closure(function (obj) {
  2010. //防止拖动图标即打开了桌面应用
  2011. U.MD.D.click(this, obj);
  2012. }, [_longhuaTeacherDeskIconInfo[i]]),
  2013. "onclick": U.UF.C.closure(function (obj) {
  2014. //防止拖动图标即打开了桌面应用
  2015. U.MD.D.click(this, obj);
  2016. }, [_longhuaTeacherDeskIconInfo[i]])
  2017. }, _frag); //
  2018. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2019. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2020. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2021. }
  2022. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2023. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2024. _content = $$("div", {
  2025. className: "U_MD_D_KO",
  2026. "onmousedown": U.UF.C.closure(function (obj) {
  2027. //防止拖动图标即打开了桌面应用
  2028. U.MD.D.click(this, obj);
  2029. }, [_ytyTeacherDeskIconInfo[i]]),
  2030. "onclick": U.UF.C.closure(function (obj) {
  2031. //防止拖动图标即打开了桌面应用
  2032. U.MD.D.click(this, obj);
  2033. }, [_ytyTeacherDeskIconInfo[i]])
  2034. }, _frag); //
  2035. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2036. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2037. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2038. }
  2039. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2040. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2041. _content = $$("div", {
  2042. className: "U_MD_D_KO",
  2043. "onmousedown": U.UF.C.closure(function (obj) {
  2044. //防止拖动图标即打开了桌面应用
  2045. U.MD.D.click(this, obj);
  2046. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2047. "onclick": U.UF.C.closure(function (obj) {
  2048. //防止拖动图标即打开了桌面应用
  2049. U.MD.D.click(this, obj);
  2050. }, [_yunhaiTeacherDeskIconInfo[i]])
  2051. }, _frag); //
  2052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2055. } //_hkStudentDeskIconInfo
  2056. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2057. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2058. _content = $$("div", {
  2059. className: "U_MD_D_KO",
  2060. "onmousedown": U.UF.C.closure(function (obj) {
  2061. //防止拖动图标即打开了桌面应用
  2062. U.MD.D.click(this, obj);
  2063. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2064. "onclick": U.UF.C.closure(function (obj) {
  2065. //防止拖动图标即打开了桌面应用
  2066. U.MD.D.click(this, obj);
  2067. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2068. }, _frag); //
  2069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2072. }
  2073. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2074. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2075. _content = $$("div", {
  2076. className: "U_MD_D_KO",
  2077. "onmousedown": U.UF.C.closure(function (obj) {
  2078. //防止拖动图标即打开了桌面应用
  2079. U.MD.D.click(this, obj);
  2080. }, [_hkTeacherDeskIconInfo[i]]),
  2081. "onclick": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_hkTeacherDeskIconInfo[i]])
  2085. }, _frag); //
  2086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2089. }
  2090. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2091. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2092. _content = $$("div", {
  2093. className: "U_MD_D_KO",
  2094. "onmousedown": U.UF.C.closure(function (obj) {
  2095. //防止拖动图标即打开了桌面应用
  2096. U.MD.D.click(this, obj);
  2097. }, [_hkaceTeacherDeskIconInfo[i]]),
  2098. "onclick": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_hkaceTeacherDeskIconInfo[i]])
  2102. }, _frag); //
  2103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2106. }
  2107. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2108. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2109. _content = $$("div", {
  2110. className: "U_MD_D_KO",
  2111. "onmousedown": U.UF.C.closure(function (obj) {
  2112. //防止拖动图标即打开了桌面应用
  2113. U.MD.D.click(this, obj);
  2114. }, [_gdjgAdminDeskIconInfo[i]]),
  2115. "onclick": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_gdjgAdminDeskIconInfo[i]])
  2119. }, _frag); //
  2120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2123. }
  2124. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2125. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2126. _content = $$("div", {
  2127. className: "U_MD_D_KO",
  2128. "onmousedown": U.UF.C.closure(function (obj) {
  2129. //防止拖动图标即打开了桌面应用
  2130. U.MD.D.click(this, obj);
  2131. }, [_gdjgTeacherDeskIconInfo[i]]),
  2132. "onclick": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_gdjgTeacherDeskIconInfo[i]])
  2136. }, _frag); //
  2137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2140. }
  2141. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2142. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2143. _content = $$("div", {
  2144. className: "U_MD_D_KO",
  2145. "onmousedown": U.UF.C.closure(function (obj) {
  2146. //防止拖动图标即打开了桌面应用
  2147. U.MD.D.click(this, obj);
  2148. }, [_szherTeacherDeskIconInfo[i]]),
  2149. "onclick": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_szherTeacherDeskIconInfo[i]])
  2153. }, _frag); //
  2154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2157. }
  2158. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2159. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2160. _content = $$("div", {
  2161. className: "U_MD_D_KO",
  2162. "onmousedown": U.UF.C.closure(function (obj) {
  2163. //防止拖动图标即打开了桌面应用
  2164. U.MD.D.click(this, obj);
  2165. }, [_heyuannAdminDeskIconInfo[i]]),
  2166. "onclick": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_heyuannAdminDeskIconInfo[i]])
  2170. }, _frag); //
  2171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2174. }
  2175. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2176. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2177. _content = $$("div", {
  2178. className: "U_MD_D_KO",
  2179. "onmousedown": U.UF.C.closure(function (obj) {
  2180. //防止拖动图标即打开了桌面应用
  2181. U.MD.D.click(this, obj);
  2182. }, [_heyuanTeacherDeskIconInfo[i]]),
  2183. "onclick": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_heyuanTeacherDeskIconInfo[i]])
  2187. }, _frag); //
  2188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2191. } //
  2192. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2193. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2194. _content = $$("div", {
  2195. className: "U_MD_D_KO",
  2196. "onmousedown": U.UF.C.closure(function (obj) {
  2197. //防止拖动图标即打开了桌面应用
  2198. U.MD.D.click(this, obj);
  2199. }, [_dseiAdminDeskIconInfo[i]]),
  2200. "onclick": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_dseiAdminDeskIconInfo[i]])
  2204. }, _frag); //
  2205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2208. }
  2209. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2210. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2211. _content = $$("div", {
  2212. className: "U_MD_D_KO",
  2213. "onmousedown": U.UF.C.closure(function (obj) {
  2214. //防止拖动图标即打开了桌面应用
  2215. U.MD.D.click(this, obj);
  2216. }, [_dseiTeacherDeskIconInfo[i]]),
  2217. "onclick": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_dseiTeacherDeskIconInfo[i]])
  2221. }, _frag); //
  2222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2225. } //
  2226. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2227. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2228. _content = $$("div", {
  2229. className: "U_MD_D_KO",
  2230. "onmousedown": U.UF.C.closure(function (obj) {
  2231. //防止拖动图标即打开了桌面应用
  2232. U.MD.D.click(this, obj);
  2233. }, [_chjyjAdminDeskIconInfo[i]]),
  2234. "onclick": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_chjyjAdminDeskIconInfo[i]])
  2238. }, _frag); //
  2239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2242. }//
  2243. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2244. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2245. _content = $$("div", {
  2246. className: "U_MD_D_KO",
  2247. "onmousedown": U.UF.C.closure(function (obj) {
  2248. //防止拖动图标即打开了桌面应用
  2249. U.MD.D.click(this, obj);
  2250. }, [_chjyjTeacherDeskIconInfo[i]]),
  2251. "onclick": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_chjyjTeacherDeskIconInfo[i]])
  2255. }, _frag); //
  2256. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2257. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2258. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2259. }
  2260. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2261. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2262. _content = $$("div", {
  2263. className: "U_MD_D_KO",
  2264. "onmousedown": U.UF.C.closure(function (obj) {
  2265. //防止拖动图标即打开了桌面应用
  2266. U.MD.D.click(this, obj);
  2267. }, [_szjkyAdminDeskIconInfo[i]]),
  2268. "onclick": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_szjkyAdminDeskIconInfo[i]])
  2272. }, _frag); //
  2273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2276. }//
  2277. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2278. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2279. _content = $$("div", {
  2280. className: "U_MD_D_KO",
  2281. "onmousedown": U.UF.C.closure(function (obj) {
  2282. //防止拖动图标即打开了桌面应用
  2283. U.MD.D.click(this, obj);
  2284. }, [_szjkyTeacherDeskIconInfo[i]]),
  2285. "onclick": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_szjkyTeacherDeskIconInfo[i]])
  2289. }, _frag); //
  2290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2293. }
  2294. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2295. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2296. _content = $$("div", {
  2297. className: "U_MD_D_KO",
  2298. "onmousedown": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_futianAdminDeskIconInfo[i]]),
  2302. "onclick": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_futianAdminDeskIconInfo[i]])
  2306. }, _frag); //
  2307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2310. }
  2311. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2312. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2313. _content = $$("div", {
  2314. className: "U_MD_D_KO",
  2315. "onmousedown": U.UF.C.closure(function (obj) {
  2316. //防止拖动图标即打开了桌面应用
  2317. U.MD.D.click(this, obj);
  2318. }, [_futianTeacherDeskIconInfo[i]]),
  2319. "onclick": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_futianTeacherDeskIconInfo[i]])
  2323. }, _frag); //
  2324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2327. }
  2328. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2329. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2330. _content = $$("div", {
  2331. className: "U_MD_D_KO",
  2332. "onmousedown": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_MingdeTeacherDeskIcon[i]]),
  2336. "onclick": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_MingdeTeacherDeskIcon[i]])
  2340. }, _frag); //
  2341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2344. }
  2345. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2346. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2347. _content = $$("div", {
  2348. className: "U_MD_D_KO",
  2349. "onmousedown": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_lhsAdminDesktopIconInfo[i]]),
  2353. "onclick": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_lhsAdminDesktopIconInfo[i]])
  2357. }, _frag); //
  2358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2361. }
  2362. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2363. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2364. _content = $$("div", {
  2365. className: "U_MD_D_KO",
  2366. "onmousedown": U.UF.C.closure(function (obj) {
  2367. //防止拖动图标即打开了桌面应用
  2368. U.MD.D.click(this, obj);
  2369. }, [_lhsteacherDesktopIconInfo[i]]),
  2370. "onclick": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_lhsteacherDesktopIconInfo[i]])
  2374. }, _frag); //
  2375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2378. }
  2379. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2380. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2381. _content = $$("div", {
  2382. className: "U_MD_D_KO",
  2383. "onmousedown": U.UF.C.closure(function (obj) {
  2384. //防止拖动图标即打开了桌面应用
  2385. U.MD.D.click(this, obj);
  2386. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2387. "onclick": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_zhoujiateacherDesktopIconInfo[i]])
  2391. }, _frag); //
  2392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2395. }
  2396. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2397. for (i = 0; i < _hanDeskIcon.length; i++) {
  2398. _content = $$("div", {
  2399. className: "U_MD_D_KO",
  2400. "onmousedown": U.UF.C.closure(function (obj) {
  2401. //防止拖动图标即打开了桌面应用
  2402. U.MD.D.click(this, obj);
  2403. }, [_hanDeskIcon[i]]),
  2404. "onclick": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_hanDeskIcon[i]])
  2408. }, _frag); //
  2409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2412. }
  2413. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2414. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2415. _content = $$("div", {
  2416. className: "U_MD_D_KO",
  2417. "onmousedown": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_orgStemDeskIcon[i]]),
  2421. "onclick": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_orgStemDeskIcon[i]])
  2425. }, _frag); //
  2426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2429. }
  2430. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2431. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2432. _content = $$("div", {
  2433. className: "U_MD_D_KO",
  2434. "onmousedown": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_szulsDeskIcon[i]]),
  2438. "onclick": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_szulsDeskIcon[i]])
  2442. }, _frag); //
  2443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2446. }
  2447. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2448. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2449. _content = $$("div", {
  2450. className: "U_MD_D_KO",
  2451. "onmousedown": U.UF.C.closure(function (obj) {
  2452. //防止拖动图标即打开了桌面应用
  2453. U.MD.D.click(this, obj);
  2454. }, [_orgDesktopIconInfo[i]]),
  2455. "onclick": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_orgDesktopIconInfo[i]])
  2459. }, _frag); //
  2460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2463. }
  2464. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2465. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2466. _content = $$("div", {
  2467. className: "U_MD_D_KO",
  2468. "onmousedown": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_schoolDesktopIconInfo[i]]),
  2472. "onclick": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_schoolDesktopIconInfo[i]])
  2476. }, _frag); //
  2477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2480. }
  2481. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2482. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2483. _content = $$("div", {
  2484. className: "U_MD_D_KO",
  2485. "onmousedown": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_GMteacherDesktopIconInfo[i]]),
  2489. "onclick": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_GMteacherDesktopIconInfo[i]])
  2493. }, _frag); //
  2494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2497. }
  2498. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2499. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  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. }, [_SONGteacherDesktopIconInfo[i]]),
  2506. "onclick": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_SONGteacherDesktopIconInfo[i]])
  2510. }, _frag); //
  2511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2514. }
  2515. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2516. for (i = 0; i < _GMstudentDesktopIconInfo.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. }, [_GMstudentDesktopIconInfo[i]]),
  2523. "onclick": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_GMstudentDesktopIconInfo[i]])
  2527. }, _frag); //
  2528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2531. }
  2532. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2533. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2534. _content = $$("div", {
  2535. className: "U_MD_D_KO",
  2536. "onmousedown": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_tcTeacherDeskIconInfo[i]]),
  2540. "onclick": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_tcTeacherDeskIconInfo[i]])
  2544. }, _frag); //
  2545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2548. }
  2549. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2550. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2551. _content = $$("div", {
  2552. className: "U_MD_D_KO",
  2553. "onmousedown": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_tcOrganizerDeskIconInfo[i]]),
  2557. "onclick": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_tcOrganizerDeskIconInfo[i]])
  2561. }, _frag); //
  2562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2565. }
  2566. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2567. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2568. _content = $$("div", {
  2569. className: "U_MD_D_KO",
  2570. "onmousedown": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_szscTeacherDeskIconInfo[i]]),
  2574. "onclick": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_szscTeacherDeskIconInfo[i]])
  2578. }, _frag); //
  2579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2582. }
  2583. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2584. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2585. _content = $$("div", {
  2586. className: "U_MD_D_KO",
  2587. "onmousedown": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_szscOrganizerDeskIconInfo[i]]),
  2591. "onclick": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_szscOrganizerDeskIconInfo[i]])
  2595. }, _frag); //
  2596. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2597. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2598. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2599. }
  2600. } else {
  2601. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2602. _content = $$("div", {
  2603. className: "U_MD_D_KO",
  2604. "onmousedown": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_teacherDesktopIconInfo[i]]),
  2608. "onclick": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_teacherDesktopIconInfo[i]])
  2612. }, _frag); //
  2613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2616. }
  2617. }
  2618. } else {
  2619. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2620. _content = $$("div", {
  2621. className: "U_MD_D_KO",
  2622. style: { 'width': '124px', 'height': '145px' },
  2623. "onmousedown": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_easyDesktopIconInfo[i]]),
  2627. "onclick": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_easyDesktopIconInfo[i]])
  2631. }, _frag); //
  2632. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2635. }
  2636. }
  2637. if (type == 1) {
  2638. //加载好后给图标定位
  2639. U.MD.D.iconPostion($(_frag).Child());
  2640. } else {
  2641. //加载好后给图标定位
  2642. U.MD.D.iconPostion2($(_frag).Child());
  2643. }
  2644. //把图标加载到页面
  2645. el.appendChild(_frag);
  2646. }
  2647. /**
  2648. * 显示任务栏
  2649. *
  2650. * @param {element} 桌面元素
  2651. */
  2652. U.MD.D.I.displayTaskbar = function (el) {
  2653. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2654. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2655. //任务栏位置变化
  2656. U.selectEl(el).css({ "bottom": "0px" });
  2657. //桌面位置变话
  2658. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2659. }
  2660. }
  2661. //#region 桌面图标拖动逻辑
  2662. /**
  2663. * 桌面排列图标
  2664. *
  2665. * @param {element} 桌面元素
  2666. * @param {object} 上下相距的距离
  2667. * @param {object} 左右相距的距离
  2668. * @return {object} 命名空间
  2669. */
  2670. U.MD.D.iconPostion = function (childs, top, left) {
  2671. var i; //用于循环处理
  2672. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2673. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2674. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2675. for (i = 0; i < childs.length; i++) {
  2676. //如果竖排top超过了范围处理
  2677. if (top + 95 > US.height - 10) {
  2678. //left超过了页面范围处理,则向上重叠打印处理
  2679. if ((left + 180) > US.width) {
  2680. top -= 110;
  2681. left -= 90;
  2682. }
  2683. //没有超过范围,那么left+90添加到下一个竖排打印
  2684. else {
  2685. left += 90;
  2686. top = 15;
  2687. };
  2688. }
  2689. //给图标的位置赋值
  2690. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2691. if (i < childs.length - 1) {
  2692. //页面图标每次向下加95
  2693. top += 95;
  2694. }
  2695. }
  2696. //返回最后调用的图标的位置
  2697. return [top, left];
  2698. }
  2699. /**
  2700. * 桌面排列图标
  2701. *
  2702. * @param {element} 桌面元素
  2703. * @param {object} 上下相距的距离
  2704. * @param {object} 左右相距的距离
  2705. * @return {object} 命名空间
  2706. */
  2707. U.MD.D.iconPostion2 = function (childs, top, left) {
  2708. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2709. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2710. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2711. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2712. for (i = 0; i < childs.length; i++) {
  2713. //如果竖排top超过了范围处理
  2714. if (left + 150 > US.width - 10) {
  2715. //left超过了页面范围处理,则向上重叠打印处理
  2716. if ((top + 180) > US.Height) {
  2717. top -= 150;
  2718. left -= 150;
  2719. }
  2720. //没有超过范围,那么left+90添加到下一个竖排打印
  2721. else {
  2722. top += 150;
  2723. left = ol;
  2724. };
  2725. }
  2726. //给图标的位置赋值
  2727. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2728. if (i < childs.length - 1) {
  2729. //页面图标每次向下加95
  2730. left += 150;
  2731. }
  2732. }
  2733. //返回最后调用的图标的位置
  2734. return [top, left];
  2735. }
  2736. /**
  2737. * 桌面点击事件逻辑
  2738. *
  2739. * @param {element} 桌面元素
  2740. * @param {object} 上下相距的距离
  2741. * @param {object} 左右相距的距离
  2742. * @return {object} 命名空间
  2743. */
  2744. U.MD.D.click = function (el, obj) {
  2745. var _buttonnumber = event.button; //点击的按钮的事件值
  2746. var _userinfo = US.userInfo;
  2747. U.UF.EV.stopBubble(); //阻止向上冒泡
  2748. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2749. if (_buttonnumber < 2) {
  2750. //如果是click事件的处理
  2751. if (event.type == "click") {
  2752. //如果元素在mousemove事件中没有移动则出发click事件
  2753. if (!U.MD.D.I.IsDrag) {
  2754. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2755. U.alert("请先登录您的账号!");
  2756. setTimeout(() => {
  2757. U.MD.U.L.login();
  2758. }, 2000);
  2759. } else {
  2760. //打开应用处理
  2761. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2762. }
  2763. }
  2764. }
  2765. //如果是mouse事件的处理
  2766. else {
  2767. if (US.Config.type == '1') {
  2768. //拖动处理,添加拖动和拖动结束事件
  2769. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2770. }
  2771. }
  2772. U.MD.D.I.IsDrag = false;
  2773. }
  2774. }
  2775. /**
  2776. * 拖动的处理
  2777. *
  2778. */
  2779. U.MD.D.iconMove = function () {
  2780. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2781. U.MD.D.I.IsDrag = true;
  2782. }
  2783. /**
  2784. * 拖动结束后,这里是定位处理,以网状的形式定位
  2785. *
  2786. * @param {element} 拖动的元素
  2787. * @return {object} 命名空间
  2788. */
  2789. U.MD.D.iconUp = function (el) {
  2790. var _top = 15,
  2791. _left = 20,
  2792. _margin,
  2793. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2794. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2795. if (_positioninfo["OT"] > 15) {
  2796. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2797. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2798. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2799. }
  2800. if (_positioninfo["OL"] > 20) {
  2801. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2802. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2803. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2804. }
  2805. //while循环判断么一个重叠的元素
  2806. do {
  2807. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2808. _top = _positioninfo[0] + 95; //得到定位后的top
  2809. _left = _positioninfo[1]; //得到定位后的left
  2810. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2811. }
  2812. /**
  2813. * 判断拖动后图标是否重叠
  2814. *
  2815. * @param {element} 拖动的元素
  2816. * @param {element} 桌面所有的元素
  2817. * @param {array} 拖动元素的位置
  2818. ----------[0] 上 top
  2819. ----------[1] 左 left
  2820. * @return {object} 命名空间
  2821. */
  2822. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2823. //循环所有的图标
  2824. for (var i = 0; i < childs.length; i++) {
  2825. //判断有没有和该图标诶子重叠的元素
  2826. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2827. return childs[i]; //如果有返回
  2828. }
  2829. }
  2830. }
  2831. //#endregion
  2832. //#endregion
  2833. //#region 桌面应用
  2834. /**
  2835. * 打开应用
  2836. *
  2837. * @param {string} 类型
  2838. -----------------Disk 网盘系统
  2839. -----------------PDisk 学习系统网盘
  2840. -----------------Poto 图片
  2841. -----------------Video 视频
  2842. -----------------Music 音乐
  2843. -----------------Word word
  2844. -----------------Excel excel
  2845. -----------------Txt 记事本
  2846. -----------------PB 学习系统
  2847. -----------------Blog 朋友圈系统
  2848. -----------------FTP ftp系统
  2849. -----------------Group 好友群
  2850. -----------------SY 首页系统
  2851. -----------------Set 个人设置
  2852. -----------------XSet 系统设置
  2853. -----------------App 我们所有的app
  2854. -----------------BC c.1473.cn 平台
  2855. -----------------CWeb d.1473.cn 变成平台
  2856. -----------------其他的外联系统 我们统一用iframe打开
  2857. * @param {array} 类型
  2858. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2859. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2860. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2861. 如果第一个参数为其他,则无第二个参数
  2862. * @returns {array}
  2863. */
  2864. window.addEventListener('message', function (e) { // 监听 message 事件
  2865. // alert(e.data.type);
  2866. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2867. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2868. //3是展示全部阶段 2学生 1老师 4专家
  2869. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2870. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2871. //3是展示全部阶段 2学生 1老师 4专家
  2872. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2873. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2874. //3是展示全部阶段 2学生 1老师 4专家
  2875. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2876. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2877. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2878. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2879. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2880. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2881. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2882. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2883. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2884. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2885. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2886. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2887. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2888. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2889. //3是展示全部阶段 2学生 1老师 4专家
  2890. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2891. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2892. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2893. U.MD.D.I.selectUser();
  2894. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2895. var _formel = document.getElementById("study");
  2896. U.UF.F.windowZooming(_formel);
  2897. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2898. var _formel = document.getElementById("studyDetail");
  2899. U.UF.F.windowZooming(_formel);
  2900. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2901. var _formel = document.getElementById("studyDetail");
  2902. U.UF.F.windowZooming(_formel);
  2903. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2904. var _formel = document.getElementById("studentStudy");
  2905. U.UF.F.windowZooming(_formel);
  2906. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2907. // var _formel = document.getElementById("study");
  2908. //如果最大化了,那么就把他缩小
  2909. // if (_formel.ismaximize) {
  2910. // return;
  2911. // }
  2912. // U.UF.F.windowZooming(_formel);
  2913. // U.UF.F.topWindow(_formel);
  2914. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2915. // var _formel = document.getElementById("studyDetail");
  2916. //如果最大化了,那么就把他缩小
  2917. // if (_formel.ismaximize) {
  2918. // return;
  2919. // }
  2920. // U.UF.F.windowZooming(_formel);
  2921. // U.UF.F.topWindow(_formel);
  2922. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2923. // var _formel = document.getElementById("studentStudy");
  2924. // if (_formel.ismaximize) {
  2925. // return;
  2926. // }
  2927. // U.UF.F.windowZooming(_formel);
  2928. // U.UF.F.topWindow(_formel);
  2929. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2930. var _formel = document.getElementById("study");
  2931. // if (_formel.ismaximize) {
  2932. // return;
  2933. // }
  2934. // U.UF.F.windowZooming(_formel);
  2935. U.UF.F.topWindow(_formel);
  2936. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2937. var _formel = document.getElementById("studentIndex");
  2938. U.UF.F.windowZooming(_formel);
  2939. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2940. var _formel = document.getElementById("studyDetailS");
  2941. U.UF.F.windowZooming(_formel);
  2942. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2943. var _formel = document.getElementById("studioIndex");
  2944. U.UF.F.windowZooming(_formel);
  2945. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2946. var _formel = document.getElementById("studyDetailStudio");
  2947. U.UF.F.windowZooming(_formel);
  2948. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2949. var _formel = document.getElementById("studyDetailStudio");
  2950. U.UF.F.windowZooming(_formel);
  2951. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2952. var _formel = document.getElementById("studyDetailNT");
  2953. U.UF.F.windowZooming(_formel);
  2954. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2955. var _formel = document.getElementById("studyDetailS");
  2956. U.UF.F.windowZooming(_formel);
  2957. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2958. var _formel = document.getElementById("studyDetailS");
  2959. U.UF.F.topWindow(_formel);
  2960. } else if (e.data.tools && e.data.tools == "1") {
  2961. // U.MD.D.I.openApplication("whiteboard")
  2962. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2963. } else if (e.data.tools && e.data.tools == "2") {
  2964. U.MD.D.I.openApplication("note")
  2965. } else if (e.data.tools && e.data.tools == "3") {
  2966. // U.MD.D.I.openApplication("mind")
  2967. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2968. } else if (e.data.tools && e.data.tools == "4") {
  2969. U.MD.D.I.openApplication("investigation")
  2970. } else if (e.data.tools && e.data.tools == "6") {
  2971. // U.MD.D.I.openApplication("doc")
  2972. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2973. } else if (e.data.tools && e.data.tools == "7") {
  2974. // U.MD.D.I.openApplication("mindNetwork")
  2975. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2976. } else if (e.data.tools && e.data.tools == "8") {
  2977. U.MD.D.I.openApplication("library")
  2978. } else if (e.data.tools && e.data.tools == "17") {
  2979. U.MD.D.I.openApplication("stuLibrary")
  2980. } else if (e.data.tools && e.data.tools == "18") {
  2981. U.MD.D.I.openApplication("train")
  2982. } else if (e.data.tools && e.data.tools == "21") {
  2983. U.MD.D.I.openApplication("program")
  2984. } else if (e.data.tools && e.data.tools == "22") {
  2985. U.MD.D.I.openApplication("AIprogram2")
  2986. } else if (e.data.tools && e.data.tools == "23") {
  2987. U.MD.D.I.openApplication("Pythonprogram")
  2988. } else if (e.data.tools && e.data.tools == "24") {
  2989. U.MD.D.I.openApplication("AIprogram")
  2990. } else if (e.data.tools && e.data.tools == "25") {
  2991. U.MD.D.I.openApplication("sys")
  2992. } else if (e.data.tools && e.data.tools == "26") {
  2993. // U.MD.D.I.openApplication("courseDesign")
  2994. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2995. } else if (e.data.tools && e.data.tools == "31") {
  2996. U.MD.D.I.openApplication("netWorkPanel")
  2997. } else if (e.data.tools && e.data.tools == "32") {
  2998. U.MD.D.I.openApplication("codeEdit")
  2999. } else if (e.data.tools && e.data.tools == "57") {
  3000. U.MD.D.I.openApplication("CocoPi")
  3001. } else if (e.data.tools && e.data.tools == "63") {
  3002. U.MD.D.I.openApplication("Wood")
  3003. } else if (e.data.tools && e.data.tools == "58") {
  3004. U.MD.D.I.openApplication("car")
  3005. } else if (e.data.tools && e.data.tools == "59") {
  3006. U.MD.D.I.openApplication("lineSearch")
  3007. } else if (e.data.tools && e.data.tools == "60") {
  3008. U.MD.D.I.openApplication("deepLearning")
  3009. } else if (e.data.tools && e.data.tools == "61") {
  3010. U.MD.D.I.openApplication("allHistory")
  3011. } else if (e.data.tools && e.data.tools == "28") {
  3012. U.MD.D.I.openApplication("translation")
  3013. } else if (e.data.tools && e.data.tools == "37") {
  3014. U.MD.D.I.openApplication("mohe")
  3015. } else if (e.data.tools && e.data.tools == "38") {
  3016. U.MD.D.I.openApplication("24game")
  3017. } else if (e.data.tools && e.data.tools == "39") {
  3018. U.MD.D.I.openApplication("GeoGebra")
  3019. } else if (e.data.tools && e.data.tools == "43") {
  3020. U.MD.D.I.openApplication("studentEvaluate")
  3021. } else if (e.data.tools && e.data.tools == "44") {
  3022. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3023. } else if (e.data.tools && e.data.tools == "46") {
  3024. U.MD.D.I.openApplication("project")
  3025. } else if (e.data.tools && e.data.tools == "71") {
  3026. U.MD.D.I.openApplication("aigptCourse")
  3027. } else if (e.data.tools && e.data.tools == "1s") {
  3028. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3029. } else if (e.data.tools && e.data.tools == "3s") {
  3030. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3031. } else if (e.data.tools && e.data.tools == "6s") {
  3032. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3033. } else if (e.data.tools && e.data.tools == "1studio") {
  3034. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3035. } else if (e.data.tools && e.data.tools == "3studio") {
  3036. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3037. } else if (e.data.tools && e.data.tools == "6studio") {
  3038. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3039. } else if (e.data.tools && e.data.tools == "3y") {
  3040. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3041. } else if (e.data.tools && e.data.tools == "1y") {
  3042. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3043. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3044. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3045. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3046. U.MD.D.I.openApplication("AIAnalyse")
  3047. } else if (e.data.tools && e.data.tools == "1teacher") {
  3048. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3049. } else if (e.data.tools && e.data.tools == "3teacher") {
  3050. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3051. } else if (e.data.tools && e.data.tools == "7teacher") {
  3052. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3053. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3054. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3055. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3056. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3057. } else if (e.data.tools && e.data.tools == "1E") {
  3058. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3059. } else if (e.data.tools && e.data.tools == "3E") {
  3060. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3061. } else if (e.data.tools && e.data.tools == "57y") {
  3062. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3063. } else if (e.data.tools && e.data.tools == "57u") {
  3064. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3065. } else if (e.data.tools && e.data.tools == "57teacher") {
  3066. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3067. } else if (e.data.tools && e.data.tools == "64") {
  3068. U.MD.D.I.openApplication("AIChat")
  3069. } else if (e.data.tools && e.data.tools == "66") {
  3070. U.MD.D.I.openApplication("formulaEdi")
  3071. } else if (e.data.tools && e.data.tools == "67") {
  3072. U.MD.D.I.openApplication("molStr")
  3073. } else if (e.data.tools && e.data.tools == "68") {
  3074. U.MD.D.I.openApplication("timeAxis")
  3075. } else if (e.data.tools && e.data.tools == "openCourse") {
  3076. let _data = {
  3077. typea: e.data.typea || '',
  3078. typeb: e.data.typeb || '',
  3079. typed: e.data.typed || '',
  3080. }
  3081. U.MD.D.I.openInApplication("index", _data)
  3082. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3083. let _data = {
  3084. classid: e.data.classid || '',
  3085. }
  3086. U.MD.D.I.openInApplication("dataClass", _data)
  3087. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3088. let _data = {
  3089. cid: e.data.cid || '',
  3090. gid: e.data.gid || '',
  3091. }
  3092. U.MD.D.I.openInApplication("opencCscl", _data)
  3093. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3094. U.MD.D.I.openApplication("dataBoardTest")
  3095. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3096. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3097. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3098. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3099. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3100. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3101. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3102. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3103. }else if (e.data.tools && e.data.tools == "loginSz") {
  3104. U.MD.D.I.openInApplication("loginSz")
  3105. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3106. if($('#classroom_observation_board')[0]){
  3107. // U.UF.F.closeWindow($('#classroom_observation_board'))
  3108. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3109. }
  3110. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3111. }
  3112. });
  3113. U.MD.D.I.selectUser = function () {
  3114. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3115. if (res.value[0].length > 0) {
  3116. US.userInfo = res.value[0][0];
  3117. $(".userName")[0].innerHTML = US.userInfo.username;
  3118. }
  3119. }, [], { "type": "GET", "withCredentials": true });
  3120. }
  3121. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3122. var _userinfo = US.userInfo, //登录用户信息
  3123. _userid = US.userInfo.userid, //登录用户id
  3124. _oid = _userinfo.organizeid,
  3125. _type = US.userInfo.type,
  3126. _org = US.userInfo.org,
  3127. _role = US.userInfo.role,
  3128. _classId = US.userInfo.classid;
  3129. if (_type == 4) {
  3130. tType = 4
  3131. }
  3132. switch (str) {
  3133. case "studyDetailNT": //无终端模式
  3134. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3135. setTimeout(() => {
  3136. U.MD.U.L.login();
  3137. }, 2000);
  3138. } else {
  3139. _formdiv = new U.UF.UI.form(
  3140. "课程详情",
  3141. $$("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 }), {
  3142. "id": "studyDetailNT",
  3143. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3144. "onresize": function () { }
  3145. }, {
  3146. closecallback: function () { }
  3147. }, { "style": { "height": "36px" } }).form; //创建窗体
  3148. _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); } }
  3149. break;
  3150. }
  3151. case "studyDetail":
  3152. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3153. setTimeout(() => {
  3154. U.MD.U.L.login();
  3155. }, 2000);
  3156. } else {
  3157. _formdiv = new U.UF.UI.form(
  3158. "课程详情",
  3159. $$("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 }), {
  3160. "id": "studyDetail",
  3161. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3162. "onresize": function () { }
  3163. }, {
  3164. closecallback: function () { }
  3165. }, { "style": { "height": "36px" } }).form; //创建窗体
  3166. _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); } }
  3167. break;
  3168. }
  3169. case "studyDetailTrain":
  3170. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3171. setTimeout(() => {
  3172. U.MD.U.L.login();
  3173. }, 2000);
  3174. } else {
  3175. _formdiv = new U.UF.UI.form(
  3176. "培训详情",
  3177. $$("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 }), {
  3178. "id": "studyDetailTrain",
  3179. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3180. "onresize": function () { }
  3181. }, {
  3182. closecallback: function () { }
  3183. }, { "style": { "height": "36px" } }).form; //创建窗体
  3184. _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); } }
  3185. break;
  3186. }
  3187. case "studyDetailS":
  3188. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3189. setTimeout(() => {
  3190. U.MD.U.L.login();
  3191. }, 2000);
  3192. } else {
  3193. _formdiv = new U.UF.UI.form(
  3194. "项目详情",
  3195. $$("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 }), {
  3196. "id": "studyDetailS",
  3197. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3198. "onresize": function () { }
  3199. }, {
  3200. closecallback: function () { }
  3201. }, { "style": { "height": "36px" } }).form; //创建窗体
  3202. _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); } }
  3203. break;
  3204. }
  3205. case "studyDetailStudio":
  3206. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3207. setTimeout(() => {
  3208. U.MD.U.L.login();
  3209. }, 2000);
  3210. } else {
  3211. _formdiv = new U.UF.UI.form(
  3212. "工作详情",
  3213. $$("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 }), {
  3214. "id": "studyDetailStudio",
  3215. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3216. "onresize": function () { }
  3217. }, {
  3218. closecallback: function () { }
  3219. }, { "style": { "height": "36px" } }).form; //创建窗体
  3220. _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); } }
  3221. break;
  3222. }
  3223. case "studyDetailS5":
  3224. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3225. setTimeout(() => {
  3226. U.MD.U.L.login();
  3227. }, 2000);
  3228. } else {
  3229. _formdiv = new U.UF.UI.form(
  3230. "项目详情",
  3231. $$("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 }), {
  3232. "id": "studyDetailS",
  3233. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3234. "onresize": function () { }
  3235. }, {
  3236. closecallback: function () { }
  3237. }, { "style": { "height": "36px" } }).form; //创建窗体
  3238. _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); } }
  3239. break;
  3240. }
  3241. case "studyDetailGM":
  3242. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3243. setTimeout(() => {
  3244. U.MD.U.L.login();
  3245. }, 2000);
  3246. } else {
  3247. _formdiv = new U.UF.UI.form(
  3248. "课程详情",
  3249. $$("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 }), {
  3250. "id": "studyDetail",
  3251. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3252. "onresize": function () { }
  3253. }, {
  3254. closecallback: function () { }
  3255. }, { "style": { "height": "36px" } }).form; //创建窗体
  3256. _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); } }
  3257. break;
  3258. }
  3259. case "hanUrl":
  3260. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3261. setTimeout(() => {
  3262. U.MD.U.L.login();
  3263. }, 2000);
  3264. } else {
  3265. _formdiv = new U.UF.UI.form(
  3266. "汉字宫",
  3267. $$("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" }), {
  3268. "id": "hanUrl",
  3269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3270. "onresize": function () { }
  3271. }, {
  3272. closecallback: function () { }
  3273. }, { "style": { "height": "36px" } }).form; //创建窗体
  3274. _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); } }
  3275. break;
  3276. }
  3277. case "index":
  3278. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3279. setTimeout(() => {
  3280. U.MD.U.L.login();
  3281. }, 2000);
  3282. } else {
  3283. _formdiv = new U.UF.UI.form(
  3284. "课程中心",
  3285. $$("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 }), {
  3286. "id": "study",
  3287. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3288. "onresize": function () { }
  3289. }, {
  3290. closecallback: function () { }
  3291. }, { "style": { "height": "36px" } }).form; //创建窗体
  3292. _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); } }
  3293. break;
  3294. }
  3295. case "dataClass":
  3296. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3297. setTimeout(() => {
  3298. U.MD.U.L.login();
  3299. }, 2000);
  3300. } else {
  3301. _formdiv = new U.UF.UI.form(
  3302. "数据报告",
  3303. $$("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 }), {
  3304. "id": "dataClass",
  3305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3306. "onresize": function () { }
  3307. }, {
  3308. closecallback: function () { }
  3309. }, { "style": { "height": "36px" } }).form; //创建窗体
  3310. _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); } }
  3311. break;
  3312. }
  3313. case "opencCscl":
  3314. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3315. setTimeout(() => {
  3316. U.MD.U.L.login();
  3317. }, 2000);
  3318. } else {
  3319. _formdiv = new U.UF.UI.form(
  3320. "协同建构",
  3321. $$("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 }), {
  3322. "id": "futureClass",
  3323. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3324. "onresize": function () { }
  3325. }, {
  3326. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3327. }, { "style": { "height": "36px" } }).form; //创建窗体
  3328. _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); } }
  3329. break;
  3330. }
  3331. case "openCourseUpdate":
  3332. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3333. setTimeout(() => {
  3334. U.MD.U.L.login();
  3335. }, 2000);
  3336. } else {
  3337. _formdiv = new U.UF.UI.form(
  3338. "课程管理",
  3339. $$("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 }), {
  3340. "id": "openCourseUpdate",
  3341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3342. "onresize": function () { }
  3343. }, {
  3344. closecallback: function () { }
  3345. }, { "style": { "height": "36px" } }).form; //创建窗体
  3346. break;
  3347. }
  3348. case "openNewCourseUpdate":
  3349. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3350. setTimeout(() => {
  3351. U.MD.U.L.login();
  3352. }, 2000);
  3353. } else {
  3354. _formdiv = new U.UF.UI.form(
  3355. "课程管理",
  3356. $$("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 }), {
  3357. "id": "openCourseUpdate",
  3358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3359. "onresize": function () { }
  3360. }, {
  3361. closecallback: function () { }
  3362. }, { "style": { "height": "36px" } }).form; //创建窗体
  3363. break;
  3364. }
  3365. case "openCourseEUpdate":
  3366. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3367. setTimeout(() => {
  3368. U.MD.U.L.login();
  3369. }, 2000);
  3370. } else {
  3371. _formdiv = new U.UF.UI.form(
  3372. "课程管理",
  3373. $$("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 }), {
  3374. "id": "openCourseUpdate",
  3375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3376. "onresize": function () { }
  3377. }, {
  3378. closecallback: function () { }
  3379. }, { "style": { "height": "36px" } }).form; //创建窗体
  3380. break;
  3381. }
  3382. case "openCourseNewUpdate":
  3383. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3384. setTimeout(() => {
  3385. U.MD.U.L.login();
  3386. }, 2000);
  3387. } else {
  3388. _formdiv = new U.UF.UI.form(
  3389. "课程管理",
  3390. $$("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 }), {
  3391. "id": "openCourseUpdate",
  3392. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3393. "onresize": function () { }
  3394. }, {
  3395. closecallback: function () { }
  3396. }, { "style": { "height": "36px" } }).form; //创建窗体
  3397. break;
  3398. }
  3399. case "inviteLoginSz":
  3400. _formdiv = new U.UF.UI.form(
  3401. "随机码登录",
  3402. $$("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 }), {
  3403. "id": "loginSz",
  3404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3405. "onresize": function () { }
  3406. }, {
  3407. closecallback: function () { }
  3408. }, { "style": { "height": "36px" } }).form; //创建窗体
  3409. break;
  3410. case "loginSz":
  3411. _formdiv = new U.UF.UI.form(
  3412. "教师登录",
  3413. $$("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" }), {
  3414. "id": "loginSz",
  3415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3416. "onresize": function () { }
  3417. }, {
  3418. closecallback: function () { }
  3419. }, { "style": { "height": "36px" } }).form; //创建窗体
  3420. break;
  3421. case "teacher":
  3422. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3423. setTimeout(() => {
  3424. U.MD.U.L.login();
  3425. }, 2000);
  3426. } else {
  3427. _formdiv = new U.UF.UI.form(
  3428. "教师管理",
  3429. $$("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 }), {
  3430. "id": "teacher",
  3431. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3432. "onresize": function () { }
  3433. }, {
  3434. closecallback: function () { }
  3435. }, { "style": { "height": "36px" } }).form; //创建窗体
  3436. break;
  3437. }
  3438. case "dataBoardSZArea":
  3439. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3440. setTimeout(() => {
  3441. U.MD.U.L.login();
  3442. }, 2000);
  3443. } else {
  3444. _formdiv = new U.UF.UI.form(
  3445. "综合数据看板",
  3446. $$("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 }), {
  3447. "id": "dataBoardSZArea",
  3448. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3449. "onresize": function () { }
  3450. }, {
  3451. closecallback: function () { }
  3452. }, { "style": { "height": "36px" } }).form; //创建窗体
  3453. break;
  3454. }
  3455. case "dataBoardSZCity":
  3456. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3457. setTimeout(() => {
  3458. U.MD.U.L.login();
  3459. }, 2000);
  3460. } else {
  3461. _formdiv = new U.UF.UI.form(
  3462. "综合数据看板",
  3463. $$("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 }), {
  3464. "id": "dataBoardSZCity",
  3465. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3466. "onresize": function () { }
  3467. }, {
  3468. closecallback: function () { }
  3469. }, { "style": { "height": "36px" } }).form; //创建窗体
  3470. break;
  3471. }
  3472. case "classroom_observation_board":
  3473. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3474. setTimeout(() => {
  3475. U.MD.U.L.login();
  3476. }, 2000);
  3477. } else {
  3478. _formdiv = new U.UF.UI.form(
  3479. "课堂观察",
  3480. $$("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 }), {
  3481. "id": "classroom_observation_board",
  3482. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3483. "onresize": function () { }
  3484. }, {
  3485. closecallback: function () { }
  3486. }, { "style": { "height": "36px" } }).form; //创建窗体
  3487. break;
  3488. }
  3489. }
  3490. }
  3491. U.MD.D.I.openApplication = function (str, obj, info) {
  3492. obj = obj || {};
  3493. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3494. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3495. _userinfo = US.userInfo, //登录用户信息
  3496. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3497. _oid = obj.organizeid || _userinfo.organizeid,
  3498. _type = US.userInfo.type,
  3499. _org = US.userInfo.org,
  3500. _role = US.userInfo.role,
  3501. _classId = US.userInfo.classid,
  3502. _TscreenType = 1
  3503. _screenType = 2,
  3504. _SscreenType = 3;
  3505. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3506. return;
  3507. }
  3508. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3509. switch (str) {
  3510. case "studnetProject": //好友打开
  3511. _formdiv = new U.UF.UI.form(
  3512. "我的项目",
  3513. $$("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 }), {
  3514. "id": "studnetProject",
  3515. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3516. "onresize": function () { }
  3517. }, {
  3518. closecallback: function () { }
  3519. }, { "style": { "height": "36px" } }).form; //创建窗体
  3520. _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); } }
  3521. break;
  3522. case "studentEvaluate": //好友打开
  3523. _formdiv = new U.UF.UI.form(
  3524. "我的评价",
  3525. $$("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 }), {
  3526. "id": "studentEvaluate",
  3527. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3528. "onresize": function () { }
  3529. }, {
  3530. closecallback: function () { }
  3531. }, { "style": { "height": "36px" } }).form; //创建窗体
  3532. _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); } }
  3533. break;
  3534. case "my":
  3535. _formdiv = new U.UF.UI.form(
  3536. "我的资料",
  3537. $$("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 }), {
  3538. "id": "my",
  3539. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3540. "onresize": function () { }
  3541. }, {
  3542. closecallback: function () { }
  3543. }, { "style": { "height": "36px" } }).form; //创建窗体
  3544. _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); } }
  3545. break;
  3546. case "program":
  3547. _formdiv = new U.UF.UI.form(
  3548. "编程平台",
  3549. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3550. "id": "program",
  3551. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3552. "onresize": function () { }
  3553. }, {
  3554. closecallback: function () { }
  3555. }, { "style": { "height": "36px" } }).form; //创建窗体
  3556. _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); } }
  3557. break;
  3558. case "library":
  3559. _formdiv = new U.UF.UI.form(
  3560. "素材库",
  3561. $$("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 }), {
  3562. "id": "library",
  3563. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3564. "onresize": function () { }
  3565. }, {
  3566. closecallback: function () { }
  3567. }, { "style": { "height": "36px" } }).form; //创建窗体
  3568. _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); } }
  3569. break;
  3570. case "whiteboard":
  3571. _formdiv = new U.UF.UI.form(
  3572. "电子白板",
  3573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3574. "id": "whiteboard",
  3575. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3576. "onresize": function () { }
  3577. }, {
  3578. closecallback: function () { }
  3579. }, { "style": { "height": "36px" } }).form; //创建窗体
  3580. _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); } }
  3581. break;
  3582. case "investigation":
  3583. _formdiv = new U.UF.UI.form(
  3584. "问卷调查",
  3585. $$("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 }), {
  3586. "id": "investigation",
  3587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3588. "onresize": function () { }
  3589. }, {
  3590. closecallback: function () { }
  3591. }, { "style": { "height": "36px" } }).form; //创建窗体
  3592. _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); } }
  3593. break;
  3594. case "note":
  3595. _formdiv = new U.UF.UI.form(
  3596. "便签分类",
  3597. $$("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 }), {
  3598. "id": "note",
  3599. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3600. "onresize": function () { }
  3601. }, {
  3602. closecallback: function () { }
  3603. }, { "style": { "height": "36px" } }).form; //创建窗体
  3604. _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); } }
  3605. break;
  3606. // case "score":
  3607. // _formdiv = new U.UF.UI.form(
  3608. // "量规评分",
  3609. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3610. // "id": "score",
  3611. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3612. // "onresize": function() {}
  3613. // }, {
  3614. // closecallback: function() {}
  3615. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3616. // _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); } }
  3617. // break;
  3618. case "mind":
  3619. _formdiv = new U.UF.UI.form(
  3620. "思维导图",
  3621. $$("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"
  3622. "id": "mind",
  3623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3624. "onresize": function () { }
  3625. }, {
  3626. closecallback: function () { }
  3627. }, { "style": { "height": "36px" } }).form; //创建窗体
  3628. _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); } }
  3629. break;
  3630. case "doc":
  3631. // U.MD.D.I.isRoom();
  3632. _formdiv = new U.UF.UI.form(
  3633. "协同文档",
  3634. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3635. "id": "doc",
  3636. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3637. "onresize": function () { }
  3638. }, {
  3639. closecallback: function () { }
  3640. }, { "style": { "height": "36px" } }).form; //创建窗体
  3641. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3642. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3643. // })
  3644. _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); } }
  3645. break;
  3646. case "studentStudy":
  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-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
  3650. "id": "studentStudy",
  3651. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3652. "onresize": function () { }
  3653. }, {
  3654. closecallback: function () { }
  3655. }, { "style": { "height": "36px" } }).form; //创建窗体
  3656. _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); } }
  3657. break;
  3658. case "train": //好友打开
  3659. _formdiv = new U.UF.UI.form(
  3660. "训练平台",
  3661. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3662. "id": "train",
  3663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3664. "onresize": function () { }
  3665. }, {
  3666. closecallback: function () { }
  3667. }, { "style": { "height": "36px" } }).form; //创建窗体
  3668. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3669. break;
  3670. case "mindNetwork": //好友打开
  3671. _formdiv = new U.UF.UI.form(
  3672. "思维网格",
  3673. $$("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 }), {
  3674. "id": "mindNetwork",
  3675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3676. "onresize": function () { }
  3677. }, {
  3678. closecallback: function () { }
  3679. }, { "style": { "height": "36px" } }).form; //创建窗体
  3680. _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); } }
  3681. break;
  3682. case "studentClassRoom": //好友打开
  3683. _formdiv = new U.UF.UI.form(
  3684. "实时课堂",
  3685. $$("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 }), {
  3686. "id": "studentClassRoom",
  3687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3688. "onresize": function () { }
  3689. }, {
  3690. closecallback: function () { }
  3691. }, { "style": { "height": "36px" } }).form; //创建窗体
  3692. _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); } }
  3693. setTimeout(() => {
  3694. U.UF.F.windowZooming(_formdiv)
  3695. }, 0);
  3696. break;
  3697. }
  3698. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3699. switch (str) {
  3700. case "studnetProject": //好友打开
  3701. _formdiv = new U.UF.UI.form(
  3702. "我的项目",
  3703. $$("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 }), {
  3704. "id": "studnetProject",
  3705. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3706. "onresize": function () { }
  3707. }, {
  3708. closecallback: function () { }
  3709. }, { "style": { "height": "36px" } }).form; //创建窗体
  3710. _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); } }
  3711. break;
  3712. case "studentEvaluate": //好友打开
  3713. _formdiv = new U.UF.UI.form(
  3714. "我的评价",
  3715. $$("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 }), {
  3716. "id": "studentEvaluate",
  3717. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3718. "onresize": function () { }
  3719. }, {
  3720. closecallback: function () { }
  3721. }, { "style": { "height": "36px" } }).form; //创建窗体
  3722. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3723. break;
  3724. case "my":
  3725. _formdiv = new U.UF.UI.form(
  3726. "我的资料",
  3727. $$("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 }), {
  3728. "id": "my",
  3729. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3730. "onresize": function () { }
  3731. }, {
  3732. closecallback: function () { }
  3733. }, { "style": { "height": "36px" } }).form; //创建窗体
  3734. _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); } }
  3735. break;
  3736. case "program":
  3737. _formdiv = new U.UF.UI.form(
  3738. "编程平台",
  3739. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3740. "id": "program",
  3741. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3742. "onresize": function () { }
  3743. }, {
  3744. closecallback: function () { }
  3745. }, { "style": { "height": "36px" } }).form; //创建窗体
  3746. _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); } }
  3747. break;
  3748. case "library":
  3749. _formdiv = new U.UF.UI.form(
  3750. "素材库",
  3751. $$("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 }), {
  3752. "id": "library",
  3753. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3754. "onresize": function () { }
  3755. }, {
  3756. closecallback: function () { }
  3757. }, { "style": { "height": "36px" } }).form; //创建窗体
  3758. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3759. break;
  3760. case "whiteboard":
  3761. _formdiv = new U.UF.UI.form(
  3762. "电子白板",
  3763. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3764. "id": "whiteboard",
  3765. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3766. "onresize": function () { }
  3767. }, {
  3768. closecallback: function () { }
  3769. }, { "style": { "height": "36px" } }).form; //创建窗体
  3770. _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); } }
  3771. break;
  3772. case "investigation":
  3773. _formdiv = new U.UF.UI.form(
  3774. "问卷调查",
  3775. $$("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 }), {
  3776. "id": "investigation",
  3777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3778. "onresize": function () { }
  3779. }, {
  3780. closecallback: function () { }
  3781. }, { "style": { "height": "36px" } }).form; //创建窗体
  3782. _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); } }
  3783. break;
  3784. case "note":
  3785. _formdiv = new U.UF.UI.form(
  3786. "便签分类",
  3787. $$("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 }), {
  3788. "id": "note",
  3789. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3790. "onresize": function () { }
  3791. }, {
  3792. closecallback: function () { }
  3793. }, { "style": { "height": "36px" } }).form; //创建窗体
  3794. _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); } }
  3795. break;
  3796. // case "score":
  3797. // _formdiv = new U.UF.UI.form(
  3798. // "量规评分",
  3799. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3800. // "id": "score",
  3801. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3802. // "onresize": function() {}
  3803. // }, {
  3804. // closecallback: function() {}
  3805. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3806. // _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); } }
  3807. // break;
  3808. case "mind":
  3809. _formdiv = new U.UF.UI.form(
  3810. "思维导图",
  3811. $$("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"
  3812. "id": "mind",
  3813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3814. "onresize": function () { }
  3815. }, {
  3816. closecallback: function () { }
  3817. }, { "style": { "height": "36px" } }).form; //创建窗体
  3818. _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); } }
  3819. break;
  3820. case "doc":
  3821. // U.MD.D.I.isRoom();
  3822. _formdiv = new U.UF.UI.form(
  3823. "协同文档",
  3824. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3825. "id": "doc",
  3826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3827. "onresize": function () { }
  3828. }, {
  3829. closecallback: function () { }
  3830. }, { "style": { "height": "36px" } }).form; //创建窗体
  3831. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3832. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3833. })
  3834. _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); } }
  3835. break;
  3836. case "train": //好友打开
  3837. _formdiv = new U.UF.UI.form(
  3838. "训练平台",
  3839. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3840. "id": "train",
  3841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3842. "onresize": function () { }
  3843. }, {
  3844. closecallback: function () { }
  3845. }, { "style": { "height": "36px" } }).form; //创建窗体
  3846. _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); } }
  3847. break;
  3848. case "studentStudy":
  3849. _formdiv = new U.UF.UI.form(
  3850. "课程中心",
  3851. $$("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
  3852. "id": "studentStudy",
  3853. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3854. "onresize": function () { }
  3855. }, {
  3856. closecallback: function () { }
  3857. }, { "style": { "height": "36px" } }).form; //创建窗体
  3858. _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); } }
  3859. break;
  3860. case "mindNetwork": //好友打开
  3861. _formdiv = new U.UF.UI.form(
  3862. "思维网格",
  3863. $$("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 }), {
  3864. "id": "mindNetwork",
  3865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3866. "onresize": function () { }
  3867. }, {
  3868. closecallback: function () { }
  3869. }, { "style": { "height": "36px" } }).form; //创建窗体
  3870. _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); } }
  3871. break;
  3872. case "studentClassRoom": //好友打开
  3873. _formdiv = new U.UF.UI.form(
  3874. "实时课堂",
  3875. $$("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 }), {
  3876. "id": "studentClassRoom",
  3877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3878. "onresize": function () { }
  3879. }, {
  3880. closecallback: function () { }
  3881. }, { "style": { "height": "36px" } }).form; //创建窗体
  3882. _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); } }
  3883. setTimeout(() => {
  3884. U.UF.F.windowZooming(_formdiv)
  3885. }, 0);
  3886. break;
  3887. }
  3888. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3889. //选择应用处理
  3890. switch (str) {
  3891. case "project": //好友打开
  3892. _formdiv = new U.UF.UI.form(
  3893. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3894. $$("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 }), {
  3895. "id": "project",
  3896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3897. "onresize": function () { }
  3898. }, {
  3899. closecallback: function () { }
  3900. }, { "style": { "height": "36px" } }).form; //创建窗体
  3901. _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); } }
  3902. break;
  3903. case "student":
  3904. _formdiv = new U.UF.UI.form(
  3905. "学生管理",
  3906. $$("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 }), {
  3907. "id": "student",
  3908. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3909. "onresize": function () { }
  3910. }, {
  3911. closecallback: function () { }
  3912. }, { "style": { "height": "36px" } }).form; //创建窗体
  3913. _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); } }
  3914. break;
  3915. case "evaluate":
  3916. _formdiv = new U.UF.UI.form(
  3917. "学生评价",
  3918. $$("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 }), {
  3919. "id": "evaluate",
  3920. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3921. "onresize": function () { }
  3922. }, {
  3923. closecallback: function () { }
  3924. }, { "style": { "height": "36px" } }).form; //创建窗体
  3925. _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); } }
  3926. break;
  3927. case "sys":
  3928. _formdiv = new U.UF.UI.form(
  3929. "目标管理",
  3930. $$("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 }), {
  3931. "id": "sys",
  3932. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3933. "onresize": function () { }
  3934. }, {
  3935. closecallback: function () { }
  3936. }, { "style": { "height": "36px" } }).form; //创建窗体
  3937. _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); } }
  3938. break;
  3939. case "courseDesign":
  3940. _formdiv = new U.UF.UI.form(
  3941. "项目设计",
  3942. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3943. "id": "courseDesign",
  3944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3945. "onresize": function () { }
  3946. }, {
  3947. closecallback: function () { }
  3948. }, { "style": { "height": "36px" } }).form; //创建窗体
  3949. _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); } }
  3950. break;
  3951. case "program":
  3952. _formdiv = new U.UF.UI.form(
  3953. "编程平台",
  3954. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3955. "id": "program",
  3956. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3957. "onresize": function () { }
  3958. }, {
  3959. closecallback: function () { }
  3960. }, { "style": { "height": "36px" } }).form; //创建窗体
  3961. _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); } }
  3962. break;
  3963. case "class":
  3964. _formdiv = new U.UF.UI.form(
  3965. "班级管理",
  3966. $$("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 }), {
  3967. "id": "class",
  3968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3969. "onresize": function () { }
  3970. }, {
  3971. closecallback: function () { }
  3972. }, { "style": { "height": "36px" } }).form; //创建窗体
  3973. _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); } }
  3974. break;
  3975. case "Grade":
  3976. _formdiv = new U.UF.UI.form(
  3977. "年级管理",
  3978. $$("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 }), {
  3979. "id": "Grade",
  3980. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3981. "onresize": function () { }
  3982. }, {
  3983. closecallback: function () { }
  3984. }, { "style": { "height": "36px" } }).form; //创建窗体
  3985. _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); } }
  3986. break;
  3987. case "teacherOffice":
  3988. _formdiv = new U.UF.UI.form(
  3989. "教研室",
  3990. $$("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 }), {
  3991. "id": "teacherOffice",
  3992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3993. "onresize": function () { }
  3994. }, {
  3995. closecallback: function () { }
  3996. }, { "style": { "height": "36px" } }).form; //创建窗体
  3997. _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); } }
  3998. break;
  3999. case "my":
  4000. _formdiv = new U.UF.UI.form(
  4001. "我的资料",
  4002. $$("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 }), {
  4003. "id": "my",
  4004. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4005. "onresize": function () { }
  4006. }, {
  4007. closecallback: function () { }
  4008. }, { "style": { "height": "36px" } }).form; //创建窗体
  4009. _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); } }
  4010. break;
  4011. case "notice":
  4012. _formdiv = new U.UF.UI.form(
  4013. "通知公告",
  4014. $$("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 }), {
  4015. "id": "notice",
  4016. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4017. "onresize": function () { }
  4018. }, {
  4019. closecallback: function () { }
  4020. }, { "style": { "height": "36px" } }).form; //创建窗体
  4021. _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); } }
  4022. break;
  4023. case "library":
  4024. _formdiv = new U.UF.UI.form(
  4025. "素材库",
  4026. $$("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 }), {
  4027. "id": "library",
  4028. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4029. "onresize": function () { }
  4030. }, {
  4031. closecallback: function () { }
  4032. }, { "style": { "height": "36px" } }).form; //创建窗体
  4033. _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); } }
  4034. break;
  4035. case "whiteboard":
  4036. _formdiv = new U.UF.UI.form(
  4037. "电子白板",
  4038. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4039. "id": "whiteboard",
  4040. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4041. "onresize": function () { }
  4042. }, {
  4043. closecallback: function () { }
  4044. }, { "style": { "height": "36px" } }).form; //创建窗体
  4045. _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); } }
  4046. break;
  4047. case "investigation":
  4048. _formdiv = new U.UF.UI.form(
  4049. "问卷调查",
  4050. $$("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 }), {
  4051. "id": "investigation",
  4052. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4053. "onresize": function () { }
  4054. }, {
  4055. closecallback: function () { }
  4056. }, { "style": { "height": "36px" } }).form; //创建窗体
  4057. _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); } }
  4058. break;
  4059. case "note":
  4060. _formdiv = new U.UF.UI.form(
  4061. "便签分类",
  4062. $$("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 }), {
  4063. "id": "note",
  4064. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4065. "onresize": function () { }
  4066. }, {
  4067. closecallback: function () { }
  4068. }, { "style": { "height": "36px" } }).form; //创建窗体
  4069. _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); } }
  4070. break;
  4071. // case "score":
  4072. // _formdiv = new U.UF.UI.form(
  4073. // "量规评分",
  4074. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4075. // "id": "score",
  4076. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4077. // "onresize": function() {}
  4078. // }, {
  4079. // closecallback: function() {}
  4080. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4081. // _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); } }
  4082. // break;
  4083. case "mind":
  4084. _formdiv = new U.UF.UI.form(
  4085. "思维导图",
  4086. $$("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"
  4087. "id": "mind",
  4088. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4089. "onresize": function () { }
  4090. }, {
  4091. closecallback: function () { }
  4092. }, { "style": { "height": "36px" } }).form; //创建窗体
  4093. _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); } }
  4094. break;
  4095. case "doc":
  4096. // U.MD.D.I.isRoom();
  4097. _formdiv = new U.UF.UI.form(
  4098. "协同文档",
  4099. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4100. "id": "doc",
  4101. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4102. "onresize": function () { }
  4103. }, {
  4104. closecallback: function () { }
  4105. }, { "style": { "height": "36px" } }).form; //创建窗体
  4106. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4107. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4108. })
  4109. _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); } }
  4110. break;
  4111. case "study":
  4112. _formdiv = new U.UF.UI.form(
  4113. "课程中心",
  4114. $$("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
  4115. "id": "study",
  4116. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4122. break;
  4123. case "mindNetwork": //好友打开
  4124. _formdiv = new U.UF.UI.form(
  4125. "思维网格",
  4126. $$("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 }), {
  4127. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4134. break;
  4135. case "train": //好友打开
  4136. _formdiv = new U.UF.UI.form(
  4137. "训练平台",
  4138. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4139. "id": "mindNetwork",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4146. break;
  4147. case "teacherClassRoom": //好友打开
  4148. _formdiv = new U.UF.UI.form(
  4149. "实时课堂",
  4150. $$("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 }), {
  4151. "id": "teacherClassRoom",
  4152. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4153. "onresize": function () { }
  4154. }, {
  4155. closecallback: function () { }
  4156. }, { "style": { "height": "36px" } }).form; //创建窗体
  4157. _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); } }
  4158. setTimeout(() => {
  4159. U.UF.F.windowZooming(_formdiv)
  4160. }, 0);
  4161. break;
  4162. }
  4163. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4164. switch (str) {
  4165. case "project": //好友打开
  4166. _formdiv = new U.UF.UI.form(
  4167. "课程管理",
  4168. $$("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 }), {
  4169. "id": "project",
  4170. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4171. "onresize": function () { }
  4172. }, {
  4173. closecallback: function () { }
  4174. }, { "style": { "height": "36px" } }).form; //创建窗体
  4175. _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); } }
  4176. break;
  4177. case "evaluate":
  4178. _formdiv = new U.UF.UI.form(
  4179. "学生评价",
  4180. $$("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 }), {
  4181. "id": "evaluate",
  4182. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4183. "onresize": function () { }
  4184. }, {
  4185. closecallback: function () { }
  4186. }, { "style": { "height": "36px" } }).form; //创建窗体
  4187. _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); } }
  4188. break;
  4189. case "notice":
  4190. _formdiv = new U.UF.UI.form(
  4191. "通知公告",
  4192. $$("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 }), {
  4193. "id": "notice",
  4194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4195. "onresize": function () { }
  4196. }, {
  4197. closecallback: function () { }
  4198. }, { "style": { "height": "36px" } }).form; //创建窗体
  4199. _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); } }
  4200. break;
  4201. case "stuLibrary":
  4202. _formdiv = new U.UF.UI.form(
  4203. "学习资料",
  4204. $$("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 }), {
  4205. "id": "stuLibrary",
  4206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4207. "onresize": function () { }
  4208. }, {
  4209. closecallback: function () { }
  4210. }, { "style": { "height": "36px" } }).form; //创建窗体
  4211. _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); } }
  4212. break;
  4213. case "program":
  4214. _formdiv = new U.UF.UI.form(
  4215. "编程平台",
  4216. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4217. "id": "program",
  4218. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4219. "onresize": function () { }
  4220. }, {
  4221. closecallback: function () { }
  4222. }, { "style": { "height": "36px" } }).form; //创建窗体
  4223. _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); } }
  4224. break;
  4225. case "whiteboard":
  4226. _formdiv = new U.UF.UI.form(
  4227. "电子白板",
  4228. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4229. "id": "whiteboard",
  4230. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4231. "onresize": function () { }
  4232. }, {
  4233. closecallback: function () { }
  4234. }, { "style": { "height": "36px" } }).form; //创建窗体
  4235. _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); } }
  4236. break;
  4237. case "investigation":
  4238. _formdiv = new U.UF.UI.form(
  4239. "问卷调查",
  4240. $$("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 }), {
  4241. "id": "investigation",
  4242. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4243. "onresize": function () { }
  4244. }, {
  4245. closecallback: function () { }
  4246. }, { "style": { "height": "36px" } }).form; //创建窗体
  4247. _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); } }
  4248. break;
  4249. case "mind":
  4250. _formdiv = new U.UF.UI.form(
  4251. "思维导图",
  4252. $$("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"
  4253. "id": "mind",
  4254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4255. "onresize": function () { }
  4256. }, {
  4257. closecallback: function () { }
  4258. }, { "style": { "height": "36px" } }).form; //创建窗体
  4259. _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); } }
  4260. break;
  4261. case "doc":
  4262. // U.MD.D.I.isRoom();
  4263. _formdiv = new U.UF.UI.form(
  4264. "协同文档",
  4265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4266. "id": "doc",
  4267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4268. "onresize": function () { }
  4269. }, {
  4270. closecallback: function () { }
  4271. }, { "style": { "height": "36px" } }).form; //创建窗体
  4272. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4273. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4274. })
  4275. _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); } }
  4276. break;
  4277. case "study":
  4278. _formdiv = new U.UF.UI.form(
  4279. "课程中心",
  4280. $$("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
  4281. "id": "study",
  4282. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4283. "onresize": function () { }
  4284. }, {
  4285. closecallback: function () { }
  4286. }, { "style": { "height": "36px" } }).form; //创建窗体
  4287. _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); } }
  4288. break;
  4289. case "mindNetwork": //好友打开
  4290. _formdiv = new U.UF.UI.form(
  4291. "思维网格",
  4292. $$("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 }), {
  4293. "id": "mindNetwork",
  4294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4295. "onresize": function () { }
  4296. }, {
  4297. closecallback: function () { }
  4298. }, { "style": { "height": "36px" } }).form; //创建窗体
  4299. _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); } }
  4300. break;
  4301. case "train": //好友打开
  4302. _formdiv = new U.UF.UI.form(
  4303. "训练平台",
  4304. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4305. "id": "train",
  4306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4307. "onresize": function () { }
  4308. }, {
  4309. closecallback: function () { }
  4310. }, { "style": { "height": "36px" } }).form; //创建窗体
  4311. _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); } }
  4312. break;
  4313. case "sys":
  4314. _formdiv = new U.UF.UI.form(
  4315. "目标管理",
  4316. $$("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 }), {
  4317. "id": "sys",
  4318. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4319. "onresize": function () { }
  4320. }, {
  4321. closecallback: function () { }
  4322. }, { "style": { "height": "36px" } }).form; //创建窗体
  4323. _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); } }
  4324. break;
  4325. case "courseDesign":
  4326. _formdiv = new U.UF.UI.form(
  4327. "项目设计",
  4328. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4329. "id": "courseDesign",
  4330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4331. "onresize": function () { }
  4332. }, {
  4333. closecallback: function () { }
  4334. }, { "style": { "height": "36px" } }).form; //创建窗体
  4335. _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); } }
  4336. break;
  4337. }
  4338. } else if (!_type) {
  4339. switch (str) {
  4340. case "my":
  4341. _formdiv = new U.UF.UI.form(
  4342. "我的资料",
  4343. $$("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 }), {
  4344. "id": "my",
  4345. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4346. "onresize": function () { }
  4347. }, {
  4348. closecallback: function () { }
  4349. }, { "style": { "height": "36px" } }).form; //创建窗体
  4350. _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); } }
  4351. break;
  4352. }
  4353. }
  4354. switch (str) {
  4355. // AIprogram2 AI体验 aihub.cocorobo.cn
  4356. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4357. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4358. case "formulaEdi": //公式编辑
  4359. _formdiv = new U.UF.UI.form(
  4360. "公式编辑",
  4361. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4362. "id": "formulaEdi",
  4363. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4364. "onresize": function () { }
  4365. }, {
  4366. closecallback: function () { }
  4367. }, { "style": { "height": "36px" } }).form; //创建窗体
  4368. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4369. break;
  4370. case "molStr": //分子结构
  4371. _formdiv = new U.UF.UI.form(
  4372. "分子结构",
  4373. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4374. "id": "molStr",
  4375. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4376. "onresize": function () { }
  4377. }, {
  4378. closecallback: function () { }
  4379. }, { "style": { "height": "36px" } }).form; //创建窗体
  4380. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4381. break;
  4382. case "timeAxis": //时间轴
  4383. _formdiv = new U.UF.UI.form(
  4384. "时间轴",
  4385. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4386. "id": "timeAxis",
  4387. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4388. "onresize": function () { }
  4389. }, {
  4390. closecallback: function () { }
  4391. }, { "style": { "height": "36px" } }).form; //创建窗体
  4392. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4393. break;
  4394. case "AIprogram2": //AI体验
  4395. _formdiv = new U.UF.UI.form(
  4396. "AI体验",
  4397. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4398. "id": "AIprogram2",
  4399. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4400. "onresize": function () { }
  4401. }, {
  4402. closecallback: function () { }
  4403. }, { "style": { "height": "36px" } }).form; //创建窗体
  4404. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4405. break;
  4406. case "Pythonprogram": //python编程
  4407. _formdiv = new U.UF.UI.form(
  4408. "Python编程",
  4409. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4410. "id": "Pythonprogram",
  4411. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4412. "onresize": function () { }
  4413. }, {
  4414. closecallback: function () { }
  4415. }, { "style": { "height": "36px" } }).form; //创建窗体
  4416. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4417. break;
  4418. case "AIprogram": //ai编程
  4419. _formdiv = new U.UF.UI.form(
  4420. "AI编程平台",
  4421. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4422. "id": "AIprogram",
  4423. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4424. "onresize": function () { }
  4425. }, {
  4426. closecallback: function () { }
  4427. }, { "style": { "height": "36px" } }).form; //创建窗体
  4428. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4429. break;
  4430. case "CocoPi": //CocoPi
  4431. _formdiv = new U.UF.UI.form(
  4432. "CocoPi",
  4433. $$("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" }), {
  4434. "id": "CocoPi",
  4435. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4436. "onresize": function () { }
  4437. }, {
  4438. closecallback: function () { }
  4439. }, { "style": { "height": "36px" } }).form; //创建窗体
  4440. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4441. break;
  4442. case "Wood": //Wood
  4443. _formdiv = new U.UF.UI.form(
  4444. "海龟编程",
  4445. $$("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/" }), {
  4446. "id": "Wood",
  4447. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4448. "onresize": function () { }
  4449. }, {
  4450. closecallback: function () { }
  4451. }, { "style": { "height": "36px" } }).form; //创建窗体
  4452. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4453. break;
  4454. case "car": //模拟驾驶
  4455. _formdiv = new U.UF.UI.form(
  4456. "模拟驾驶",
  4457. $$("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/" }), {
  4458. "id": "car",
  4459. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4460. "onresize": function () { }
  4461. }, {
  4462. closecallback: function () { }
  4463. }, { "style": { "height": "36px" } }).form; //创建窗体
  4464. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4465. break;
  4466. case "lineSearch": //路径搜索
  4467. _formdiv = new U.UF.UI.form(
  4468. "路径搜索",
  4469. $$("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/" }), {
  4470. "id": "lineSearch",
  4471. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4472. "onresize": function () { }
  4473. }, {
  4474. closecallback: function () { }
  4475. }, { "style": { "height": "36px" } }).form; //创建窗体
  4476. _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); } }
  4477. break;
  4478. case "deepLearning": //深度学习
  4479. _formdiv = new U.UF.UI.form(
  4480. "深度学习",
  4481. $$("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/#" }), {
  4482. "id": "deepLearning",
  4483. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4484. "onresize": function () { }
  4485. }, {
  4486. closecallback: function () { }
  4487. }, { "style": { "height": "36px" } }).form; //创建窗体
  4488. _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); } }
  4489. break;
  4490. case "allHistory": //深度学习
  4491. _formdiv = new U.UF.UI.form(
  4492. "全历史",
  4493. $$("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/" }), {
  4494. "id": "allHistory",
  4495. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4496. "onresize": function () { }
  4497. }, {
  4498. closecallback: function () { }
  4499. }, { "style": { "height": "36px" } }).form; //创建窗体
  4500. _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); } }
  4501. break;
  4502. case "chatPDF": //ai编程
  4503. _formdiv = new U.UF.UI.form(
  4504. "chatPDF",
  4505. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4506. "id": "chatPDF",
  4507. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4508. "onresize": function () { }
  4509. }, {
  4510. closecallback: function () { }
  4511. }, { "style": { "height": "36px" } }).form; //创建窗体
  4512. _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); } }
  4513. break;
  4514. case "resources": //国家教育
  4515. _formdiv = new U.UF.UI.form(
  4516. "国家教育",
  4517. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4518. "id": "resources",
  4519. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4520. "onresize": function () { }
  4521. }, {
  4522. closecallback: function () { }
  4523. }, { "style": { "height": "36px" } }).form; //创建窗体
  4524. _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); } }
  4525. break;
  4526. case "codeEdit": //源码编辑
  4527. _formdiv = new U.UF.UI.form(
  4528. "源码编辑",
  4529. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4530. "id": "codeEdit",
  4531. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4532. "onresize": function () { }
  4533. }, {
  4534. closecallback: function () { }
  4535. }, { "style": { "height": "36px" } }).form; //创建窗体
  4536. _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); } }
  4537. break; //
  4538. case "MindMap": //MindMap
  4539. _formdiv = new U.UF.UI.form(
  4540. "MindMap",
  4541. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4542. "id": "MindMap",
  4543. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4544. "onresize": function () { }
  4545. }, {
  4546. closecallback: function () { }
  4547. }, { "style": { "height": "36px" } }).form; //创建窗体
  4548. _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); } }
  4549. break;
  4550. case "netWorkPanel": //netWorkPanel
  4551. _formdiv = new U.UF.UI.form(
  4552. "netWorkPanel",
  4553. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4554. "id": "netWorkPanel",
  4555. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4556. "onresize": function () { }
  4557. }, {
  4558. closecallback: function () { }
  4559. }, { "style": { "height": "36px" } }).form; //创建窗体
  4560. _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); } }
  4561. break;
  4562. case "GeoGebra": //GeoGebra
  4563. _formdiv = new U.UF.UI.form(
  4564. "GeoGebra",
  4565. $$("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" }), {
  4566. "id": "GeoGebra",
  4567. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4568. "onresize": function () { }
  4569. }, {
  4570. closecallback: function () { }
  4571. }, { "style": { "height": "36px" } }).form; //创建窗体
  4572. _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); } }
  4573. break;
  4574. case "translation": //翻译
  4575. _formdiv = new U.UF.UI.form(
  4576. "翻译",
  4577. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4578. "id": "translation",
  4579. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4580. "onresize": function () { }
  4581. }, {
  4582. closecallback: function () { }
  4583. }, { "style": { "height": "36px" } }).form; //创建窗体
  4584. _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); } }
  4585. break;
  4586. case "mohe": //魔盒
  4587. _formdiv = new U.UF.UI.form(
  4588. "魔盒识字",
  4589. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4590. "id": "mohe",
  4591. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4592. "onresize": function () { }
  4593. }, {
  4594. closecallback: function () { }
  4595. }, { "style": { "height": "36px" } }).form; //创建窗体
  4596. _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); } }
  4597. break;
  4598. case "24game": //24点
  4599. _formdiv = new U.UF.UI.form(
  4600. "24点",
  4601. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4602. "id": "24game",
  4603. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4604. "onresize": function () { }
  4605. }, {
  4606. closecallback: function () { }
  4607. }, { "style": { "height": "36px" } }).form; //创建窗体
  4608. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4609. break;
  4610. case "case":
  4611. _formdiv = new U.UF.UI.form(
  4612. "课程进展",
  4613. $$("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 }), {
  4614. "id": "case",
  4615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4616. "onresize": function () { }
  4617. }, {
  4618. closecallback: function () { }
  4619. }, { "style": { "height": "36px" } }).form; //创建窗体
  4620. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4621. break;
  4622. case "snf":
  4623. _formdiv = new U.UF.UI.form(
  4624. "赛诺梵",
  4625. $$("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" }), {
  4626. "id": "snf",
  4627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4628. "onresize": function () { }
  4629. }, {
  4630. closecallback: function () { }
  4631. }, { "style": { "height": "36px" } }).form; //创建窗体
  4632. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4633. break;
  4634. case "hanFamily":
  4635. _formdiv = new U.UF.UI.form(
  4636. "汉字家族",
  4637. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4638. "id": "hanFamily",
  4639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4640. "onresize": function () { }
  4641. }, {
  4642. closecallback: function () { }
  4643. }, { "style": { "height": "36px" } }).form; //创建窗体
  4644. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4645. break;
  4646. case "hanClassics":
  4647. _formdiv = new U.UF.UI.form(
  4648. "国学经典",
  4649. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4650. "id": "hanClassics",
  4651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4652. "onresize": function () { }
  4653. }, {
  4654. closecallback: function () { }
  4655. }, { "style": { "height": "36px" } }).form; //创建窗体
  4656. _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); } }
  4657. break;
  4658. case "hanTraining":
  4659. _formdiv = new U.UF.UI.form(
  4660. "笔画训练",
  4661. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4662. "id": "hanTraining",
  4663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4664. "onresize": function () { }
  4665. }, {
  4666. closecallback: function () { }
  4667. }, { "style": { "height": "36px" } }).form; //创建窗体
  4668. _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); } }
  4669. break;
  4670. case "hanClass":
  4671. _formdiv = new U.UF.UI.form(
  4672. "书法课堂",
  4673. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4674. "id": "hanClass",
  4675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4676. "onresize": function () { }
  4677. }, {
  4678. closecallback: function () { }
  4679. }, { "style": { "height": "36px" } }).form; //创建窗体
  4680. _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); } }
  4681. break;
  4682. case "han":
  4683. _formdiv = new U.UF.UI.form(
  4684. "汉字宫",
  4685. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4686. "id": "han",
  4687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4688. "onresize": function () { }
  4689. }, {
  4690. closecallback: function () { }
  4691. }, { "style": { "height": "36px" } }).form; //创建窗体
  4692. _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); } }
  4693. break;
  4694. case "projectGM": //课程管理
  4695. _formdiv = new U.UF.UI.form(
  4696. "课程管理",
  4697. $$("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 }), {
  4698. "id": "projectGM",
  4699. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4700. "onresize": function () { }
  4701. }, {
  4702. closecallback: function () { }
  4703. }, { "style": { "height": "36px" } }).form; //创建窗体
  4704. _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); } }
  4705. break;
  4706. case "studyGM": //课程中心
  4707. _formdiv = new U.UF.UI.form(
  4708. "课程中心",
  4709. $$("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
  4710. "id": "study",
  4711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4712. "onresize": function () { }
  4713. }, {
  4714. closecallback: function () { }
  4715. }, { "style": { "height": "36px" } }).form; //创建窗体
  4716. _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); } }
  4717. break;
  4718. // studentGM
  4719. case "studentGM": //学生管理
  4720. _formdiv = new U.UF.UI.form(
  4721. "学生管理",
  4722. $$("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 }), {
  4723. "id": "studentGM",
  4724. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4725. "onresize": function () { }
  4726. }, {
  4727. closecallback: function () { }
  4728. }, { "style": { "height": "36px" } }).form; //创建窗体
  4729. _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); } }
  4730. break;
  4731. case "evaluateGM": //学生评价
  4732. _formdiv = new U.UF.UI.form(
  4733. "学生评价",
  4734. $$("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 }), {
  4735. "id": "evaluateGM",
  4736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4737. "onresize": function () { }
  4738. }, {
  4739. closecallback: function () { }
  4740. }, { "style": { "height": "36px" } }).form; //创建窗体
  4741. _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); } }
  4742. break;
  4743. // classGM
  4744. case "classGM": //班级管理
  4745. _formdiv = new U.UF.UI.form(
  4746. "班级管理",
  4747. $$("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 }), {
  4748. "id": "classGM",
  4749. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4750. "onresize": function () { }
  4751. }, {
  4752. closecallback: function () { }
  4753. }, { "style": { "height": "36px" } }).form; //创建窗体
  4754. _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); } }
  4755. break;
  4756. // dataGM
  4757. case "dataGM":
  4758. _formdiv = new U.UF.UI.form(
  4759. "我的资料",
  4760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  4761. "id": "dataGM",
  4762. "style": { "width": "42%", "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/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4768. break;
  4769. // caseGM
  4770. case "caseGM": //课程进展
  4771. _formdiv = new U.UF.UI.form(
  4772. "课程进展",
  4773. $$("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 }), {
  4774. "id": "caseGM",
  4775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4776. "onresize": function () { }
  4777. }, {
  4778. closecallback: function () { }
  4779. }, { "style": { "height": "36px" } }).form; //创建窗体
  4780. _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); } }
  4781. break;
  4782. // meterialGM
  4783. case "meterialGM": //素材库
  4784. _formdiv = new U.UF.UI.form(
  4785. "素材库",
  4786. $$("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 }), {
  4787. "id": "meterialGM",
  4788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4789. "onresize": function () { }
  4790. }, {
  4791. closecallback: function () { }
  4792. }, { "style": { "height": "36px" } }).form; //创建窗体
  4793. _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); } }
  4794. break;
  4795. // evaluateSGM
  4796. case "evaluateSGM": //我的评价
  4797. _formdiv = new U.UF.UI.form(
  4798. "我的评价",
  4799. $$("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 }), {
  4800. "id": "evaluateSGM",
  4801. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4802. "onresize": function () { }
  4803. }, {
  4804. closecallback: function () { }
  4805. }, { "style": { "height": "36px" } }).form; //创建窗体
  4806. _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); } }
  4807. break;
  4808. case "jupyter": //jupyter
  4809. _formdiv = new U.UF.UI.form(
  4810. "jupyter",
  4811. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4812. "id": "jupyter",
  4813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4814. "onresize": function () { }
  4815. }, {
  4816. closecallback: function () { }
  4817. }, { "style": { "height": "36px" } }).form; //创建窗体
  4818. _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); } }
  4819. break;
  4820. case "number": //数字实验室
  4821. _formdiv = new U.UF.UI.form(
  4822. "数字实验室",
  4823. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  4824. "id": "number",
  4825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4826. "onresize": function () { }
  4827. }, {
  4828. closecallback: function () { }
  4829. }, { "style": { "height": "36px" } }).form; //创建窗体
  4830. _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); } }
  4831. break;
  4832. case "studentCourse": //项目管理 学生
  4833. _formdiv = new U.UF.UI.form(
  4834. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4835. $$("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 }), {
  4836. "id": "studentCourse",
  4837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4838. "onresize": function () { }
  4839. }, {
  4840. closecallback: function () { }
  4841. }, { "style": { "height": "36px" } }).form; //创建窗体
  4842. _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); } }
  4843. break;
  4844. case "studentCourseS": //项目管理 老师
  4845. _formdiv = new U.UF.UI.form(
  4846. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4847. $$("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 }), {
  4848. "id": "studentCourseS",
  4849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4850. "onresize": function () { }
  4851. }, {
  4852. closecallback: function () { }
  4853. }, { "style": { "height": "36px" } }).form; //创建窗体
  4854. _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); } }
  4855. break;
  4856. case "studentIndex": //项目中心
  4857. _formdiv = new U.UF.UI.form(
  4858. "项目中心",
  4859. $$("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 }), {
  4860. "id": "studentIndex",
  4861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4862. "onresize": function () { }
  4863. }, {
  4864. closecallback: function () { }
  4865. }, { "style": { "height": "36px" } }).form; //创建窗体
  4866. _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); } }
  4867. break;
  4868. case "CaseDesignS":
  4869. _formdiv = new U.UF.UI.form(
  4870. "项目进展",
  4871. $$("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 }), {
  4872. "id": "case",
  4873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4874. "onresize": function () { }
  4875. }, {
  4876. closecallback: function () { }
  4877. }, { "style": { "height": "36px" } }).form; //创建窗体
  4878. _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); } }
  4879. break;
  4880. case "tcStudent": //腾讯学生管理
  4881. _formdiv = new U.UF.UI.form(
  4882. "学生管理",
  4883. $$("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 }), {
  4884. "id": "tcStudent",
  4885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4886. "onresize": function () { }
  4887. }, {
  4888. closecallback: function () { }
  4889. }, { "style": { "height": "36px" } }).form; //创建窗体
  4890. _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); } }
  4891. break;
  4892. case "tcSchool": //腾讯学校管理
  4893. _formdiv = new U.UF.UI.form(
  4894. "学校管理",
  4895. $$("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 }), {
  4896. "id": "tcSchool",
  4897. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4898. "onresize": function () { }
  4899. }, {
  4900. closecallback: function () { }
  4901. }, { "style": { "height": "36px" } }).form; //创建窗体
  4902. _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); } }
  4903. break;
  4904. case "tcTeacher": //腾讯学校管理
  4905. _formdiv = new U.UF.UI.form(
  4906. "教师管理",
  4907. $$("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 }), {
  4908. "id": "tcTeacher",
  4909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4910. "onresize": function () { }
  4911. }, {
  4912. closecallback: function () { }
  4913. }, { "style": { "height": "36px" } }).form; //创建窗体
  4914. _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); } }
  4915. break;
  4916. case "tcData": //腾讯我的资料
  4917. _formdiv = new U.UF.UI.form(
  4918. "我的资料",
  4919. $$("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 }), {
  4920. "id": "tcData",
  4921. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4922. "onresize": function () { }
  4923. }, {
  4924. closecallback: function () { }
  4925. }, { "style": { "height": "36px" } }).form; //创建窗体
  4926. _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); } }
  4927. break;
  4928. case "tcNotice": //腾讯消息通知
  4929. _formdiv = new U.UF.UI.form(
  4930. "消息通知",
  4931. $$("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 }), {
  4932. "id": "tcNotice",
  4933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4934. "onresize": function () { }
  4935. }, {
  4936. closecallback: function () { }
  4937. }, { "style": { "height": "36px" } }).form; //创建窗体
  4938. _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); } }
  4939. break;
  4940. case "myReport": //好友打开
  4941. _formdiv = new U.UF.UI.form(
  4942. "我的评价",
  4943. $$("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 }), {
  4944. "id": "myReport",
  4945. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4946. "onresize": function () { }
  4947. }, {
  4948. closecallback: function () { }
  4949. }, { "style": { "height": "36px" } }).form; //创建窗体
  4950. _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); } }
  4951. break;
  4952. case "learnAna": //好友打开
  4953. _formdiv = new U.UF.UI.form(
  4954. "学习分析",
  4955. $$("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 }), {
  4956. "id": "learnAna",
  4957. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4958. "onresize": function () { }
  4959. }, {
  4960. closecallback: function () { }
  4961. }, { "style": { "height": "36px" } }).form; //创建窗体
  4962. _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); } }
  4963. break;
  4964. case "AIChat": //AI共创
  4965. _formdiv = new U.UF.UI.form(
  4966. "AI共创",
  4967. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4968. "id": "AIChat",
  4969. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4970. "onresize": function () { }
  4971. }, {
  4972. istop: true,
  4973. closecallback: function () { $("#aichat_icon").remove(); },
  4974. narrowcallback: function () {
  4975. if (!$("#aichat_icon")[0]) {
  4976. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4977. }
  4978. },
  4979. }, { "style": { "height": "36px" } }).form; //创建窗体
  4980. _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); } }
  4981. break;
  4982. case "ainew": //AI共创
  4983. _formdiv = new U.UF.UI.form(
  4984. "AI协同",
  4985. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4986. "id": "ainew",
  4987. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4988. "onresize": function () { }
  4989. }, {
  4990. closecallback: function () { }
  4991. }, { "style": { "height": "36px" } }).form; //创建窗体
  4992. _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); } }
  4993. break;
  4994. case "gpt4": //gpt4
  4995. _formdiv = new U.UF.UI.form(
  4996. "AI助手",
  4997. $$("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 }), {
  4998. "id": "gpt4",
  4999. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5000. "onresize": function () { }
  5001. }, {
  5002. closecallback: function () { }
  5003. }, { "style": { "height": "36px" } }).form; //创建窗体
  5004. _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); } }
  5005. break;
  5006. case "aigpt": //gpt4
  5007. _formdiv = new U.UF.UI.form(
  5008. "AI助手+",
  5009. $$("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 }), {
  5010. "id": "aigpt",
  5011. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5012. "onresize": function () { }
  5013. }, {
  5014. closecallback: function () { }
  5015. }, { "style": { "height": "36px" } }).form; //创建窗体
  5016. _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); } }
  5017. break;
  5018. case "futureClass": //AI共创
  5019. _formdiv = new U.UF.UI.form(
  5020. "协同建构",
  5021. $$("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
  5022. "id": "synergyCourse",
  5023. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5024. "onresize": function () { }
  5025. }, {
  5026. closecallback: function () {
  5027. $("iframe", _formdiv)[0].contentWindow.loginout();
  5028. }
  5029. }, { "style": { "height": "36px" } }).form; //创建窗体
  5030. _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); } }
  5031. break;
  5032. case "aiagent": //ai agent
  5033. _formdiv = new U.UF.UI.form(
  5034. "AI Agent",
  5035. $$("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" }), {
  5036. "id": "AIAgent",
  5037. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5038. "onresize": function () { }
  5039. }, {
  5040. closecallback: function () { }
  5041. }, { "style": { "height": "36px" } }).form; //创建窗体
  5042. _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); } }
  5043. break;
  5044. case "dataBoard": //数据看板
  5045. _formdiv = new U.UF.UI.form(
  5046. "数据看板",
  5047. $$("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 }), {
  5048. "id": "dataBoard",
  5049. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5050. "onresize": function () { }
  5051. }, {
  5052. closecallback: function () { }
  5053. }, { "style": { "height": "36px" } }).form; //创建窗体
  5054. _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); } }
  5055. break;
  5056. case "dataBoardSies": //数据融合
  5057. _formdiv = new U.UF.UI.form(
  5058. "数据融合",
  5059. $$("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 }), {
  5060. "id": "dataBoardSies",
  5061. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5062. "onresize": function () { }
  5063. }, {
  5064. closecallback: function () { }
  5065. }, { "style": { "height": "36px" } }).form; //创建窗体
  5066. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5067. break;
  5068. case "dataBoardNew": //数据看板
  5069. _formdiv = new U.UF.UI.form(
  5070. "综合看板",
  5071. $$("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 }), {
  5072. "id": "dataBoardNew",
  5073. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5074. "onresize": function () { }
  5075. }, {
  5076. closecallback: function () { }
  5077. }, { "style": { "height": "36px" } }).form; //创建窗体
  5078. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5079. break;
  5080. case "dataBoardTest": //数据看板
  5081. _formdiv = new U.UF.UI.form(
  5082. "评测看板",
  5083. $$("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 }), {
  5084. "id": "dataBoardTest",
  5085. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5086. "onresize": function () { }
  5087. }, {
  5088. closecallback: function () { }
  5089. }, { "style": { "height": "36px" } }).form; //创建窗体
  5090. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5091. break;
  5092. case "AIAnalyse": //AI共创
  5093. _formdiv = new U.UF.UI.form(
  5094. "AI分析",
  5095. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5096. "id": "AIAnalyse",
  5097. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5098. "onresize": function () { }
  5099. }, {
  5100. closecallback: function () { }
  5101. }, { "style": { "height": "36px" } }).form; //创建窗体
  5102. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5103. break;
  5104. case "studioCourse": //AI共创
  5105. _formdiv = new U.UF.UI.form(
  5106. "工作管理",
  5107. $$("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 }), {
  5108. "id": "studioCourse",
  5109. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5110. "onresize": function () { }
  5111. }, {
  5112. closecallback: function () { }
  5113. }, { "style": { "height": "36px" } }).form; //创建窗体
  5114. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5115. break;
  5116. case "studioIndex": //AI共创
  5117. _formdiv = new U.UF.UI.form(
  5118. "工作中心",
  5119. $$("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 }), {
  5120. "id": "studioIndex",
  5121. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5122. "onresize": function () { }
  5123. }, {
  5124. closecallback: function () { }
  5125. }, { "style": { "height": "36px" } }).form; //创建窗体
  5126. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5127. break;
  5128. case "source":
  5129. _formdiv = new U.UF.UI.form(
  5130. "教学资源",
  5131. $$("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 }), {
  5132. "id": "source",
  5133. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5134. "onresize": function () { }
  5135. }, {
  5136. closecallback: function () { }
  5137. }, { "style": { "height": "36px" } }).form; //创建窗体
  5138. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5139. break;
  5140. case "testTeacher":
  5141. _formdiv = new U.UF.UI.form(
  5142. "教师管理",
  5143. $$("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 }), {
  5144. "id": "testTeacher",
  5145. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5146. "onresize": function () { }
  5147. }, {
  5148. closecallback: function () { }
  5149. }, { "style": { "height": "36px" } }).form; //创建窗体
  5150. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5151. break;
  5152. case "testStudent":
  5153. _formdiv = new U.UF.UI.form(
  5154. "教师中心",
  5155. $$("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 }), {
  5156. "id": "testStudent",
  5157. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5158. "onresize": function () { }
  5159. }, {
  5160. closecallback: function () { }
  5161. }, { "style": { "height": "36px" } }).form; //创建窗体
  5162. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5163. break;
  5164. case "testTeacherSies":
  5165. _formdiv = new U.UF.UI.form(
  5166. "教师管理",
  5167. $$("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 }), {
  5168. "id": "testTeacherSies",
  5169. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5170. "onresize": function () { }
  5171. }, {
  5172. closecallback: function () { }
  5173. }, { "style": { "height": "36px" } }).form; //创建窗体
  5174. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5175. break;
  5176. case "testStudentSies":
  5177. _formdiv = new U.UF.UI.form(
  5178. "教师中心",
  5179. $$("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 }), {
  5180. "id": "testStudentSies",
  5181. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5182. "onresize": function () { }
  5183. }, {
  5184. closecallback: function () { }
  5185. }, { "style": { "height": "36px" } }).form; //创建窗体
  5186. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5187. break;
  5188. case "ytpbl": //消息通知
  5189. _formdiv = new U.UF.UI.form(
  5190. "案例征集",
  5191. $$("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 }), {
  5192. "id": "ytpbl",
  5193. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5194. "onresize": function () { }
  5195. }, {
  5196. closecallback: function () { }
  5197. }, { "style": { "height": "36px" } }).form; //创建窗体
  5198. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5199. // 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");
  5200. break;
  5201. case "aiCourseResource": //人工智能窗体
  5202. _formdiv = new U.UF.UI.form(
  5203. false,
  5204. $$("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 }), {
  5205. "id": "aiCourseResource",
  5206. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5207. "onresize": function () { },
  5208. "isdrag": false,
  5209. }, {
  5210. closecallback: function () { }
  5211. }, { "style": { "height": "36px" } }).form; //创建窗体
  5212. _taskbar = ''
  5213. break;
  5214. case "szdjgCocooroboX": //图形化编程
  5215. _formdiv = new U.UF.UI.form(
  5216. "图形化编程",
  5217. $$("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" }), {
  5218. "id": "szdjgCocooroboX",
  5219. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5220. "onresize": function () { }
  5221. }, {
  5222. closecallback: function () { }
  5223. }, { "style": { "height": "36px" } }).form; //创建窗体
  5224. _taskbar = ''
  5225. break;
  5226. case "szdjgPython": //python编程
  5227. _formdiv = new U.UF.UI.form(
  5228. "Python编程",
  5229. $$("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" }), {
  5230. "id": "szdjgPython",
  5231. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5232. "onresize": function () { }
  5233. }, {
  5234. closecallback: function () { }
  5235. }, { "style": { "height": "36px" } }).form; //创建窗体
  5236. _taskbar = ''
  5237. break;
  5238. case "Record":
  5239. _formdiv = new U.UF.UI.form(
  5240. "观察记录",
  5241. $$("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 }), {
  5242. "id": "Record",
  5243. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5244. "onresize": function () { }
  5245. }, {
  5246. closecallback: function () { }
  5247. }, { "style": { "height": "36px" } }).form; //创建窗体
  5248. _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); } }
  5249. break;
  5250. case "aigptCourse":
  5251. _formdiv = new U.UF.UI.form(
  5252. "AI智能体",
  5253. $$("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' }), {
  5254. "id": "aigptCourse",
  5255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5256. "onresize": function () { }
  5257. }, {
  5258. closecallback: function () { }
  5259. }, { "style": { "height": "36px" } }).form; //创建窗体
  5260. _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); } }
  5261. break;
  5262. case "classroomObservation":
  5263. _formdiv = new U.UF.UI.form(
  5264. "课堂观察",
  5265. $$("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 }), {
  5266. "id": "classroomObservation",
  5267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5268. "onresize": function () { }
  5269. }, {
  5270. closecallback: function () { }
  5271. }, { "style": { "height": "36px" } }).form; //创建窗体
  5272. _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); } }
  5273. break;
  5274. }
  5275. //U.MD.D.I.openClick(str);
  5276. //如果有任务栏信息
  5277. if (_taskbar) {
  5278. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5279. }
  5280. }
  5281. // U.MD.D.I.openClick = function(str){
  5282. // var click = '';
  5283. // switch(str){
  5284. // case 'friend':
  5285. // click = '我的好友';
  5286. // break;
  5287. // case 'domain':
  5288. // click = '域名管理';
  5289. // break;
  5290. // case 'disk':
  5291. // click = '我的云盘';
  5292. // break;
  5293. // case 'word':
  5294. // click = 'Word';
  5295. // break;
  5296. // case 'excel':
  5297. // click = 'Execl';
  5298. // break;
  5299. // case 'txt':
  5300. // click = '文本文件';
  5301. // break;
  5302. // case 'lookupFriend':
  5303. // click = '查找好友';
  5304. // break;
  5305. // case 'ftp':
  5306. // click = 'FTP';
  5307. // break;
  5308. // case 'group':
  5309. // click = '群组';
  5310. // break;
  5311. // case 'set':
  5312. // click = '我的设置';
  5313. // break;
  5314. // case 'systemSet':
  5315. // click = '系统设置';
  5316. // break;
  5317. // case 'boomYun':
  5318. // click = '互联办公';
  5319. // break;
  5320. // case 'xz':
  5321. // click = '云端下载';
  5322. // break;
  5323. // case 'client':
  5324. // click = '有思浏览器';
  5325. // break;
  5326. // case 'backEndProgramming':
  5327. // click = '在线后台编程';
  5328. // break;
  5329. // case 'frontEndProgramming':
  5330. // click = '在线前端编程';
  5331. // break;
  5332. // default: break;
  5333. // }
  5334. // if(U.MD.D.I.Ip && click){
  5335. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5336. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5337. // })
  5338. // }
  5339. // }
  5340. /**
  5341. *函数作用:ajax简易函数,使用post格式
  5342. *@param url {data} 后台地址
  5343. *@param data {data} 参数json
  5344. *@param fn {data} 回调函数
  5345. *
  5346. */
  5347. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5348. // var xhr = new XMLHttpRequest();
  5349. // xhr.open("GET",url,true);
  5350. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5351. // xhr.onreadystatechange = function(){
  5352. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5353. // fn.call(this,xhr.responseText);
  5354. // }
  5355. // };
  5356. // xhr.send();
  5357. // }
  5358. /*判断是否是内网IP*/
  5359. // U.MD.D.I.isInnerIPFn = function(str){
  5360. // var curPageUrl = str;
  5361. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5362. // curPageUrl =curPageUrl.replace(reg1,'');
  5363. // // console.log('curPageUrl-1 '+curPageUrl);
  5364. // var reg2 = /\:+/g;//替换冒号为一点
  5365. // curPageUrl =curPageUrl.replace(reg2,'.');
  5366. // // console.log('curPageUrl-2 '+curPageUrl);
  5367. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5368. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5369. // if(curPageUrl[2] != '16'){
  5370. // return ipAddress;
  5371. // }else{
  5372. // return false;
  5373. // }
  5374. // }
  5375. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5376. // //compatibility for firefox and chrome
  5377. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5378. // var pc = new myPeerConnection({
  5379. // iceServers: []
  5380. // }),
  5381. // noop = function() {},
  5382. // localIPs = {},
  5383. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5384. // key;
  5385. // function iterateIP(ip) {
  5386. // if (!localIPs[ip]) onNewIP(ip);
  5387. // localIPs[ip] = true;
  5388. // }
  5389. // //create a bogus data channel
  5390. // pc.createDataChannel("");
  5391. // // create offer and set local description
  5392. // pc.createOffer().then(function(sdp) {
  5393. // sdp.sdp.split('\n').forEach(function(line) {
  5394. // if (line.indexOf('candidate') < 0) return;
  5395. // line.match(ipRegex).forEach(iterateIP);
  5396. // });
  5397. // pc.setLocalDescription(sdp, noop, noop);
  5398. // }).catch(function(reason) {
  5399. // // An error occurred, so handle the failure to connect
  5400. // });
  5401. // //sten for candidate events
  5402. // pc.onicecandidate = function(ice) {
  5403. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5404. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5405. // };
  5406. // }
  5407. // U.MD.D.I.getUserIpBool = function(callback){
  5408. // U.MD.D.I.getUserIP(function(ip){
  5409. // alert("Got IP! :" + ip);
  5410. // });
  5411. //}
  5412. //#endregion
  5413. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5414. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5415. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5416. _userinfo = US.userInfo, //登录用户信息
  5417. _userid = US.userInfo.userid //登录用户id
  5418. let _iframe;
  5419. let _cid = cid,
  5420. _stage = stage,
  5421. _task = task,
  5422. _tool = tool;
  5423. var _jie = $$("div", {
  5424. "style": {
  5425. "position": "absolute",
  5426. "bottom": "50px",
  5427. "right": "50px",
  5428. "zIndex": "9999",
  5429. "backgroundColor": "#2268bc",
  5430. "color": "#fff",
  5431. "padding": "12px 20px",
  5432. "cursor": "pointer",
  5433. "borderRadius": "4px",
  5434. },
  5435. "innerHTML": "提交作业"
  5436. })
  5437. let aTool = ''
  5438. let _loading = document.createElement('div')
  5439. _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;"
  5440. // _loading.id = "";
  5441. let _lchild = document.createElement('div')
  5442. let _limg = document.createElement('img')
  5443. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5444. _limg.style = "width: 26px;margin-right: 10px;"
  5445. _lchild.appendChild(_limg)
  5446. let _lspan = document.createElement('span')
  5447. _lspan.innerHTML = "上传中..."
  5448. _lchild.appendChild(_lspan)
  5449. _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%);"
  5450. _loading.appendChild(_lchild)
  5451. var _box = $$('div', {
  5452. "style": {
  5453. "position": "relative",
  5454. "width": "100%",
  5455. "height": "100%",
  5456. },
  5457. })
  5458. _box.appendChild(_loading)
  5459. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5460. switch (str) {
  5461. case "whiteboard":
  5462. aTool = 1;
  5463. _iframe = $$("iframe", {
  5464. "frameborder": "no",
  5465. "border": "0",
  5466. "scrolling ": "no",
  5467. "style": {
  5468. "cssText": "border:0;width:100%;height:100%"
  5469. },
  5470. "src": "https://beta.iwb.cocorobo.cn/"
  5471. })
  5472. _box.appendChild(_iframe);
  5473. _box.appendChild(_jie);
  5474. _formdiv = new U.UF.UI.form(
  5475. "电子白板",
  5476. _box, {
  5477. "id": "whiteboard" + cid + stage + task + tool,
  5478. "style": {
  5479. "width": "90%",
  5480. "height": "90%",
  5481. "overflow": 'hidden'
  5482. },
  5483. "onresize": function () { }
  5484. }, {
  5485. closecallback: function () { }
  5486. }, {
  5487. "style": {
  5488. "height": "36px"
  5489. }
  5490. }).form; //创建窗体
  5491. _taskbar = {
  5492. "id": str + _formdiv.id,
  5493. "style": {
  5494. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5495. },
  5496. "name": "电子白板",
  5497. "forms": _formdiv,
  5498. "click": function () {
  5499. U.MD.D.I.openApplication(str, obj, info);
  5500. }
  5501. }
  5502. break;
  5503. case "mind":
  5504. aTool = 3;
  5505. _iframe = $$("iframe", {
  5506. "frameborder": "no",
  5507. "border": "0",
  5508. "scrolling ": "no",
  5509. "style": {
  5510. "cssText": "border:0;width:100%;height:100%"
  5511. },
  5512. "src": "/kityminder-editor/dist/index.html"
  5513. })
  5514. _box.appendChild(_iframe);
  5515. _box.appendChild(_jie);
  5516. _formdiv = new U.UF.UI.form(
  5517. "思维导图",
  5518. _box, { //"/jsmind/example/demo.html"
  5519. "id": "mind" + cid + stage + task + tool,
  5520. "style": {
  5521. "width": "90%",
  5522. "height": "90%",
  5523. "overflow": 'hidden'
  5524. },
  5525. "onresize": function () { }
  5526. }, {
  5527. closecallback: function () { }
  5528. }, {
  5529. "style": {
  5530. "height": "36px"
  5531. }
  5532. }).form; //创建窗体
  5533. _taskbar = {
  5534. "id": str + _formdiv.id,
  5535. "style": {
  5536. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5537. },
  5538. "name": "思维导图",
  5539. "forms": _formdiv,
  5540. "click": function () {
  5541. U.MD.D.I.openApplication(str, obj, info);
  5542. }
  5543. }
  5544. break;
  5545. case "MindMap":
  5546. aTool = 3;
  5547. _iframe = $$("iframe", {
  5548. "frameborder": "no",
  5549. "border": "0",
  5550. "scrolling ": "no",
  5551. "style": {
  5552. "cssText": "border:0;width:100%;height:100%"
  5553. },
  5554. "src": "//cloud.cocorobo.cn/mind/"
  5555. })
  5556. _box.appendChild(_iframe);
  5557. _box.appendChild(_jie);
  5558. _formdiv = new U.UF.UI.form(
  5559. "思维导图",
  5560. _box, { //"/jsmind/example/demo.html"
  5561. "id": "mind" + cid + stage + task + tool,
  5562. "style": {
  5563. "width": "90%",
  5564. "height": "90%",
  5565. "overflow": 'hidden'
  5566. },
  5567. "onresize": function () { }
  5568. }, {
  5569. closecallback: function () { }
  5570. }, {
  5571. "style": {
  5572. "height": "36px"
  5573. }
  5574. }).form; //创建窗体
  5575. _taskbar = {
  5576. "id": str + _formdiv.id,
  5577. "style": {
  5578. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5579. },
  5580. "name": "思维导图",
  5581. "forms": _formdiv,
  5582. "click": function () {
  5583. U.MD.D.I.openApplication(str, obj, info);
  5584. }
  5585. }
  5586. break;
  5587. case "doc":
  5588. aTool = 6;
  5589. _iframe = $$("iframe", {
  5590. "frameborder": "no",
  5591. "border": "0",
  5592. "scrolling ": "no",
  5593. "style": {
  5594. "cssText": "border:0;width:100%;height:100%"
  5595. },
  5596. "src": "/Office/Word/WordEditArea.htm"
  5597. })
  5598. _box.appendChild(_iframe);
  5599. _box.appendChild(_jie);
  5600. _formdiv = new U.UF.UI.form(
  5601. "协同文档",
  5602. _box, {
  5603. "id": "doc" + cid + stage + task + tool,
  5604. "style": {
  5605. "width": "90%",
  5606. "height": "90%",
  5607. "overflow": 'hidden'
  5608. },
  5609. "onresize": function () { }
  5610. }, {
  5611. closecallback: function () { }
  5612. }, {
  5613. "style": {
  5614. "height": "36px"
  5615. }
  5616. }).form; //创建窗体
  5617. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5618. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5619. })
  5620. _taskbar = {
  5621. "id": str + _formdiv.id,
  5622. "style": {
  5623. "backgroundImage": "url(/img/icon/doc.png)"
  5624. },
  5625. "name": "协同文档",
  5626. "forms": _formdiv,
  5627. "click": function () {
  5628. U.MD.D.I.openApplication(str, obj, info);
  5629. }
  5630. }
  5631. break;
  5632. case "mindNetwork": //好友打开
  5633. aTool = 7;
  5634. _iframe = $$("iframe", {
  5635. "webkitallowfullscreen": "",
  5636. "mozallowfullscreen": "",
  5637. "allowfullscreen": "",
  5638. "frameborder": "no",
  5639. "border": "0",
  5640. "scrolling ": "no",
  5641. "style": {
  5642. "cssText": "border:0; width:100%; height:100%;"
  5643. },
  5644. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5645. })
  5646. _box.appendChild(_iframe);
  5647. _box.appendChild(_jie);
  5648. _formdiv = new U.UF.UI.form(
  5649. "思维网格",
  5650. _box, {
  5651. "id": "mindNetwork" + cid + stage + task + tool,
  5652. "style": {
  5653. "width": "90%",
  5654. "height": "90%",
  5655. "overflow": 'hidden'
  5656. },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, {
  5661. "style": {
  5662. "height": "36px"
  5663. }
  5664. }).form; //创建窗体
  5665. _taskbar = {
  5666. "id": str + _formdiv.id,
  5667. "style": {
  5668. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5669. },
  5670. "name": "思维网格",
  5671. "forms": _formdiv,
  5672. "click": function () {
  5673. U.MD.D.I.openApplication(str, obj, info);
  5674. }
  5675. }
  5676. break;
  5677. case "courseDesign":
  5678. _iframe = $$("iframe", {
  5679. "webkitallowfullscreen": "",
  5680. "mozallowfullscreen": "",
  5681. "allowfullscreen": "",
  5682. "frameborder": "no",
  5683. "border": "0",
  5684. "scrolling ": "no",
  5685. "style": {
  5686. "cssText": "border:0; width:100%; height:100%;"
  5687. },
  5688. "src": "/course-design-vue"
  5689. })
  5690. _box.appendChild(_iframe);
  5691. _box.appendChild(_jie);
  5692. _formdiv = new U.UF.UI.form(
  5693. "项目设计",
  5694. _box, {
  5695. "id": "courseDesign" + cid + stage + task + tool,
  5696. "style": {
  5697. "width": "90%",
  5698. "height": "90%",
  5699. "overflow": 'hidden'
  5700. },
  5701. "onresize": function () { }
  5702. }, {
  5703. closecallback: function () { }
  5704. }, {
  5705. "style": {
  5706. "height": "36px"
  5707. }
  5708. }).form; //创建窗体
  5709. _taskbar = {
  5710. "id": str + _formdiv.id,
  5711. "style": {
  5712. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5713. },
  5714. "name": "项目设计",
  5715. "forms": _formdiv,
  5716. "click": function () {
  5717. U.MD.D.I.openApplication(str, obj, info);
  5718. }
  5719. }
  5720. break;
  5721. }
  5722. const script1 = document.createElement("script");
  5723. script1.type = "text/javascript";
  5724. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5725. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5726. const script2 = document.createElement("script");
  5727. script2.type = "text/javascript";
  5728. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5729. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5730. const script3 = document.createElement("script");
  5731. script3.type = "text/javascript";
  5732. script3.charset = "UTF-8";
  5733. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5734. const script4 = document.createElement("script");
  5735. script4.type = "text/javascript";
  5736. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5737. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5738. if (_iframe) {
  5739. if (str == 'doc') {
  5740. _iframe = _formdiv.querySelector('iframe')
  5741. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5742. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5743. _iframe.contentWindow.document.body.appendChild(script1);
  5744. _iframe.contentWindow.document.body.appendChild(script2);
  5745. // _iframe.contentWindow.document.body.appendChild(script3);
  5746. _iframe.contentWindow.document.body.appendChild(script4);
  5747. })
  5748. if (onloadListener) {
  5749. _iframe.contentDocument.location.reload()
  5750. } else {
  5751. _iframe.contentDocument.location.reload()
  5752. }
  5753. } else if (str == 'courseDesign') {
  5754. U.UF.DL.iframeLoad(_iframe, function () {
  5755. // _iframe.contentWindow.U.MD.O.W.load();
  5756. // _iframe.contentWindow.document.body.appendChild(script1);
  5757. _iframe.contentWindow.document.body.appendChild(script2);
  5758. _iframe.contentWindow.document.body.appendChild(script4);
  5759. })
  5760. } else if (str == 'mind') {
  5761. _iframe = _formdiv.querySelector('iframe')
  5762. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5763. //
  5764. _iframe.contentWindow.document.body.appendChild(script1);
  5765. _iframe.contentWindow.document.body.appendChild(script2);
  5766. _iframe.contentWindow.document.body.appendChild(script4);
  5767. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5768. })
  5769. if (onloadListener) {
  5770. _iframe.contentDocument.location.reload()
  5771. } else {
  5772. _iframe.contentDocument.location.reload()
  5773. }
  5774. } else if (str == 'whiteboard') {
  5775. _iframe = _formdiv.querySelector('iframe')
  5776. let onloadListener = _iframe.onload = () => {
  5777. _iframe.contentWindow.document.body.appendChild(script1);
  5778. _iframe.contentWindow.document.body.appendChild(script2);
  5779. _iframe.contentWindow.document.body.appendChild(script4);
  5780. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5781. };
  5782. if (onloadListener) {
  5783. _iframe.contentDocument.location.reload()
  5784. } else {
  5785. _iframe.contentDocument.location.reload()
  5786. }
  5787. } else {
  5788. _iframe.onload = () => {
  5789. _iframe.contentWindow.document.body.appendChild(script1);
  5790. _iframe.contentWindow.document.body.appendChild(script2);
  5791. // _iframe.contentWindow.document.body.appendChild(script3);
  5792. _iframe.contentWindow.document.body.appendChild(script4);
  5793. };
  5794. }
  5795. _jie.onclick = async () => {
  5796. let text = ''
  5797. if (aTool == 1) {
  5798. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5799. } else if (aTool == 6) {
  5800. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5801. } else if (aTool == 3) {
  5802. text = await U.MD.D.I.getEditorContent(_iframe);
  5803. }
  5804. _loading.style.display = 'flex'
  5805. console.log(_loading);
  5806. var _ajs = _iframe.contentWindow.document.createElement("script");
  5807. _ajs.type = "text/javascript";
  5808. _ajs.innerHTML =
  5809. // 'console.log(' + _loading + ');\n' +
  5810. 'var _js = document.createElement("script");\n' +
  5811. '_js.type="text/javascript";\n' +
  5812. '_js.charset="UTF-8";\n' +
  5813. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5814. "_js.onload = function(){\n" +
  5815. ' var a = document.getElementsByTagName("img")\n' +
  5816. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5817. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5818. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5819. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5820. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5821. "beforeUpload_shishi(file," +
  5822. "'" +
  5823. _userid +
  5824. "'" +
  5825. ", " +
  5826. "'" +
  5827. _cid +
  5828. "'" +
  5829. ", " +
  5830. "'" +
  5831. _stage +
  5832. "'" +
  5833. ", " +
  5834. "'" +
  5835. _task +
  5836. "'" +
  5837. ", " +
  5838. "'" +
  5839. _tool +
  5840. "'" +
  5841. ", " +
  5842. "'" +
  5843. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5844. "'" +
  5845. ", " +
  5846. "'" +
  5847. aTool +
  5848. "'" +
  5849. ", " +
  5850. "`" +
  5851. text +
  5852. "`" +
  5853. ")\n" +
  5854. " });\n" +
  5855. "}\n" +
  5856. "document.head.appendChild(_js);\n";
  5857. _iframe.contentWindow.document.head.appendChild(_ajs);
  5858. }
  5859. }
  5860. //U.MD.D.I.openClick(str);
  5861. //如果有任务栏信息
  5862. // if (_taskbar) {
  5863. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5864. // }
  5865. }
  5866. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5867. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5868. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5869. _userinfo = US.userInfo, //登录用户信息
  5870. _userid = US.userInfo.userid //登录用户id
  5871. let _iframe;
  5872. let _cid = cid,
  5873. _stage = stage,
  5874. _task = task,
  5875. _tool = tool;
  5876. var _jie = $$("div", {
  5877. "style": {
  5878. "position": "absolute",
  5879. "bottom": "50px",
  5880. "right": "50px",
  5881. "zIndex": "9999",
  5882. "backgroundColor": "#2268bc",
  5883. "color": "#fff",
  5884. "padding": "12px 20px",
  5885. "cursor": "pointer",
  5886. "borderRadius": "4px",
  5887. },
  5888. "innerHTML": "提交作业"
  5889. })
  5890. let aTool = ''
  5891. let _loading = document.createElement('div')
  5892. _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;"
  5893. // _loading.id = "";
  5894. let _lchild = document.createElement('div')
  5895. let _limg = document.createElement('img')
  5896. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5897. _limg.style = "width: 26px;margin-right: 10px;"
  5898. _lchild.appendChild(_limg)
  5899. let _lspan = document.createElement('span')
  5900. _lspan.innerHTML = "上传中..."
  5901. _lchild.appendChild(_lspan)
  5902. _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%);"
  5903. _loading.appendChild(_lchild)
  5904. var _box = $$('div', {
  5905. "style": {
  5906. "position": "relative",
  5907. "width": "100%",
  5908. "height": "100%",
  5909. },
  5910. })
  5911. _box.appendChild(_loading)
  5912. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5913. switch (str) {
  5914. case "whiteboard":
  5915. aTool = 1;
  5916. _iframe = $$("iframe", {
  5917. "frameborder": "no",
  5918. "border": "0",
  5919. "scrolling ": "no",
  5920. "style": {
  5921. "cssText": "border:0;width:100%;height:100%"
  5922. },
  5923. "src": "https://beta.iwb.cocorobo.cn/"
  5924. })
  5925. _box.appendChild(_iframe);
  5926. _box.appendChild(_jie);
  5927. _formdiv = new U.UF.UI.form(
  5928. "电子白板",
  5929. _box, {
  5930. "id": "whiteboard" + cid + stage + task + tool,
  5931. "style": {
  5932. "width": "90%",
  5933. "height": "90%",
  5934. "overflow": 'hidden'
  5935. },
  5936. "onresize": function () { }
  5937. }, {
  5938. closecallback: function () { }
  5939. }, {
  5940. "style": {
  5941. "height": "36px"
  5942. }
  5943. }).form; //创建窗体
  5944. _taskbar = {
  5945. "id": str + _formdiv.id,
  5946. "style": {
  5947. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5948. },
  5949. "name": "电子白板",
  5950. "forms": _formdiv,
  5951. "click": function () {
  5952. U.MD.D.I.openApplication(str, obj, info);
  5953. }
  5954. }
  5955. break;
  5956. case "mind":
  5957. aTool = 3;
  5958. _iframe = $$("iframe", {
  5959. "frameborder": "no",
  5960. "border": "0",
  5961. "scrolling ": "no",
  5962. "style": {
  5963. "cssText": "border:0;width:100%;height:100%"
  5964. },
  5965. "src": "/kityminder-editor/dist/index.html"
  5966. })
  5967. _box.appendChild(_iframe);
  5968. _box.appendChild(_jie);
  5969. _formdiv = new U.UF.UI.form(
  5970. "思维导图",
  5971. _box, { //"/jsmind/example/demo.html"
  5972. "id": "mind" + cid + stage + task + tool,
  5973. "style": {
  5974. "width": "90%",
  5975. "height": "90%",
  5976. "overflow": 'hidden'
  5977. },
  5978. "onresize": function () { }
  5979. }, {
  5980. closecallback: function () { }
  5981. }, {
  5982. "style": {
  5983. "height": "36px"
  5984. }
  5985. }).form; //创建窗体
  5986. _taskbar = {
  5987. "id": str + _formdiv.id,
  5988. "style": {
  5989. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5990. },
  5991. "name": "思维导图",
  5992. "forms": _formdiv,
  5993. "click": function () {
  5994. U.MD.D.I.openApplication(str, obj, info);
  5995. }
  5996. }
  5997. break;
  5998. case "MindMap":
  5999. aTool = 3;
  6000. _iframe = $$("iframe", {
  6001. "frameborder": "no",
  6002. "border": "0",
  6003. "scrolling ": "no",
  6004. "style": {
  6005. "cssText": "border:0;width:100%;height:100%"
  6006. },
  6007. "src": "//cloud.cocorobo.cn/mind/"
  6008. })
  6009. _box.appendChild(_iframe);
  6010. _box.appendChild(_jie);
  6011. _formdiv = new U.UF.UI.form(
  6012. "思维导图",
  6013. _box, { //"/jsmind/example/demo.html"
  6014. "id": "mind" + cid + stage + task + tool,
  6015. "style": {
  6016. "width": "90%",
  6017. "height": "90%",
  6018. "overflow": 'hidden'
  6019. },
  6020. "onresize": function () { }
  6021. }, {
  6022. closecallback: function () { }
  6023. }, {
  6024. "style": {
  6025. "height": "36px"
  6026. }
  6027. }).form; //创建窗体
  6028. _taskbar = {
  6029. "id": str + _formdiv.id,
  6030. "style": {
  6031. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6032. },
  6033. "name": "思维导图",
  6034. "forms": _formdiv,
  6035. "click": function () {
  6036. U.MD.D.I.openApplication(str, obj, info);
  6037. }
  6038. }
  6039. break;
  6040. case "doc":
  6041. aTool = 6;
  6042. _iframe = $$("iframe", {
  6043. "frameborder": "no",
  6044. "border": "0",
  6045. "scrolling ": "no",
  6046. "style": {
  6047. "cssText": "border:0;width:100%;height:100%"
  6048. },
  6049. "src": "/Office/Word/WordEditArea.htm"
  6050. })
  6051. _box.appendChild(_iframe);
  6052. _box.appendChild(_jie);
  6053. _formdiv = new U.UF.UI.form(
  6054. "协同文档",
  6055. _box, {
  6056. "id": "doc" + cid + stage + task + tool,
  6057. "style": {
  6058. "width": "90%",
  6059. "height": "90%",
  6060. "overflow": 'hidden'
  6061. },
  6062. "onresize": function () { }
  6063. }, {
  6064. closecallback: function () { }
  6065. }, {
  6066. "style": {
  6067. "height": "36px"
  6068. }
  6069. }).form; //创建窗体
  6070. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6071. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6072. })
  6073. _taskbar = {
  6074. "id": str + _formdiv.id,
  6075. "style": {
  6076. "backgroundImage": "url(/img/icon/doc.png)"
  6077. },
  6078. "name": "协同文档",
  6079. "forms": _formdiv,
  6080. "click": function () {
  6081. U.MD.D.I.openApplication(str, obj, info);
  6082. }
  6083. }
  6084. break;
  6085. case "mindNetwork": //好友打开
  6086. aTool = 7;
  6087. _iframe = $$("iframe", {
  6088. "webkitallowfullscreen": "",
  6089. "mozallowfullscreen": "",
  6090. "allowfullscreen": "",
  6091. "frameborder": "no",
  6092. "border": "0",
  6093. "scrolling ": "no",
  6094. "style": {
  6095. "cssText": "border:0; width:100%; height:100%;"
  6096. },
  6097. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6098. })
  6099. _box.appendChild(_iframe);
  6100. _box.appendChild(_jie);
  6101. _formdiv = new U.UF.UI.form(
  6102. "思维网格",
  6103. _box, {
  6104. "id": "mindNetwork" + cid + stage + task + tool,
  6105. "style": {
  6106. "width": "90%",
  6107. "height": "90%",
  6108. "overflow": 'hidden'
  6109. },
  6110. "onresize": function () { }
  6111. }, {
  6112. closecallback: function () { }
  6113. }, {
  6114. "style": {
  6115. "height": "36px"
  6116. }
  6117. }).form; //创建窗体
  6118. _taskbar = {
  6119. "id": str + _formdiv.id,
  6120. "style": {
  6121. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6122. },
  6123. "name": "思维网格",
  6124. "forms": _formdiv,
  6125. "click": function () {
  6126. U.MD.D.I.openApplication(str, obj, info);
  6127. }
  6128. }
  6129. break;
  6130. case "courseDesign":
  6131. _iframe = $$("iframe", {
  6132. "webkitallowfullscreen": "",
  6133. "mozallowfullscreen": "",
  6134. "allowfullscreen": "",
  6135. "frameborder": "no",
  6136. "border": "0",
  6137. "scrolling ": "no",
  6138. "style": {
  6139. "cssText": "border:0; width:100%; height:100%;"
  6140. },
  6141. "src": "/course-design-vue"
  6142. })
  6143. _box.appendChild(_iframe);
  6144. _box.appendChild(_jie);
  6145. _formdiv = new U.UF.UI.form(
  6146. "项目设计",
  6147. _box, {
  6148. "id": "courseDesign" + cid + stage + task + tool,
  6149. "style": {
  6150. "width": "90%",
  6151. "height": "90%",
  6152. "overflow": 'hidden'
  6153. },
  6154. "onresize": function () { }
  6155. }, {
  6156. closecallback: function () { }
  6157. }, {
  6158. "style": {
  6159. "height": "36px"
  6160. }
  6161. }).form; //创建窗体
  6162. _taskbar = {
  6163. "id": str + _formdiv.id,
  6164. "style": {
  6165. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6166. },
  6167. "name": "项目设计",
  6168. "forms": _formdiv,
  6169. "click": function () {
  6170. U.MD.D.I.openApplication(str, obj, info);
  6171. }
  6172. }
  6173. break;
  6174. }
  6175. const script1 = document.createElement("script");
  6176. script1.type = "text/javascript";
  6177. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6178. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6179. const script2 = document.createElement("script");
  6180. script2.type = "text/javascript";
  6181. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6182. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6183. const script3 = document.createElement("script");
  6184. script3.type = "text/javascript";
  6185. script3.charset = "UTF-8";
  6186. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6187. const script4 = document.createElement("script");
  6188. script4.type = "text/javascript";
  6189. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6190. script4.src = window.origin + "/js/Common/jietu2E.js";
  6191. if (_iframe) {
  6192. if (str == 'doc') {
  6193. _iframe = _formdiv.querySelector('iframe')
  6194. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6195. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6196. _iframe.contentWindow.document.body.appendChild(script1);
  6197. _iframe.contentWindow.document.body.appendChild(script2);
  6198. // _iframe.contentWindow.document.body.appendChild(script3);
  6199. _iframe.contentWindow.document.body.appendChild(script4);
  6200. })
  6201. if (onloadListener) {
  6202. _iframe.contentDocument.location.reload()
  6203. } else {
  6204. _iframe.contentDocument.location.reload()
  6205. }
  6206. } else if (str == 'courseDesign') {
  6207. U.UF.DL.iframeLoad(_iframe, function () {
  6208. // _iframe.contentWindow.U.MD.O.W.load();
  6209. // _iframe.contentWindow.document.body.appendChild(script1);
  6210. _iframe.contentWindow.document.body.appendChild(script2);
  6211. _iframe.contentWindow.document.body.appendChild(script4);
  6212. })
  6213. } else if (str == 'mind') {
  6214. _iframe = _formdiv.querySelector('iframe')
  6215. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6216. //
  6217. _iframe.contentWindow.document.body.appendChild(script1);
  6218. _iframe.contentWindow.document.body.appendChild(script2);
  6219. _iframe.contentWindow.document.body.appendChild(script4);
  6220. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6221. })
  6222. if (onloadListener) {
  6223. _iframe.contentDocument.location.reload()
  6224. } else {
  6225. _iframe.contentDocument.location.reload()
  6226. }
  6227. } else if (str == 'whiteboard') {
  6228. _iframe = _formdiv.querySelector('iframe')
  6229. let onloadListener = _iframe.onload = () => {
  6230. _iframe.contentWindow.document.body.appendChild(script1);
  6231. _iframe.contentWindow.document.body.appendChild(script2);
  6232. _iframe.contentWindow.document.body.appendChild(script4);
  6233. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6234. };
  6235. if (onloadListener) {
  6236. _iframe.contentDocument.location.reload()
  6237. } else {
  6238. _iframe.contentDocument.location.reload()
  6239. }
  6240. } else {
  6241. _iframe.onload = () => {
  6242. _iframe.contentWindow.document.body.appendChild(script1);
  6243. _iframe.contentWindow.document.body.appendChild(script2);
  6244. // _iframe.contentWindow.document.body.appendChild(script3);
  6245. _iframe.contentWindow.document.body.appendChild(script4);
  6246. };
  6247. }
  6248. _jie.onclick = async () => {
  6249. let text = ''
  6250. if (aTool == 1) {
  6251. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6252. } else if (aTool == 6) {
  6253. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6254. } else if (aTool == 3) {
  6255. text = await U.MD.D.I.getEditorContent(_iframe);
  6256. }
  6257. _loading.style.display = 'flex'
  6258. console.log(_loading);
  6259. var _ajs = _iframe.contentWindow.document.createElement("script");
  6260. _ajs.type = "text/javascript";
  6261. _ajs.innerHTML =
  6262. // 'console.log(' + _loading + ');\n' +
  6263. 'var _js = document.createElement("script");\n' +
  6264. '_js.type="text/javascript";\n' +
  6265. '_js.charset="UTF-8";\n' +
  6266. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6267. "_js.onload = function(){\n" +
  6268. ' var a = document.getElementsByTagName("img")\n' +
  6269. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6270. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6271. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6272. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6273. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6274. "beforeUpload_shishi(file," +
  6275. "'" +
  6276. _userid +
  6277. "'" +
  6278. ", " +
  6279. "'" +
  6280. _cid +
  6281. "'" +
  6282. ", " +
  6283. "'" +
  6284. _stage +
  6285. "'" +
  6286. ", " +
  6287. "'" +
  6288. _task +
  6289. "'" +
  6290. ", " +
  6291. "'" +
  6292. _tool +
  6293. "'" +
  6294. ", " +
  6295. "'" +
  6296. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6297. "'" +
  6298. ", " +
  6299. "'" +
  6300. aTool +
  6301. "'" +
  6302. ", " +
  6303. "`" +
  6304. text +
  6305. "`" +
  6306. ")\n" +
  6307. " });\n" +
  6308. "}\n" +
  6309. "document.head.appendChild(_js);\n";
  6310. _iframe.contentWindow.document.head.appendChild(_ajs);
  6311. }
  6312. }
  6313. //U.MD.D.I.openClick(str);
  6314. //如果有任务栏信息
  6315. // if (_taskbar) {
  6316. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6317. // }
  6318. }
  6319. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6320. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6321. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6322. _userid = student.userid, //登录用户id
  6323. _username = student.student //用户名字
  6324. let _iframe;
  6325. let _cid = cid,
  6326. _stage = stage,
  6327. _task = task,
  6328. _tool = tool;
  6329. var _jie = $$("div", {
  6330. "style": {
  6331. "position": "absolute",
  6332. "bottom": "50px",
  6333. "right": "50px",
  6334. "zIndex": "9999",
  6335. "backgroundColor": "#2268bc",
  6336. "color": "#fff",
  6337. "padding": "12px 20px",
  6338. "cursor": "pointer",
  6339. "borderRadius": "4px",
  6340. },
  6341. "innerHTML": "提交作业"
  6342. })
  6343. let aTool = ''
  6344. let _loading = document.createElement('div')
  6345. _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;"
  6346. // _loading.id = "";
  6347. let _lchild = document.createElement('div')
  6348. let _limg = document.createElement('img')
  6349. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6350. _limg.style = "width: 26px;margin-right: 10px;"
  6351. _lchild.appendChild(_limg)
  6352. let _lspan = document.createElement('span')
  6353. _lspan.innerHTML = "上传中..."
  6354. _lchild.appendChild(_lspan)
  6355. _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%);"
  6356. _loading.appendChild(_lchild)
  6357. var _box = $$('div', {
  6358. "style": {
  6359. "position": "relative",
  6360. "width": "100%",
  6361. "height": "100%",
  6362. },
  6363. })
  6364. _box.appendChild(_loading)
  6365. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6366. switch (str) {
  6367. case "whiteboard":
  6368. aTool = 1;
  6369. _iframe = $$("iframe", {
  6370. "frameborder": "no",
  6371. "border": "0",
  6372. "scrolling ": "no",
  6373. "style": {
  6374. "cssText": "border:0;width:100%;height:100%"
  6375. },
  6376. "src": "https://beta.iwb.cocorobo.cn/"
  6377. })
  6378. _box.appendChild(_iframe);
  6379. _box.appendChild(_jie);
  6380. _formdiv = new U.UF.UI.form(
  6381. "电子白板-" + _username,
  6382. _box, {
  6383. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6384. "style": {
  6385. "width": "90%",
  6386. "height": "90%",
  6387. "overflow": 'hidden'
  6388. },
  6389. "onresize": function () { }
  6390. }, {
  6391. closecallback: function () { }
  6392. }, {
  6393. "style": {
  6394. "height": "36px"
  6395. }
  6396. }).form; //创建窗体
  6397. _taskbar = {
  6398. "id": str + _formdiv.id,
  6399. "style": {
  6400. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6401. },
  6402. "name": "电子白板",
  6403. "forms": _formdiv,
  6404. "click": function () {
  6405. U.MD.D.I.openApplication(str, obj, info);
  6406. }
  6407. }
  6408. break;
  6409. case "mind":
  6410. aTool = 3;
  6411. _iframe = $$("iframe", {
  6412. "frameborder": "no",
  6413. "border": "0",
  6414. "scrolling ": "no",
  6415. "style": {
  6416. "cssText": "border:0;width:100%;height:100%"
  6417. },
  6418. "src": "/kityminder-editor/dist/index.html"
  6419. })
  6420. _box.appendChild(_iframe);
  6421. _box.appendChild(_jie);
  6422. _formdiv = new U.UF.UI.form(
  6423. "思维导图-" + _username,
  6424. _box, { //"/jsmind/example/demo.html"
  6425. "id": "mind" + cid + stage + task + tool + _userid,
  6426. "style": {
  6427. "width": "90%",
  6428. "height": "90%",
  6429. "overflow": 'hidden'
  6430. },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, {
  6435. "style": {
  6436. "height": "36px"
  6437. }
  6438. }).form; //创建窗体
  6439. _taskbar = {
  6440. "id": str + _formdiv.id,
  6441. "style": {
  6442. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6443. },
  6444. "name": "思维导图",
  6445. "forms": _formdiv,
  6446. "click": function () {
  6447. U.MD.D.I.openApplication(str, obj, info);
  6448. }
  6449. }
  6450. break;
  6451. case "MindMap":
  6452. aTool = 3;
  6453. _iframe = $$("iframe", {
  6454. "frameborder": "no",
  6455. "border": "0",
  6456. "scrolling ": "no",
  6457. "style": {
  6458. "cssText": "border:0;width:100%;height:100%"
  6459. },
  6460. "src": "//cloud.cocorobo.cn/mind/"
  6461. })
  6462. _box.appendChild(_iframe);
  6463. _box.appendChild(_jie);
  6464. _formdiv = new U.UF.UI.form(
  6465. "思维导图-" + _username,
  6466. _box, { //"/jsmind/example/demo.html"
  6467. "id": "mind" + cid + stage + task + tool + _userid,
  6468. "style": {
  6469. "width": "90%",
  6470. "height": "90%",
  6471. "overflow": 'hidden'
  6472. },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () { }
  6476. }, {
  6477. "style": {
  6478. "height": "36px"
  6479. }
  6480. }).form; //创建窗体
  6481. _taskbar = {
  6482. "id": str + _formdiv.id,
  6483. "style": {
  6484. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6485. },
  6486. "name": "思维导图",
  6487. "forms": _formdiv,
  6488. "click": function () {
  6489. U.MD.D.I.openApplication(str, obj, info);
  6490. }
  6491. }
  6492. break;
  6493. case "doc":
  6494. aTool = 6;
  6495. _iframe = $$("iframe", {
  6496. "frameborder": "no",
  6497. "border": "0",
  6498. "scrolling ": "no",
  6499. "style": {
  6500. "cssText": "border:0;width:100%;height:100%"
  6501. },
  6502. "src": "/Office/Word/WordEditArea.htm"
  6503. })
  6504. _box.appendChild(_iframe);
  6505. _box.appendChild(_jie);
  6506. _formdiv = new U.UF.UI.form(
  6507. "协同文档-" + _username,
  6508. _box, {
  6509. "id": "doc" + cid + stage + task + tool + _userid,
  6510. "style": {
  6511. "width": "90%",
  6512. "height": "90%",
  6513. "overflow": 'hidden'
  6514. },
  6515. "onresize": function () { }
  6516. }, {
  6517. closecallback: function () { }
  6518. }, {
  6519. "style": {
  6520. "height": "36px"
  6521. }
  6522. }).form; //创建窗体
  6523. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6524. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6525. })
  6526. _taskbar = {
  6527. "id": str + _formdiv.id,
  6528. "style": {
  6529. "backgroundImage": "url(/img/icon/doc.png)"
  6530. },
  6531. "name": "协同文档",
  6532. "forms": _formdiv,
  6533. "click": function () {
  6534. U.MD.D.I.openApplication(str, obj, info);
  6535. }
  6536. }
  6537. break;
  6538. case "mindNetwork": //好友打开
  6539. aTool = 7;
  6540. _iframe = $$("iframe", {
  6541. "webkitallowfullscreen": "",
  6542. "mozallowfullscreen": "",
  6543. "allowfullscreen": "",
  6544. "frameborder": "no",
  6545. "border": "0",
  6546. "scrolling ": "no",
  6547. "style": {
  6548. "cssText": "border:0; width:100%; height:100%;"
  6549. },
  6550. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6551. })
  6552. _box.appendChild(_iframe);
  6553. _box.appendChild(_jie);
  6554. _formdiv = new U.UF.UI.form(
  6555. "思维网格-" + _username,
  6556. _box, {
  6557. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6558. "style": {
  6559. "width": "90%",
  6560. "height": "90%",
  6561. "overflow": 'hidden'
  6562. },
  6563. "onresize": function () { }
  6564. }, {
  6565. closecallback: function () { }
  6566. }, {
  6567. "style": {
  6568. "height": "36px"
  6569. }
  6570. }).form; //创建窗体
  6571. _taskbar = {
  6572. "id": str + _formdiv.id,
  6573. "style": {
  6574. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6575. },
  6576. "name": "思维网格",
  6577. "forms": _formdiv,
  6578. "click": function () {
  6579. U.MD.D.I.openApplication(str, obj, info);
  6580. }
  6581. }
  6582. break;
  6583. case "courseDesign":
  6584. _iframe = $$("iframe", {
  6585. "webkitallowfullscreen": "",
  6586. "mozallowfullscreen": "",
  6587. "allowfullscreen": "",
  6588. "frameborder": "no",
  6589. "border": "0",
  6590. "scrolling ": "no",
  6591. "style": {
  6592. "cssText": "border:0; width:100%; height:100%;"
  6593. },
  6594. "src": "/course-design-vue"
  6595. })
  6596. _box.appendChild(_iframe);
  6597. _box.appendChild(_jie);
  6598. _formdiv = new U.UF.UI.form(
  6599. "项目设计-" + _username,
  6600. _box, {
  6601. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6602. "style": {
  6603. "width": "90%",
  6604. "height": "90%",
  6605. "overflow": 'hidden'
  6606. },
  6607. "onresize": function () { }
  6608. }, {
  6609. closecallback: function () { }
  6610. }, {
  6611. "style": {
  6612. "height": "36px"
  6613. }
  6614. }).form; //创建窗体
  6615. _taskbar = {
  6616. "id": str + _formdiv.id,
  6617. "style": {
  6618. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6619. },
  6620. "name": "项目设计",
  6621. "forms": _formdiv,
  6622. "click": function () {
  6623. U.MD.D.I.openApplication(str, obj, info);
  6624. }
  6625. }
  6626. break;
  6627. }
  6628. const script1 = document.createElement("script");
  6629. script1.type = "text/javascript";
  6630. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6631. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6632. const script2 = document.createElement("script");
  6633. script2.type = "text/javascript";
  6634. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6635. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6636. const script3 = document.createElement("script");
  6637. script3.type = "text/javascript";
  6638. script3.charset = "UTF-8";
  6639. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6640. const script4 = document.createElement("script");
  6641. script4.type = "text/javascript";
  6642. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6643. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6644. if (_iframe) {
  6645. if (str == 'doc') {
  6646. _iframe = _formdiv.querySelector('iframe')
  6647. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6648. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6649. _iframe.contentWindow.document.body.appendChild(script1);
  6650. _iframe.contentWindow.document.body.appendChild(script2);
  6651. // _iframe.contentWindow.document.body.appendChild(script3);
  6652. _iframe.contentWindow.document.body.appendChild(script4);
  6653. })
  6654. if (onloadListener) {
  6655. _iframe.contentDocument.location.reload()
  6656. } else {
  6657. _iframe.contentDocument.location.reload()
  6658. }
  6659. } else if (str == 'courseDesign') {
  6660. U.UF.DL.iframeLoad(_iframe, function () {
  6661. // _iframe.contentWindow.U.MD.O.W.load();
  6662. // _iframe.contentWindow.document.body.appendChild(script1);
  6663. _iframe.contentWindow.document.body.appendChild(script2);
  6664. _iframe.contentWindow.document.body.appendChild(script4);
  6665. })
  6666. } else if (str == 'mind') {
  6667. _iframe = _formdiv.querySelector('iframe')
  6668. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6669. //
  6670. _iframe.contentWindow.document.body.appendChild(script1);
  6671. _iframe.contentWindow.document.body.appendChild(script2);
  6672. _iframe.contentWindow.document.body.appendChild(script4);
  6673. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6674. })
  6675. if (onloadListener) {
  6676. _iframe.contentDocument.location.reload()
  6677. } else {
  6678. _iframe.contentDocument.location.reload()
  6679. }
  6680. } else if (str == 'whiteboard') {
  6681. _iframe = _formdiv.querySelector('iframe')
  6682. let onloadListener = _iframe.onload = () => {
  6683. _iframe.contentWindow.document.body.appendChild(script1);
  6684. _iframe.contentWindow.document.body.appendChild(script2);
  6685. _iframe.contentWindow.document.body.appendChild(script4);
  6686. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6687. };
  6688. if (onloadListener) {
  6689. _iframe.contentDocument.location.reload()
  6690. } else {
  6691. _iframe.contentDocument.location.reload()
  6692. }
  6693. } else {
  6694. _iframe.onload = () => {
  6695. _iframe.contentWindow.document.body.appendChild(script1);
  6696. _iframe.contentWindow.document.body.appendChild(script2);
  6697. // _iframe.contentWindow.document.body.appendChild(script3);
  6698. _iframe.contentWindow.document.body.appendChild(script4);
  6699. };
  6700. }
  6701. _jie.onclick = async () => {
  6702. let text = ''
  6703. if (aTool == 1) {
  6704. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6705. } else if (aTool == 6) {
  6706. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6707. } else if (aTool == 3) {
  6708. text = await U.MD.D.I.getEditorContent(_iframe);
  6709. }
  6710. _loading.style.display = 'flex'
  6711. console.log(_loading);
  6712. var _ajs = _iframe.contentWindow.document.createElement("script");
  6713. _ajs.type = "text/javascript";
  6714. _ajs.innerHTML =
  6715. // 'console.log(' + _loading + ');\n' +
  6716. 'var _js = document.createElement("script");\n' +
  6717. '_js.type="text/javascript";\n' +
  6718. '_js.charset="UTF-8";\n' +
  6719. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6720. "_js.onload = function(){\n" +
  6721. ' var a = document.getElementsByTagName("img")\n' +
  6722. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6723. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6724. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6725. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6726. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6727. "beforeUpload_shishi(file," +
  6728. "'" +
  6729. _userid +
  6730. "'" +
  6731. ", " +
  6732. "'" +
  6733. _cid +
  6734. "'" +
  6735. ", " +
  6736. "'" +
  6737. _stage +
  6738. "'" +
  6739. ", " +
  6740. "'" +
  6741. _task +
  6742. "'" +
  6743. ", " +
  6744. "'" +
  6745. _tool +
  6746. "'" +
  6747. ", " +
  6748. "'" +
  6749. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6750. "'" +
  6751. ", " +
  6752. "'" +
  6753. aTool +
  6754. "'" +
  6755. ", " +
  6756. "`" +
  6757. text +
  6758. "`" +
  6759. ")\n" +
  6760. " });\n" +
  6761. "}\n" +
  6762. "document.head.appendChild(_js);\n";
  6763. _iframe.contentWindow.document.head.appendChild(_ajs);
  6764. }
  6765. }
  6766. }
  6767. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6768. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6769. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6770. _userid = student.userid, //登录用户id
  6771. _username = student.student //用户名字
  6772. let _iframe;
  6773. let _cid = cid,
  6774. _stage = stage,
  6775. _task = task,
  6776. _tool = tool;
  6777. var _jie = $$("div", {
  6778. "style": {
  6779. "position": "absolute",
  6780. "bottom": "50px",
  6781. "right": "50px",
  6782. "zIndex": "9999",
  6783. "backgroundColor": "#2268bc",
  6784. "color": "#fff",
  6785. "padding": "12px 20px",
  6786. "cursor": "pointer",
  6787. "borderRadius": "4px",
  6788. },
  6789. "innerHTML": "提交作业"
  6790. })
  6791. let aTool = ''
  6792. let _loading = document.createElement('div')
  6793. _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;"
  6794. // _loading.id = "";
  6795. let _lchild = document.createElement('div')
  6796. let _limg = document.createElement('img')
  6797. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6798. _limg.style = "width: 26px;margin-right: 10px;"
  6799. _lchild.appendChild(_limg)
  6800. let _lspan = document.createElement('span')
  6801. _lspan.innerHTML = "上传中..."
  6802. _lchild.appendChild(_lspan)
  6803. _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%);"
  6804. _loading.appendChild(_lchild)
  6805. var _box = $$('div', {
  6806. "style": {
  6807. "position": "relative",
  6808. "width": "100%",
  6809. "height": "100%",
  6810. },
  6811. })
  6812. _box.appendChild(_loading)
  6813. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6814. switch (str) {
  6815. case "whiteboard":
  6816. aTool = 1;
  6817. _iframe = $$("iframe", {
  6818. "frameborder": "no",
  6819. "border": "0",
  6820. "scrolling ": "no",
  6821. "style": {
  6822. "cssText": "border:0;width:100%;height:100%"
  6823. },
  6824. "src": "https://beta.iwb.cocorobo.cn/"
  6825. })
  6826. _box.appendChild(_iframe);
  6827. _box.appendChild(_jie);
  6828. _formdiv = new U.UF.UI.form(
  6829. "电子白板-" + _username,
  6830. _box, {
  6831. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6832. "style": {
  6833. "width": "90%",
  6834. "height": "90%",
  6835. "overflow": 'hidden'
  6836. },
  6837. "onresize": function () { }
  6838. }, {
  6839. closecallback: function () { }
  6840. }, {
  6841. "style": {
  6842. "height": "36px"
  6843. }
  6844. }).form; //创建窗体
  6845. _taskbar = {
  6846. "id": str + _formdiv.id,
  6847. "style": {
  6848. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6849. },
  6850. "name": "电子白板",
  6851. "forms": _formdiv,
  6852. "click": function () {
  6853. U.MD.D.I.openApplication(str, obj, info);
  6854. }
  6855. }
  6856. break;
  6857. case "mind":
  6858. aTool = 3;
  6859. _iframe = $$("iframe", {
  6860. "frameborder": "no",
  6861. "border": "0",
  6862. "scrolling ": "no",
  6863. "style": {
  6864. "cssText": "border:0;width:100%;height:100%"
  6865. },
  6866. "src": "/kityminder-editor/dist/index.html"
  6867. })
  6868. _box.appendChild(_iframe);
  6869. _box.appendChild(_jie);
  6870. _formdiv = new U.UF.UI.form(
  6871. "思维导图-" + _username,
  6872. _box, { //"/jsmind/example/demo.html"
  6873. "id": "mind" + cid + stage + task + tool + _userid,
  6874. "style": {
  6875. "width": "90%",
  6876. "height": "90%",
  6877. "overflow": 'hidden'
  6878. },
  6879. "onresize": function () { }
  6880. }, {
  6881. closecallback: function () { }
  6882. }, {
  6883. "style": {
  6884. "height": "36px"
  6885. }
  6886. }).form; //创建窗体
  6887. _taskbar = {
  6888. "id": str + _formdiv.id,
  6889. "style": {
  6890. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6891. },
  6892. "name": "思维导图",
  6893. "forms": _formdiv,
  6894. "click": function () {
  6895. U.MD.D.I.openApplication(str, obj, info);
  6896. }
  6897. }
  6898. break;
  6899. case "MindMap":
  6900. aTool = 3;
  6901. _iframe = $$("iframe", {
  6902. "frameborder": "no",
  6903. "border": "0",
  6904. "scrolling ": "no",
  6905. "style": {
  6906. "cssText": "border:0;width:100%;height:100%"
  6907. },
  6908. "src": "//cloud.cocorobo.cn/mind/"
  6909. })
  6910. _box.appendChild(_iframe);
  6911. _box.appendChild(_jie);
  6912. _formdiv = new U.UF.UI.form(
  6913. "思维导图-" + _username,
  6914. _box, { //"/jsmind/example/demo.html"
  6915. "id": "mind" + cid + stage + task + tool + _userid,
  6916. "style": {
  6917. "width": "90%",
  6918. "height": "90%",
  6919. "overflow": 'hidden'
  6920. },
  6921. "onresize": function () { }
  6922. }, {
  6923. closecallback: function () { }
  6924. }, {
  6925. "style": {
  6926. "height": "36px"
  6927. }
  6928. }).form; //创建窗体
  6929. _taskbar = {
  6930. "id": str + _formdiv.id,
  6931. "style": {
  6932. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6933. },
  6934. "name": "思维导图",
  6935. "forms": _formdiv,
  6936. "click": function () {
  6937. U.MD.D.I.openApplication(str, obj, info);
  6938. }
  6939. }
  6940. break;
  6941. case "doc":
  6942. aTool = 6;
  6943. _iframe = $$("iframe", {
  6944. "frameborder": "no",
  6945. "border": "0",
  6946. "scrolling ": "no",
  6947. "style": {
  6948. "cssText": "border:0;width:100%;height:100%"
  6949. },
  6950. "src": "/Office/Word/WordEditArea.htm"
  6951. })
  6952. _box.appendChild(_iframe);
  6953. _box.appendChild(_jie);
  6954. _formdiv = new U.UF.UI.form(
  6955. "协同文档-" + _username,
  6956. _box, {
  6957. "id": "doc" + cid + stage + task + tool + _userid,
  6958. "style": {
  6959. "width": "90%",
  6960. "height": "90%",
  6961. "overflow": 'hidden'
  6962. },
  6963. "onresize": function () { }
  6964. }, {
  6965. closecallback: function () { }
  6966. }, {
  6967. "style": {
  6968. "height": "36px"
  6969. }
  6970. }).form; //创建窗体
  6971. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6972. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6973. })
  6974. _taskbar = {
  6975. "id": str + _formdiv.id,
  6976. "style": {
  6977. "backgroundImage": "url(/img/icon/doc.png)"
  6978. },
  6979. "name": "协同文档",
  6980. "forms": _formdiv,
  6981. "click": function () {
  6982. U.MD.D.I.openApplication(str, obj, info);
  6983. }
  6984. }
  6985. break;
  6986. case "mindNetwork": //好友打开
  6987. aTool = 7;
  6988. _iframe = $$("iframe", {
  6989. "webkitallowfullscreen": "",
  6990. "mozallowfullscreen": "",
  6991. "allowfullscreen": "",
  6992. "frameborder": "no",
  6993. "border": "0",
  6994. "scrolling ": "no",
  6995. "style": {
  6996. "cssText": "border:0; width:100%; height:100%;"
  6997. },
  6998. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6999. })
  7000. _box.appendChild(_iframe);
  7001. _box.appendChild(_jie);
  7002. _formdiv = new U.UF.UI.form(
  7003. "思维网格-" + _username,
  7004. _box, {
  7005. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7006. "style": {
  7007. "width": "90%",
  7008. "height": "90%",
  7009. "overflow": 'hidden'
  7010. },
  7011. "onresize": function () { }
  7012. }, {
  7013. closecallback: function () { }
  7014. }, {
  7015. "style": {
  7016. "height": "36px"
  7017. }
  7018. }).form; //创建窗体
  7019. _taskbar = {
  7020. "id": str + _formdiv.id,
  7021. "style": {
  7022. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7023. },
  7024. "name": "思维网格",
  7025. "forms": _formdiv,
  7026. "click": function () {
  7027. U.MD.D.I.openApplication(str, obj, info);
  7028. }
  7029. }
  7030. break;
  7031. case "courseDesign":
  7032. _iframe = $$("iframe", {
  7033. "webkitallowfullscreen": "",
  7034. "mozallowfullscreen": "",
  7035. "allowfullscreen": "",
  7036. "frameborder": "no",
  7037. "border": "0",
  7038. "scrolling ": "no",
  7039. "style": {
  7040. "cssText": "border:0; width:100%; height:100%;"
  7041. },
  7042. "src": "/course-design-vue"
  7043. })
  7044. _box.appendChild(_iframe);
  7045. _box.appendChild(_jie);
  7046. _formdiv = new U.UF.UI.form(
  7047. "项目设计-" + _username,
  7048. _box, {
  7049. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7050. "style": {
  7051. "width": "90%",
  7052. "height": "90%",
  7053. "overflow": 'hidden'
  7054. },
  7055. "onresize": function () { }
  7056. }, {
  7057. closecallback: function () { }
  7058. }, {
  7059. "style": {
  7060. "height": "36px"
  7061. }
  7062. }).form; //创建窗体
  7063. _taskbar = {
  7064. "id": str + _formdiv.id,
  7065. "style": {
  7066. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7067. },
  7068. "name": "项目设计",
  7069. "forms": _formdiv,
  7070. "click": function () {
  7071. U.MD.D.I.openApplication(str, obj, info);
  7072. }
  7073. }
  7074. break;
  7075. }
  7076. const script1 = document.createElement("script");
  7077. script1.type = "text/javascript";
  7078. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7079. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7080. const script2 = document.createElement("script");
  7081. script2.type = "text/javascript";
  7082. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7083. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7084. const script3 = document.createElement("script");
  7085. script3.type = "text/javascript";
  7086. script3.charset = "UTF-8";
  7087. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7088. const script4 = document.createElement("script");
  7089. script4.type = "text/javascript";
  7090. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7091. script4.src = window.origin + "/js/Common/jietu2E.js";
  7092. if (_iframe) {
  7093. if (str == 'doc') {
  7094. _iframe = _formdiv.querySelector('iframe')
  7095. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7096. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7097. _iframe.contentWindow.document.body.appendChild(script1);
  7098. _iframe.contentWindow.document.body.appendChild(script2);
  7099. // _iframe.contentWindow.document.body.appendChild(script3);
  7100. _iframe.contentWindow.document.body.appendChild(script4);
  7101. })
  7102. if (onloadListener) {
  7103. _iframe.contentDocument.location.reload()
  7104. } else {
  7105. _iframe.contentDocument.location.reload()
  7106. }
  7107. } else if (str == 'courseDesign') {
  7108. U.UF.DL.iframeLoad(_iframe, function () {
  7109. // _iframe.contentWindow.U.MD.O.W.load();
  7110. // _iframe.contentWindow.document.body.appendChild(script1);
  7111. _iframe.contentWindow.document.body.appendChild(script2);
  7112. _iframe.contentWindow.document.body.appendChild(script4);
  7113. })
  7114. } else if (str == 'mind') {
  7115. _iframe = _formdiv.querySelector('iframe')
  7116. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7117. //
  7118. _iframe.contentWindow.document.body.appendChild(script1);
  7119. _iframe.contentWindow.document.body.appendChild(script2);
  7120. _iframe.contentWindow.document.body.appendChild(script4);
  7121. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7122. })
  7123. if (onloadListener) {
  7124. _iframe.contentDocument.location.reload()
  7125. } else {
  7126. _iframe.contentDocument.location.reload()
  7127. }
  7128. } else if (str == 'whiteboard') {
  7129. _iframe = _formdiv.querySelector('iframe')
  7130. let onloadListener = _iframe.onload = () => {
  7131. _iframe.contentWindow.document.body.appendChild(script1);
  7132. _iframe.contentWindow.document.body.appendChild(script2);
  7133. _iframe.contentWindow.document.body.appendChild(script4);
  7134. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7135. };
  7136. if (onloadListener) {
  7137. _iframe.contentDocument.location.reload()
  7138. } else {
  7139. _iframe.contentDocument.location.reload()
  7140. }
  7141. } else {
  7142. _iframe.onload = () => {
  7143. _iframe.contentWindow.document.body.appendChild(script1);
  7144. _iframe.contentWindow.document.body.appendChild(script2);
  7145. // _iframe.contentWindow.document.body.appendChild(script3);
  7146. _iframe.contentWindow.document.body.appendChild(script4);
  7147. };
  7148. }
  7149. _jie.onclick = async () => {
  7150. let text = ''
  7151. if (aTool == 1) {
  7152. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7153. } else if (aTool == 6) {
  7154. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7155. } else if (aTool == 3) {
  7156. text = await U.MD.D.I.getEditorContent(_iframe);
  7157. }
  7158. _loading.style.display = 'flex'
  7159. console.log(_loading);
  7160. var _ajs = _iframe.contentWindow.document.createElement("script");
  7161. _ajs.type = "text/javascript";
  7162. _ajs.innerHTML =
  7163. // 'console.log(' + _loading + ');\n' +
  7164. 'var _js = document.createElement("script");\n' +
  7165. '_js.type="text/javascript";\n' +
  7166. '_js.charset="UTF-8";\n' +
  7167. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7168. "_js.onload = function(){\n" +
  7169. ' var a = document.getElementsByTagName("img")\n' +
  7170. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7171. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7172. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7173. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7174. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7175. "beforeUpload_shishi(file," +
  7176. "'" +
  7177. _userid +
  7178. "'" +
  7179. ", " +
  7180. "'" +
  7181. _cid +
  7182. "'" +
  7183. ", " +
  7184. "'" +
  7185. _stage +
  7186. "'" +
  7187. ", " +
  7188. "'" +
  7189. _task +
  7190. "'" +
  7191. ", " +
  7192. "'" +
  7193. _tool +
  7194. "'" +
  7195. ", " +
  7196. "'" +
  7197. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7198. "'" +
  7199. ", " +
  7200. "'" +
  7201. aTool +
  7202. "'" +
  7203. ", " +
  7204. "`" +
  7205. text +
  7206. "`" +
  7207. ")\n" +
  7208. " });\n" +
  7209. "}\n" +
  7210. "document.head.appendChild(_js);\n";
  7211. _iframe.contentWindow.document.head.appendChild(_ajs);
  7212. }
  7213. }
  7214. }
  7215. U.MD.D.I.getEditorContent = function (iframe) {
  7216. return new Promise((resolve, reject) => {
  7217. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7218. console.log(content);
  7219. resolve(content)
  7220. });
  7221. });
  7222. }
  7223. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7224. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7225. // if (res.value[0].length > 0) {
  7226. // // resolve(res.value[0][0].text);
  7227. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7228. // $(fileInput).val('');
  7229. // });
  7230. // }
  7231. // }, [], { "type": "GET", "withCredentials": true });
  7232. var xmlhttp;
  7233. var Mac, Sn, DeviceId
  7234. if (window.XMLHttpRequest) {
  7235. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7236. xmlhttp = new XMLHttpRequest();
  7237. } else {
  7238. // IE6, IE5 浏览器执行代码
  7239. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7240. }
  7241. xmlhttp.onreadystatechange = function () {
  7242. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7243. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7244. // resolve(res.value[0][0].text);
  7245. if (type == '2') {
  7246. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7247. } else if (type == '3') {
  7248. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7249. }
  7250. } else {
  7251. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7252. }
  7253. }
  7254. }
  7255. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7256. xmlhttp.send();
  7257. }
  7258. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7259. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7260. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7261. _userinfo = US.userInfo, //登录用户信息
  7262. _userid = US.userInfo.userid //登录用户id
  7263. let _iframe;
  7264. let _cid = cid,
  7265. _stage = stage,
  7266. _task = task,
  7267. _tool = tool;
  7268. var _jie = $$("div", {
  7269. "style": {
  7270. "position": "absolute",
  7271. "bottom": "50px",
  7272. "right": "50px",
  7273. "zIndex": "9999",
  7274. "backgroundColor": "#2268bc",
  7275. "color": "#fff",
  7276. "padding": "12px 20px",
  7277. "cursor": "pointer",
  7278. "borderRadius": "4px",
  7279. },
  7280. "innerHTML": "确认并提交"
  7281. })
  7282. let aTool = ''
  7283. let _loading = document.createElement('div')
  7284. _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;"
  7285. // _loading.id = "";
  7286. let _lchild = document.createElement('div')
  7287. let _limg = document.createElement('img')
  7288. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7289. _limg.style = "width: 26px;margin-right: 10px;"
  7290. _lchild.appendChild(_limg)
  7291. let _lspan = document.createElement('span')
  7292. _lspan.innerHTML = "上传中..."
  7293. _lchild.appendChild(_lspan)
  7294. _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%);"
  7295. _loading.appendChild(_lchild)
  7296. var _box = $$('div', {
  7297. "style": {
  7298. "position": "relative",
  7299. "width": "100%",
  7300. "height": "100%",
  7301. },
  7302. })
  7303. _box.appendChild(_loading)
  7304. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7305. switch (str) {
  7306. case "whiteboard":
  7307. aTool = 1;
  7308. _iframe = $$("iframe", {
  7309. "frameborder": "no",
  7310. "border": "0",
  7311. "scrolling ": "no",
  7312. "style": {
  7313. "cssText": "border:0;width:100%;height:100%"
  7314. },
  7315. "src": "https://beta.iwb.cocorobo.cn/"
  7316. })
  7317. _box.appendChild(_iframe);
  7318. _box.appendChild(_jie);
  7319. _formdiv = new U.UF.UI.form(
  7320. "电子白板",
  7321. _box, {
  7322. "id": "whiteboards" + cid + stage + task + tool,
  7323. "style": {
  7324. "width": "90%",
  7325. "height": "90%",
  7326. "overflow": 'hidden'
  7327. },
  7328. "onresize": function () { }
  7329. }, {
  7330. closecallback: function () { }
  7331. }, {
  7332. "style": {
  7333. "height": "36px"
  7334. }
  7335. }).form; //创建窗体
  7336. _taskbar = {
  7337. "id": str + _formdiv.id,
  7338. "style": {
  7339. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7340. },
  7341. "name": "电子白板",
  7342. "forms": _formdiv,
  7343. "click": function () {
  7344. U.MD.D.I.openApplication(str, obj, info);
  7345. }
  7346. }
  7347. break;
  7348. case "mind":
  7349. aTool = 3;
  7350. _iframe = $$("iframe", {
  7351. "frameborder": "no",
  7352. "border": "0",
  7353. "scrolling ": "no",
  7354. "style": {
  7355. "cssText": "border:0;width:100%;height:100%"
  7356. },
  7357. "src": "/kityminder-editor/dist/index.html"
  7358. });
  7359. _box.appendChild(_iframe);
  7360. _box.appendChild(_jie);
  7361. _formdiv = new U.UF.UI.form(
  7362. "思维导图",
  7363. _box, { //"/jsmind/example/demo.html"
  7364. "id": "minds" + cid + stage + task + tool,
  7365. "style": {
  7366. "width": "90%",
  7367. "height": "90%",
  7368. "overflow": 'hidden'
  7369. },
  7370. "onresize": function () { }
  7371. }, {
  7372. closecallback: function () { }
  7373. }, {
  7374. "style": {
  7375. "height": "36px"
  7376. }
  7377. }).form; //创建窗体
  7378. _taskbar = {
  7379. "id": str + _formdiv.id,
  7380. "style": {
  7381. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7382. },
  7383. "name": "思维导图",
  7384. "forms": _formdiv,
  7385. "click": function () {
  7386. U.MD.D.I.openApplication(str, obj, info);
  7387. }
  7388. }
  7389. break;
  7390. case "doc":
  7391. aTool = 6;
  7392. _iframe = $$("iframe", {
  7393. "frameborder": "no",
  7394. "border": "0",
  7395. "scrolling ": "no",
  7396. "style": {
  7397. "cssText": "border:0;width:100%;height:100%"
  7398. },
  7399. "src": "/Office/Word/WordEditArea.htm"
  7400. })
  7401. _box.appendChild(_iframe);
  7402. _box.appendChild(_jie);
  7403. _formdiv = new U.UF.UI.form(
  7404. "协同文档",
  7405. _box, {
  7406. "id": "docs" + cid + stage + task + tool,
  7407. "style": {
  7408. "width": "90%",
  7409. "height": "90%",
  7410. "overflow": 'hidden'
  7411. },
  7412. "onresize": function () { }
  7413. }, {
  7414. closecallback: function () { }
  7415. }, {
  7416. "style": {
  7417. "height": "36px"
  7418. }
  7419. }).form; //创建窗体
  7420. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7421. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7422. })
  7423. _taskbar = {
  7424. "id": str + _formdiv.id,
  7425. "style": {
  7426. "backgroundImage": "url(/img/icon/doc.png)"
  7427. },
  7428. "name": "协同文档",
  7429. "forms": _formdiv,
  7430. "click": function () {
  7431. U.MD.D.I.openApplication(str, obj, info);
  7432. }
  7433. }
  7434. break;
  7435. }
  7436. const script1 = document.createElement("script");
  7437. script1.type = "text/javascript";
  7438. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7439. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7440. const script2 = document.createElement("script");
  7441. script2.type = "text/javascript";
  7442. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7443. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7444. const script3 = document.createElement("script");
  7445. script3.type = "text/javascript";
  7446. script3.charset = "UTF-8";
  7447. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7448. const script4 = document.createElement("script");
  7449. script4.type = "text/javascript";
  7450. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7451. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7452. if (_iframe) {
  7453. if (str == 'doc') {
  7454. _iframe = _formdiv.querySelector('iframe')
  7455. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7456. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7457. _iframe.contentWindow.document.body.appendChild(script1);
  7458. _iframe.contentWindow.document.body.appendChild(script2);
  7459. // _iframe.contentWindow.document.body.appendChild(script3);
  7460. _iframe.contentWindow.document.body.appendChild(script4);
  7461. })
  7462. if (onloadListener) {
  7463. _iframe.contentDocument.location.reload()
  7464. } else {
  7465. _iframe.contentDocument.location.reload()
  7466. }
  7467. } else if (str == 'mind') {
  7468. _iframe = _formdiv.querySelector('iframe')
  7469. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7470. _iframe.contentWindow.document.body.appendChild(script1);
  7471. _iframe.contentWindow.document.body.appendChild(script2);
  7472. _iframe.contentWindow.document.body.appendChild(script4);
  7473. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7474. })
  7475. if (onloadListener) {
  7476. _iframe.contentDocument.location.reload()
  7477. } else {
  7478. _iframe.contentDocument.location.reload()
  7479. }
  7480. } else {
  7481. _iframe.onload = () => {
  7482. _iframe.contentWindow.document.body.appendChild(script1);
  7483. _iframe.contentWindow.document.body.appendChild(script2);
  7484. // _iframe.contentWindow.document.body.appendChild(script3);
  7485. _iframe.contentWindow.document.body.appendChild(script4);
  7486. };
  7487. }
  7488. _jie.onclick = async () => {
  7489. let text = ''
  7490. if (aTool == 6) {
  7491. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7492. } else if (aTool == 3) {
  7493. text = await U.MD.D.I.getEditorContent(_iframe);
  7494. }
  7495. _loading.style.display = 'flex'
  7496. console.log(_loading);
  7497. var _ajs = _iframe.contentWindow.document.createElement("script");
  7498. _ajs.type = "text/javascript";
  7499. _ajs.innerHTML =
  7500. // 'console.log(' + _loading + ');\n' +
  7501. 'var _js = document.createElement("script");\n' +
  7502. '_js.type="text/javascript";\n' +
  7503. '_js.charset="UTF-8";\n' +
  7504. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7505. "_js.onload = function(){\n" +
  7506. ' var a = document.getElementsByTagName("img")\n' +
  7507. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7508. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7509. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7510. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7511. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7512. "beforeUpload_shishi(file," +
  7513. "'" +
  7514. _userid +
  7515. "'" +
  7516. ", " +
  7517. "'" +
  7518. _cid +
  7519. "'" +
  7520. ", " +
  7521. "'" +
  7522. _stage +
  7523. "'" +
  7524. ", " +
  7525. "'" +
  7526. _task +
  7527. "'" +
  7528. ", " +
  7529. "'" +
  7530. _tool +
  7531. "'" +
  7532. ", " +
  7533. "'" +
  7534. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7535. "'" +
  7536. ", " +
  7537. "'" +
  7538. aTool +
  7539. "'" +
  7540. ", " +
  7541. "`" +
  7542. text +
  7543. "`" +
  7544. ")\n" +
  7545. " });\n" +
  7546. "}\n" +
  7547. "document.head.appendChild(_js);\n";
  7548. _iframe.contentWindow.document.head.appendChild(_ajs);
  7549. }
  7550. }
  7551. //U.MD.D.I.openClick(str);
  7552. //如果有任务栏信息
  7553. // if (_taskbar) {
  7554. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7555. // }
  7556. }
  7557. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7558. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7559. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7560. _userinfo = US.userInfo, //登录用户信息
  7561. _userid = US.userInfo.userid //登录用户id
  7562. let _iframe;
  7563. let _cid = cid,
  7564. _stage = stage,
  7565. _task = task,
  7566. _tool = tool;
  7567. var _jie = $$("div", {
  7568. "style": {
  7569. "position": "absolute",
  7570. "bottom": "50px",
  7571. "right": "50px",
  7572. "zIndex": "9999",
  7573. "backgroundColor": "#2268bc",
  7574. "color": "#fff",
  7575. "padding": "12px 20px",
  7576. "cursor": "pointer",
  7577. "borderRadius": "4px",
  7578. },
  7579. "innerHTML": "确认并提交"
  7580. })
  7581. let aTool = ''
  7582. let _loading = document.createElement('div')
  7583. _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;"
  7584. // _loading.id = "";
  7585. let _lchild = document.createElement('div')
  7586. let _limg = document.createElement('img')
  7587. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7588. _limg.style = "width: 26px;margin-right: 10px;"
  7589. _lchild.appendChild(_limg)
  7590. let _lspan = document.createElement('span')
  7591. _lspan.innerHTML = "上传中..."
  7592. _lchild.appendChild(_lspan)
  7593. _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%);"
  7594. _loading.appendChild(_lchild)
  7595. var _box = $$('div', {
  7596. "style": {
  7597. "position": "relative",
  7598. "width": "100%",
  7599. "height": "100%",
  7600. },
  7601. })
  7602. _box.appendChild(_loading)
  7603. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7604. switch (str) {
  7605. case "whiteboard":
  7606. aTool = 1;
  7607. _iframe = $$("iframe", {
  7608. "frameborder": "no",
  7609. "border": "0",
  7610. "scrolling ": "no",
  7611. "style": {
  7612. "cssText": "border:0;width:100%;height:100%"
  7613. },
  7614. "src": "https://beta.iwb.cocorobo.cn/"
  7615. })
  7616. _box.appendChild(_iframe);
  7617. _box.appendChild(_jie);
  7618. _formdiv = new U.UF.UI.form(
  7619. "电子白板",
  7620. _box, {
  7621. "id": "whiteboards" + cid + stage + task + tool,
  7622. "style": {
  7623. "width": "90%",
  7624. "height": "90%",
  7625. "overflow": 'hidden'
  7626. },
  7627. "onresize": function () { }
  7628. }, {
  7629. closecallback: function () { }
  7630. }, {
  7631. "style": {
  7632. "height": "36px"
  7633. }
  7634. }).form; //创建窗体
  7635. _taskbar = {
  7636. "id": str + _formdiv.id,
  7637. "style": {
  7638. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7639. },
  7640. "name": "电子白板",
  7641. "forms": _formdiv,
  7642. "click": function () {
  7643. U.MD.D.I.openApplication(str, obj, info);
  7644. }
  7645. }
  7646. break;
  7647. case "mind":
  7648. aTool = 3;
  7649. _iframe = $$("iframe", {
  7650. "frameborder": "no",
  7651. "border": "0",
  7652. "scrolling ": "no",
  7653. "style": {
  7654. "cssText": "border:0;width:100%;height:100%"
  7655. },
  7656. "src": "/kityminder-editor/dist/index.html"
  7657. });
  7658. _box.appendChild(_iframe);
  7659. _box.appendChild(_jie);
  7660. _formdiv = new U.UF.UI.form(
  7661. "思维导图",
  7662. _box, { //"/jsmind/example/demo.html"
  7663. "id": "minds" + cid + stage + task + tool,
  7664. "style": {
  7665. "width": "90%",
  7666. "height": "90%",
  7667. "overflow": 'hidden'
  7668. },
  7669. "onresize": function () { }
  7670. }, {
  7671. closecallback: function () { }
  7672. }, {
  7673. "style": {
  7674. "height": "36px"
  7675. }
  7676. }).form; //创建窗体
  7677. _taskbar = {
  7678. "id": str + _formdiv.id,
  7679. "style": {
  7680. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7681. },
  7682. "name": "思维导图",
  7683. "forms": _formdiv,
  7684. "click": function () {
  7685. U.MD.D.I.openApplication(str, obj, info);
  7686. }
  7687. }
  7688. break;
  7689. case "doc":
  7690. aTool = 6;
  7691. _iframe = $$("iframe", {
  7692. "frameborder": "no",
  7693. "border": "0",
  7694. "scrolling ": "no",
  7695. "style": {
  7696. "cssText": "border:0;width:100%;height:100%"
  7697. },
  7698. "src": "/Office/Word/WordEditArea.htm"
  7699. })
  7700. _box.appendChild(_iframe);
  7701. _box.appendChild(_jie);
  7702. _formdiv = new U.UF.UI.form(
  7703. "协同文档",
  7704. _box, {
  7705. "id": "docs" + cid + stage + task + tool,
  7706. "style": {
  7707. "width": "90%",
  7708. "height": "90%",
  7709. "overflow": 'hidden'
  7710. },
  7711. "onresize": function () { }
  7712. }, {
  7713. closecallback: function () { }
  7714. }, {
  7715. "style": {
  7716. "height": "36px"
  7717. }
  7718. }).form; //创建窗体
  7719. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7720. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7721. })
  7722. _taskbar = {
  7723. "id": str + _formdiv.id,
  7724. "style": {
  7725. "backgroundImage": "url(/img/icon/doc.png)"
  7726. },
  7727. "name": "协同文档",
  7728. "forms": _formdiv,
  7729. "click": function () {
  7730. U.MD.D.I.openApplication(str, obj, info);
  7731. }
  7732. }
  7733. break;
  7734. }
  7735. const script1 = document.createElement("script");
  7736. script1.type = "text/javascript";
  7737. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7738. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7739. const script2 = document.createElement("script");
  7740. script2.type = "text/javascript";
  7741. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7742. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7743. const script3 = document.createElement("script");
  7744. script3.type = "text/javascript";
  7745. script3.charset = "UTF-8";
  7746. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7747. const script4 = document.createElement("script");
  7748. script4.type = "text/javascript";
  7749. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7750. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7751. if (_iframe) {
  7752. if (str == 'doc') {
  7753. _iframe = _formdiv.querySelector('iframe')
  7754. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7755. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7756. _iframe.contentWindow.document.body.appendChild(script1);
  7757. _iframe.contentWindow.document.body.appendChild(script2);
  7758. // _iframe.contentWindow.document.body.appendChild(script3);
  7759. _iframe.contentWindow.document.body.appendChild(script4);
  7760. })
  7761. if (onloadListener) {
  7762. _iframe.contentDocument.location.reload()
  7763. } else {
  7764. _iframe.contentDocument.location.reload()
  7765. }
  7766. } else if (str == 'mind') {
  7767. _iframe = _formdiv.querySelector('iframe')
  7768. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7769. _iframe.contentWindow.document.body.appendChild(script1);
  7770. _iframe.contentWindow.document.body.appendChild(script2);
  7771. _iframe.contentWindow.document.body.appendChild(script4);
  7772. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7773. })
  7774. if (onloadListener) {
  7775. _iframe.contentDocument.location.reload()
  7776. } else {
  7777. _iframe.contentDocument.location.reload()
  7778. }
  7779. } else {
  7780. _iframe.onload = () => {
  7781. _iframe.contentWindow.document.body.appendChild(script1);
  7782. _iframe.contentWindow.document.body.appendChild(script2);
  7783. // _iframe.contentWindow.document.body.appendChild(script3);
  7784. _iframe.contentWindow.document.body.appendChild(script4);
  7785. };
  7786. }
  7787. _jie.onclick = async () => {
  7788. let text = ''
  7789. if (aTool == 6) {
  7790. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7791. } else if (aTool == 3) {
  7792. text = await U.MD.D.I.getEditorContent(_iframe);
  7793. }
  7794. _loading.style.display = 'flex'
  7795. console.log(_loading);
  7796. var _ajs = _iframe.contentWindow.document.createElement("script");
  7797. _ajs.type = "text/javascript";
  7798. _ajs.innerHTML =
  7799. // 'console.log(' + _loading + ');\n' +
  7800. 'var _js = document.createElement("script");\n' +
  7801. '_js.type="text/javascript";\n' +
  7802. '_js.charset="UTF-8";\n' +
  7803. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7804. "_js.onload = function(){\n" +
  7805. ' var a = document.getElementsByTagName("img")\n' +
  7806. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7807. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7808. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7809. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7810. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7811. "beforeUpload_shishi(file," +
  7812. "'" +
  7813. _userid +
  7814. "'" +
  7815. ", " +
  7816. "'" +
  7817. _cid +
  7818. "'" +
  7819. ", " +
  7820. "'" +
  7821. _stage +
  7822. "'" +
  7823. ", " +
  7824. "'" +
  7825. _task +
  7826. "'" +
  7827. ", " +
  7828. "'" +
  7829. _tool +
  7830. "'" +
  7831. ", " +
  7832. "'" +
  7833. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7834. "'" +
  7835. ", " +
  7836. "'" +
  7837. aTool +
  7838. "'" +
  7839. ", " +
  7840. "`" +
  7841. text +
  7842. "`" +
  7843. ")\n" +
  7844. " });\n" +
  7845. "}\n" +
  7846. "document.head.appendChild(_js);\n";
  7847. _iframe.contentWindow.document.head.appendChild(_ajs);
  7848. }
  7849. }
  7850. //U.MD.D.I.openClick(str);
  7851. //如果有任务栏信息
  7852. // if (_taskbar) {
  7853. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7854. // }
  7855. }
  7856. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7857. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7858. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7859. _userinfo = US.userInfo, //登录用户信息
  7860. _userid = US.userInfo.userid //登录用户id
  7861. let _iframe;
  7862. let _cid = cid,
  7863. _stage = stage,
  7864. _task = task,
  7865. _tool = tool;
  7866. var _jie = $$("div", {
  7867. "style": {
  7868. "position": "absolute",
  7869. "bottom": "50px",
  7870. "right": "50px",
  7871. "zIndex": "9999",
  7872. "backgroundColor": "#2268bc",
  7873. "color": "#fff",
  7874. "padding": "12px 20px",
  7875. "cursor": "pointer",
  7876. "borderRadius": "4px",
  7877. },
  7878. "innerHTML": "上传模板"
  7879. })
  7880. let aTool = ''
  7881. let _loading = document.createElement('div')
  7882. _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;"
  7883. // _loading.id = "";
  7884. let _lchild = document.createElement('div')
  7885. let _limg = document.createElement('img')
  7886. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7887. _limg.style = "width: 26px;margin-right: 10px;"
  7888. _lchild.appendChild(_limg)
  7889. let _lspan = document.createElement('span')
  7890. _lspan.innerHTML = "上传中..."
  7891. _lchild.appendChild(_lspan)
  7892. _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%);"
  7893. _loading.appendChild(_lchild)
  7894. var _box = $$('div', {
  7895. "style": {
  7896. "position": "relative",
  7897. "width": "100%",
  7898. "height": "100%",
  7899. },
  7900. })
  7901. _box.appendChild(_loading)
  7902. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7903. switch (str) {
  7904. case "whiteboard":
  7905. aTool = 1;
  7906. _iframe = $$("iframe", {
  7907. "frameborder": "no",
  7908. "border": "0",
  7909. "scrolling ": "no",
  7910. "style": {
  7911. "cssText": "border:0;width:100%;height:100%"
  7912. },
  7913. "src": "https://beta.iwb.cocorobo.cn/"
  7914. })
  7915. _box.appendChild(_iframe);
  7916. _box.appendChild(_jie);
  7917. _formdiv = new U.UF.UI.form(
  7918. "电子白板",
  7919. _box, {
  7920. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7921. "style": {
  7922. "width": "90%",
  7923. "height": "90%",
  7924. "overflow": 'hidden'
  7925. },
  7926. "onresize": function () { }
  7927. }, {
  7928. closecallback: function () { }
  7929. }, {
  7930. "style": {
  7931. "height": "36px"
  7932. }
  7933. }).form; //创建窗体
  7934. _taskbar = {
  7935. "id": str + _formdiv.id,
  7936. "style": {
  7937. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7938. },
  7939. "name": "电子白板",
  7940. "forms": _formdiv,
  7941. "click": function () {
  7942. U.MD.D.I.openApplication(str, obj, info);
  7943. }
  7944. }
  7945. break;
  7946. case "mind":
  7947. aTool = 3;
  7948. _iframe = $$("iframe", {
  7949. "frameborder": "no",
  7950. "border": "0",
  7951. "scrolling ": "no",
  7952. "style": {
  7953. "cssText": "border:0;width:100%;height:100%"
  7954. },
  7955. "src": "/kityminder-editor/dist/index.html"
  7956. });
  7957. _box.appendChild(_iframe);
  7958. _box.appendChild(_jie);
  7959. _formdiv = new U.UF.UI.form(
  7960. "思维导图",
  7961. _box, { //"/jsmind/example/demo.html"
  7962. "id": "minds_Yu" + cid + stage + task + tool,
  7963. "style": {
  7964. "width": "90%",
  7965. "height": "90%",
  7966. "overflow": 'hidden'
  7967. },
  7968. "onresize": function () { }
  7969. }, {
  7970. closecallback: function () { }
  7971. }, {
  7972. "style": {
  7973. "height": "36px"
  7974. }
  7975. }).form; //创建窗体
  7976. _taskbar = {
  7977. "id": str + _formdiv.id,
  7978. "style": {
  7979. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7980. },
  7981. "name": "思维导图",
  7982. "forms": _formdiv,
  7983. "click": function () {
  7984. U.MD.D.I.openApplication(str, obj, info);
  7985. }
  7986. }
  7987. break;
  7988. case "doc":
  7989. aTool = 6;
  7990. _iframe = $$("iframe", {
  7991. "frameborder": "no",
  7992. "border": "0",
  7993. "scrolling ": "no",
  7994. "style": {
  7995. "cssText": "border:0;width:100%;height:100%"
  7996. },
  7997. "src": "/Office/Word/WordEditArea.htm"
  7998. })
  7999. _box.appendChild(_iframe);
  8000. _box.appendChild(_jie);
  8001. _formdiv = new U.UF.UI.form(
  8002. "协同文档",
  8003. _box, {
  8004. "id": "docs_Yu" + cid + stage + task + tool,
  8005. "style": {
  8006. "width": "90%",
  8007. "height": "90%",
  8008. "overflow": 'hidden'
  8009. },
  8010. "onresize": function () { }
  8011. }, {
  8012. closecallback: function () { }
  8013. }, {
  8014. "style": {
  8015. "height": "36px"
  8016. }
  8017. }).form; //创建窗体
  8018. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8019. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8020. })
  8021. _taskbar = {
  8022. "id": str + _formdiv.id,
  8023. "style": {
  8024. "backgroundImage": "url(/img/icon/doc.png)"
  8025. },
  8026. "name": "协同文档",
  8027. "forms": _formdiv,
  8028. "click": function () {
  8029. U.MD.D.I.openApplication(str, obj, info);
  8030. }
  8031. }
  8032. break;
  8033. case "CocoPi":
  8034. aTool = 57;
  8035. _iframe = $$("iframe", {
  8036. "allowpaymentrequest": "allowpaymentrequest",
  8037. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8038. "webkitallowfullscreen": "",
  8039. "mozallowfullscreen": "",
  8040. "frameborder": "no",
  8041. "border": "0",
  8042. "scrolling ": "no",
  8043. "style": {
  8044. "cssText": "border:0;width:100%;height:100%"
  8045. },
  8046. "src": "https://pi.cocorobo.cn/"
  8047. })
  8048. _box.appendChild(_iframe);
  8049. _box.appendChild(_jie);
  8050. _formdiv = new U.UF.UI.form(
  8051. "CocoPi",
  8052. _box, {
  8053. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8054. "style": {
  8055. "width": "90%",
  8056. "height": "90%",
  8057. "overflow": 'hidden'
  8058. },
  8059. "onresize": function () { }
  8060. }, {
  8061. closecallback: function () { }
  8062. }, {
  8063. "style": {
  8064. "height": "36px"
  8065. }
  8066. }).form; //创建窗体
  8067. _taskbar = {
  8068. "id": str + _formdiv.id,
  8069. "style": {
  8070. "backgroundImage": "url(/img/icon/cocopi.png)"
  8071. },
  8072. "name": "CocoPi",
  8073. "forms": _formdiv,
  8074. "click": function () {
  8075. U.MD.D.I.openApplication(str, obj, info);
  8076. }
  8077. }
  8078. break;
  8079. }
  8080. if (_iframe) {
  8081. if (str == 'doc') {
  8082. _iframe = _formdiv.querySelector('iframe')
  8083. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8084. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8085. })
  8086. if (onloadListener) {
  8087. _iframe.contentDocument.location.reload()
  8088. } else {
  8089. _iframe.contentDocument.location.reload()
  8090. }
  8091. } else if (str == 'mind') {
  8092. _iframe = _formdiv.querySelector('iframe')
  8093. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8094. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8095. })
  8096. if (onloadListener) {
  8097. _iframe.contentDocument.location.reload()
  8098. } else {
  8099. _iframe.contentDocument.location.reload()
  8100. }
  8101. } else if (str == 'whiteboard') {
  8102. _iframe = _formdiv.querySelector('iframe')
  8103. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8104. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8105. })
  8106. if (onloadListener) {
  8107. _iframe.contentDocument.location.reload()
  8108. } else {
  8109. _iframe.contentDocument.location.reload()
  8110. }
  8111. } else if (str == 'CocoPi') {
  8112. _iframe = _formdiv.querySelector('iframe')
  8113. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8114. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8115. })
  8116. if (onloadListener) {
  8117. _iframe.contentDocument.location.reload()
  8118. } else {
  8119. _iframe.contentDocument.location.reload()
  8120. }
  8121. } else {
  8122. _iframe.onload = () => { };
  8123. }
  8124. _jie.onclick = async () => {
  8125. let text = ''
  8126. let type = '2'
  8127. if (aTool == 1) {
  8128. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8129. type = '3'
  8130. } else if (aTool == 6) {
  8131. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8132. type = '1'
  8133. } else if (aTool == 3) {
  8134. text = await U.MD.D.I.getEditorContent(_iframe);
  8135. type = '2'
  8136. } else if (aTool == 57) {
  8137. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8138. type = '4'
  8139. }
  8140. _loading.style.display = 'flex'
  8141. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8142. }
  8143. }
  8144. //U.MD.D.I.openClick(str);
  8145. //如果有任务栏信息
  8146. // if (_taskbar) {
  8147. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8148. // }
  8149. }
  8150. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8151. var xmlhttp;
  8152. var Mac, Sn, DeviceId
  8153. if (window.XMLHttpRequest) {
  8154. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8155. xmlhttp = new XMLHttpRequest();
  8156. } else {
  8157. // IE6, IE5 浏览器执行代码
  8158. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8159. }
  8160. xmlhttp.onreadystatechange = function () {
  8161. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8162. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8163. // resolve(res.value[0][0].text);
  8164. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8165. }
  8166. }
  8167. }
  8168. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8169. xmlhttp.send();
  8170. }
  8171. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8172. var xmlhttp;
  8173. var Mac, Sn, DeviceId
  8174. if (window.XMLHttpRequest) {
  8175. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8176. xmlhttp = new XMLHttpRequest();
  8177. } else {
  8178. // IE6, IE5 浏览器执行代码
  8179. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8180. }
  8181. xmlhttp.onreadystatechange = function () {
  8182. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8183. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8184. // resolve(res.value[0][0].text);
  8185. if (type == '2') {
  8186. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8187. } else if (type == '3') {
  8188. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8189. } else if (type == '4') {
  8190. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8191. }
  8192. } else {
  8193. if (type == '2') {
  8194. iframe.contentWindow.editor.minder.importData('json', '')
  8195. } else if (type == '3') {
  8196. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8197. } else if (type == '4') {
  8198. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8199. }
  8200. }
  8201. }
  8202. }
  8203. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8204. xmlhttp.send();
  8205. }
  8206. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8207. var xmlhttp;
  8208. var Mac, Sn, DeviceId
  8209. if (window.XMLHttpRequest) {
  8210. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8211. xmlhttp = new XMLHttpRequest();
  8212. } else {
  8213. // IE6, IE5 浏览器执行代码
  8214. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8215. }
  8216. xmlhttp.onreadystatechange = function () {
  8217. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8218. if (xmlhttp.response) {
  8219. // resolve(res.value[0][0].text);
  8220. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8221. // $(fileInput).val('');
  8222. // });
  8223. span.innerHTML = '上传成功'
  8224. setTimeout(() => {
  8225. loading.style.display = 'none'
  8226. }, 1000);
  8227. }
  8228. }
  8229. }
  8230. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8231. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8232. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8233. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8234. // 设置请求头,表示请求体的编码格式
  8235. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8236. // 设置请求体,使用url-encoded格式的数据
  8237. }
  8238. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8239. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8240. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8241. _userinfo = US.userInfo, //登录用户信息
  8242. _userid = US.userInfo.userid //登录用户id
  8243. let _iframe;
  8244. let _cid = cid,
  8245. _stage = stage,
  8246. _task = task,
  8247. _tool = tool;
  8248. var _jie = $$("div", {
  8249. "style": {
  8250. "position": "absolute",
  8251. "bottom": "50px",
  8252. "right": "50px",
  8253. "zIndex": "9999",
  8254. "backgroundColor": "#2268bc",
  8255. "color": "#fff",
  8256. "padding": "12px 20px",
  8257. "cursor": "pointer",
  8258. "borderRadius": "4px",
  8259. },
  8260. "innerHTML": "提交作业"
  8261. })
  8262. let aTool = ''
  8263. let _loading = document.createElement('div')
  8264. _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;"
  8265. // _loading.id = "";
  8266. let _lchild = document.createElement('div')
  8267. let _limg = document.createElement('img')
  8268. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8269. _limg.style = "width: 26px;margin-right: 10px;"
  8270. _lchild.appendChild(_limg)
  8271. let _lspan = document.createElement('span')
  8272. _lspan.innerHTML = "上传中..."
  8273. _lchild.appendChild(_lspan)
  8274. _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%);"
  8275. _loading.appendChild(_lchild)
  8276. var _box = $$('div', {
  8277. "style": {
  8278. "position": "relative",
  8279. "width": "100%",
  8280. "height": "100%",
  8281. },
  8282. })
  8283. _box.appendChild(_loading)
  8284. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8285. switch (str) {
  8286. case "CocoPi":
  8287. aTool = 57;
  8288. _iframe = $$("iframe", {
  8289. "allowpaymentrequest": "allowpaymentrequest",
  8290. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8291. "webkitallowfullscreen": "",
  8292. "mozallowfullscreen": "",
  8293. "frameborder": "no",
  8294. "border": "0",
  8295. "scrolling ": "no",
  8296. "style": {
  8297. "cssText": "border:0;width:100%;height:100%"
  8298. },
  8299. "src": "https://pi.cocorobo.cn/"
  8300. })
  8301. _box.appendChild(_iframe);
  8302. _box.appendChild(_jie);
  8303. _formdiv = new U.UF.UI.form(
  8304. "CocoPi",
  8305. _box, {
  8306. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8307. "style": {
  8308. "width": "90%",
  8309. "height": "90%",
  8310. "overflow": 'hidden'
  8311. },
  8312. "onresize": function () { }
  8313. }, {
  8314. closecallback: function () { }
  8315. }, {
  8316. "style": {
  8317. "height": "36px"
  8318. }
  8319. }).form; //创建窗体
  8320. _taskbar = {
  8321. "id": str + _formdiv.id,
  8322. "style": {
  8323. "backgroundImage": "url(/img/icon/cocopi.png)"
  8324. },
  8325. "name": "CocoPi",
  8326. "forms": _formdiv,
  8327. "click": function () {
  8328. U.MD.D.I.openApplication(str, obj, info);
  8329. }
  8330. }
  8331. break;
  8332. }
  8333. if (_iframe) {
  8334. if (str == 'CocoPi') {
  8335. _iframe = _formdiv.querySelector('iframe')
  8336. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8337. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8338. })
  8339. if (onloadListener) {
  8340. _iframe.contentDocument.location.reload()
  8341. } else {
  8342. _iframe.contentDocument.location.reload()
  8343. }
  8344. }
  8345. _jie.onclick = async () => {
  8346. let text = ''
  8347. if (aTool == 57) {
  8348. text = _iframe.contentWindow.getLoadXmlStr()
  8349. }
  8350. _loading.style.display = 'flex'
  8351. console.log(_loading);
  8352. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8353. _loading.style.display = 'none'
  8354. let _div = document.createElement('div')
  8355. _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;"
  8356. let _inner = document.createElement('div')
  8357. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8358. _inner.innerHTML = "上传成功"
  8359. _div.appendChild(_inner)
  8360. _iframe.contentWindow.window.document.body.appendChild(_div)
  8361. _div.onclick = () => {
  8362. _iframe.contentWindow.window.document.body.removeChild(_div)
  8363. }
  8364. setTimeout(() => {
  8365. _iframe.contentWindow.window.document.body.removeChild(_div)
  8366. }, 1000);
  8367. }, [], { "type": "POST", "withCredentials": true });
  8368. }
  8369. }
  8370. }
  8371. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8372. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8373. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8374. _userid = student.userid, //登录用户id
  8375. _username = student.student //用户名字
  8376. let _iframe;
  8377. let _cid = cid,
  8378. _stage = stage,
  8379. _task = task,
  8380. _tool = tool;
  8381. var _jie = $$("div", {
  8382. "style": {
  8383. "position": "absolute",
  8384. "bottom": "50px",
  8385. "right": "50px",
  8386. "zIndex": "9999",
  8387. "backgroundColor": "#2268bc",
  8388. "color": "#fff",
  8389. "padding": "12px 20px",
  8390. "cursor": "pointer",
  8391. "borderRadius": "4px",
  8392. },
  8393. "innerHTML": "提交作业"
  8394. })
  8395. let aTool = ''
  8396. let _loading = document.createElement('div')
  8397. _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;"
  8398. // _loading.id = "";
  8399. let _lchild = document.createElement('div')
  8400. let _limg = document.createElement('img')
  8401. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8402. _limg.style = "width: 26px;margin-right: 10px;"
  8403. _lchild.appendChild(_limg)
  8404. let _lspan = document.createElement('span')
  8405. _lspan.innerHTML = "上传中..."
  8406. _lchild.appendChild(_lspan)
  8407. _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%);"
  8408. _loading.appendChild(_lchild)
  8409. var _box = $$('div', {
  8410. "style": {
  8411. "position": "relative",
  8412. "width": "100%",
  8413. "height": "100%",
  8414. },
  8415. })
  8416. _box.appendChild(_loading)
  8417. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8418. switch (str) {
  8419. case "CocoPi":
  8420. aTool = 57;
  8421. _iframe = $$("iframe", {
  8422. "allowpaymentrequest": "allowpaymentrequest",
  8423. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8424. "webkitallowfullscreen": "",
  8425. "mozallowfullscreen": "",
  8426. "frameborder": "no",
  8427. "border": "0",
  8428. "scrolling ": "no",
  8429. "style": {
  8430. "cssText": "border:0;width:100%;height:100%"
  8431. },
  8432. "src": "https://pi.cocorobo.cn/"
  8433. })
  8434. _box.appendChild(_iframe);
  8435. _box.appendChild(_jie);
  8436. _formdiv = new U.UF.UI.form(
  8437. "CocoPi-" + _username,
  8438. _box, {
  8439. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8440. "style": {
  8441. "width": "90%",
  8442. "height": "90%",
  8443. "overflow": 'hidden'
  8444. },
  8445. "onresize": function () { }
  8446. }, {
  8447. closecallback: function () { }
  8448. }, {
  8449. "style": {
  8450. "height": "36px"
  8451. }
  8452. }).form; //创建窗体
  8453. _taskbar = {
  8454. "id": str + _formdiv.id,
  8455. "style": {
  8456. "backgroundImage": "url(/img/icon/cocopi.png)"
  8457. },
  8458. "name": "CocoPi",
  8459. "forms": _formdiv,
  8460. "click": function () {
  8461. U.MD.D.I.openApplication(str, obj, info);
  8462. }
  8463. }
  8464. break;
  8465. }
  8466. if (_iframe) {
  8467. if (str == 'CocoPi') {
  8468. _iframe = _formdiv.querySelector('iframe')
  8469. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8470. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8471. })
  8472. if (onloadListener) {
  8473. _iframe.contentDocument.location.reload()
  8474. } else {
  8475. _iframe.contentDocument.location.reload()
  8476. }
  8477. }
  8478. _jie.onclick = async () => {
  8479. let text = ''
  8480. if (aTool == 57) {
  8481. text = _iframe.contentWindow.getLoadXmlStr()
  8482. }
  8483. _loading.style.display = 'flex'
  8484. console.log(_loading);
  8485. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8486. _loading.style.display = 'none'
  8487. let _div = document.createElement('div')
  8488. _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;"
  8489. let _inner = document.createElement('div')
  8490. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8491. _inner.innerHTML = "上传成功"
  8492. _div.appendChild(_inner)
  8493. _iframe.contentWindow.window.document.body.appendChild(_div)
  8494. _div.onclick = () => {
  8495. _iframe.contentWindow.window.document.body.removeChild(_div)
  8496. }
  8497. setTimeout(() => {
  8498. _iframe.contentWindow.window.document.body.removeChild(_div)
  8499. }, 1000);
  8500. }, [], { "type": "POST", "withCredentials": true });
  8501. }
  8502. }
  8503. }
  8504. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8505. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8506. if (res.value[0].length > 0) {
  8507. if (atool == 57) {
  8508. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8509. }
  8510. } else {
  8511. if (atool == 57) {
  8512. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8513. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8514. }
  8515. }
  8516. }, [], { "type": "POST", "withCredentials": true });
  8517. }