DeskTop.js 535 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825
  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. ];
  952. //未来教育基地
  953. U.MD.D.I.szjkyAdminDeskIcon = [
  954. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  955. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  956. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  957. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  958. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  959. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  960. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  961. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  962. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  963. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  964. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  965. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  966. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  967. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  968. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  969. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  970. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  971. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  972. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  973. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  974. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  975. ];
  976. //未来教育基地
  977. U.MD.D.I.szjkyStudentDeskIcon = [
  978. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  979. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  980. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  981. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  982. ];
  983. //成华教育局
  984. U.MD.D.I.chjyjTeacherDeskIcon = [
  985. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  986. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  990. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  991. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  992. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  993. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  994. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  995. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  997. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  998. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  999. ];
  1000. //成华教育局chjyj
  1001. U.MD.D.I.chjyjAdminDeskIcon = [
  1002. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1003. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1004. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1005. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1006. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1007. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1008. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1009. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1010. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1011. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1012. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1013. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1014. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1015. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1016. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1017. ];
  1018. //成华教育局chjyj
  1019. U.MD.D.I.chjyjStudentDeskIcon = [
  1020. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1021. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1022. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1024. ];
  1025. //tpc
  1026. U.MD.D.I.tpcStudentDeskIcon = [
  1027. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1031. ];
  1032. //tpc
  1033. U.MD.D.I.tpcTeacherDeskIcon = [
  1034. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1035. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1036. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1037. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. ];
  1042. //tpc
  1043. U.MD.D.I.tpcAdminDeskIcon = [
  1044. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1045. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1046. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1047. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1048. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1049. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1050. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1051. ];
  1052. //THU-IOE
  1053. U.MD.D.I.thuioeTeacherDeskIcon = [
  1054. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1055. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1056. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1057. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1058. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1059. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1060. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1061. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1062. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1063. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1064. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1065. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1066. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1067. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1068. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1069. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1070. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1071. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1072. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1073. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1074. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1075. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1076. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1077. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1078. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1079. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1080. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1081. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1082. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1083. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1084. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1085. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1086. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1087. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1092. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1093. ];
  1094. //THU-IOE
  1095. U.MD.D.I.thuioeStudentDeskIcon = [
  1096. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1097. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1098. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. ];
  1101. //jccssyl
  1102. U.MD.D.I.jccssylTeacherDeskIcon = [
  1103. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1104. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1105. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1106. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1107. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1109. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1110. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1111. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1112. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1113. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1114. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1115. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1116. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1117. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1118. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1119. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1120. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1121. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylStudentDeskIcon = [
  1125. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1126. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1127. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1128. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1129. ];
  1130. //cale
  1131. U.MD.D.I.caleTeacherDeskIcon = [
  1132. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1133. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1134. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1135. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1136. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1137. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1138. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1139. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1140. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1141. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1142. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1143. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1144. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1145. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1146. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1147. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1148. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1149. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1150. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleStudentDeskIcon = [
  1154. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1155. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1156. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1157. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1158. ];
  1159. //lqwmsgzs
  1160. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1161. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1162. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1163. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1164. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1165. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1166. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1167. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1168. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1169. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1170. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1171. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1172. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1173. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1174. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1175. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1176. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1177. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1178. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1179. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1180. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1181. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1182. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1183. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1184. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1185. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1186. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1187. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1188. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1189. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1190. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1191. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1192. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1193. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1194. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1195. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1196. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1197. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1198. ];
  1199. //lqwmsgzs
  1200. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. ];
  1206. //盐田区幼儿园
  1207. U.MD.D.I.ytyTeacherDeskIcon = [
  1208. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1209. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1214. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1215. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1216. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1217. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1218. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1220. ];
  1221. //盐田区幼儿园
  1222. U.MD.D.I.ytyStudentDeskIcon = [
  1223. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1224. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1225. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1226. ];
  1227. //#region 桌面初始化a
  1228. /**
  1229. * 初始化桌面的起始函数
  1230. *
  1231. */
  1232. U.MD.D.I.init = function () {
  1233. if ($("#U_MD_D_K")[0]) {
  1234. //初始化桌面图标
  1235. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1236. // var clickUrl = ':12588/requestIp.php';
  1237. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1238. // U.MD.D.I.Ip = data;
  1239. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1240. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1241. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1242. // })
  1243. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1244. // })
  1245. }
  1246. }
  1247. /**
  1248. * 模式切换
  1249. *
  1250. */
  1251. U.MD.D.I.ModeCheck = function (type) {
  1252. if (US.Config.type == type) {
  1253. return
  1254. }
  1255. US.Config.type = type
  1256. $('.U_PBL_Check .active')[0].className = ''
  1257. if (type == 1) {
  1258. $('.U_PBL_Check div')[0].className = 'active'
  1259. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1260. } else {
  1261. $('.U_PBL_Check div')[1].className = 'active'
  1262. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1263. }
  1264. //初始化桌面图标
  1265. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1266. if (type == 2) {
  1267. U.MD.D.I.openApplication("project")
  1268. }
  1269. }
  1270. /**
  1271. * 隐藏任务栏
  1272. *
  1273. * @param {element} 桌面元素
  1274. */
  1275. U.MD.D.I.hiddenTaskbar = function (el) {
  1276. //任务栏位置变小
  1277. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1278. //桌面的位置变大
  1279. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1280. }
  1281. /**
  1282. * 隐藏任务栏
  1283. *
  1284. * @param {element} 桌面元素
  1285. */
  1286. U.MD.D.I.hiddenTaskbarout = function (el) {
  1287. //任务栏位置变小
  1288. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1289. //任务栏位置变化
  1290. U.selectEl(el).css({ "bottom": "-60px" });
  1291. //桌面的位置变大
  1292. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1293. }
  1294. }
  1295. /**
  1296. * 初始化打印桌面图标
  1297. *
  1298. * @param {element} 桌面元素
  1299. */
  1300. U.MD.D.I.initDesktopIcons = function (el, type) {
  1301. var i, //用于循环
  1302. _content, //桌面图标元素
  1303. _iconcontent, //桌面图标元素
  1304. _frag = $$("frag"), //定义一个碎片元素
  1305. _type = US.userInfo.type,
  1306. _org = US.userInfo.org,
  1307. _oid = US.userInfo.organizeid,
  1308. _role = US.userInfo.role,
  1309. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1310. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1311. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1312. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1313. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1314. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1315. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1316. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1317. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1318. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1319. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1320. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1321. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1322. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1323. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1324. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1325. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1326. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1327. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1328. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1329. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1330. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1331. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1332. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1333. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1334. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1335. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1336. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1337. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1338. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1339. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1340. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1341. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1342. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1343. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1344. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1345. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1346. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1347. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1348. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1349. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1350. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1351. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1352. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1353. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1354. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1355. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1356. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1357. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1358. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1359. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1360. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1361. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1362. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1363. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1364. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1365. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1366. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1367. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1368. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1369. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1370. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1371. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1372. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1373. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1374. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1375. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1376. 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'];
  1377. 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'];
  1378. //清楚桌面图标
  1379. el.innerHTML = "";
  1380. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1381. _teacherDesktopIconInfo.push(
  1382. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1383. { "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)" } },
  1384. )
  1385. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1386. }
  1387. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1388. _teacherDesktopIconInfo.push(
  1389. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1390. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1394. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1395. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1396. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1397. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1400. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1401. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1402. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1403. )
  1404. }
  1405. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1406. _teacherDesktopIconInfo.push(
  1407. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1408. )
  1409. }
  1410. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1411. // _teacherDesktopIconInfo.push(
  1412. // )
  1413. // }
  1414. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1415. _teacherDesktopIconInfo.push(
  1416. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1417. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1418. )
  1419. }
  1420. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1421. _teacherDesktopIconInfo.push(
  1422. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1423. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1424. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. )
  1427. _studentDesktopIconInfo.push(
  1428. )
  1429. }
  1430. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1431. _teacherDesktopIconInfo.push(
  1432. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1433. )
  1434. _studentDesktopIconInfo.push(
  1435. )
  1436. }
  1437. //麒麟二中 和 民新小学
  1438. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1439. _teacherDesktopIconInfo.push(
  1440. )
  1441. }
  1442. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1443. _teacherDesktopIconInfo.push(
  1444. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1447. )
  1448. }
  1449. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1450. _teacherDesktopIconInfo.push(
  1451. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1452. )
  1453. }
  1454. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1455. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1456. _teacherDesktopIconInfo.push(
  1457. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1458. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1459. )
  1460. }
  1461. //麒麟二中
  1462. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1463. _studentDesktopIconInfo.push(
  1464. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1465. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1466. )
  1467. }
  1468. //万科双语
  1469. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1470. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1471. if (el.Name == '项目管理') {
  1472. el.Name = 'PBL项目'
  1473. }
  1474. return el
  1475. })
  1476. _studentDesktopIconInfo3.push(
  1477. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. )
  1479. }
  1480. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1481. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1482. return el.Name != '魔盒识字' && el.Name != '24点'
  1483. })
  1484. }
  1485. 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) {
  1486. _studentDesktopIconInfo.push(
  1487. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1488. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1489. )
  1490. }
  1491. //循环创建桌面图标
  1492. if (type == 1) {
  1493. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1494. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1495. _content = $$("div", {
  1496. className: "U_MD_D_KO",
  1497. "onmousedown": U.UF.C.closure(function (obj) {
  1498. //防止拖动图标即打开了桌面应用
  1499. U.MD.D.click(this, obj);
  1500. }, [_studentDesktopIconInfo[i]]),
  1501. "onclick": U.UF.C.closure(function (obj) {
  1502. //防止拖动图标即打开了桌面应用
  1503. U.MD.D.click(this, obj);
  1504. }, [_studentDesktopIconInfo[i]])
  1505. }, _frag); //
  1506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1509. }
  1510. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1511. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1512. _content = $$("div", {
  1513. className: "U_MD_D_KO",
  1514. "onmousedown": U.UF.C.closure(function (obj) {
  1515. //防止拖动图标即打开了桌面应用
  1516. U.MD.D.click(this, obj);
  1517. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1518. "onclick": U.UF.C.closure(function (obj) {
  1519. //防止拖动图标即打开了桌面应用
  1520. U.MD.D.click(this, obj);
  1521. }, [_hkZJLSStudentDeskIconInfo[i]])
  1522. }, _frag); //
  1523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1526. } //
  1527. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1528. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1529. _content = $$("div", {
  1530. className: "U_MD_D_KO",
  1531. "onmousedown": U.UF.C.closure(function (obj) {
  1532. //防止拖动图标即打开了桌面应用
  1533. U.MD.D.click(this, obj);
  1534. }, [_ytyStudentDeskIconInfo[i]]),
  1535. "onclick": U.UF.C.closure(function (obj) {
  1536. //防止拖动图标即打开了桌面应用
  1537. U.MD.D.click(this, obj);
  1538. }, [_ytyStudentDeskIconInfo[i]])
  1539. }, _frag); //
  1540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1543. } //
  1544. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1545. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1546. _content = $$("div", {
  1547. className: "U_MD_D_KO",
  1548. "onmousedown": U.UF.C.closure(function (obj) {
  1549. //防止拖动图标即打开了桌面应用
  1550. U.MD.D.click(this, obj);
  1551. }, [_jccssylStudentDeskIconInfo[i]]),
  1552. "onclick": U.UF.C.closure(function (obj) {
  1553. //防止拖动图标即打开了桌面应用
  1554. U.MD.D.click(this, obj);
  1555. }, [_jccssylStudentDeskIconInfo[i]])
  1556. }, _frag); //
  1557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1560. }
  1561. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1562. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1563. _content = $$("div", {
  1564. className: "U_MD_D_KO",
  1565. "onmousedown": U.UF.C.closure(function (obj) {
  1566. //防止拖动图标即打开了桌面应用
  1567. U.MD.D.click(this, obj);
  1568. }, [_caleStudentDeskIconInfo[i]]),
  1569. "onclick": U.UF.C.closure(function (obj) {
  1570. //防止拖动图标即打开了桌面应用
  1571. U.MD.D.click(this, obj);
  1572. }, [_caleStudentDeskIconInfo[i]])
  1573. }, _frag); //
  1574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1577. }
  1578. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1579. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1580. _content = $$("div", {
  1581. className: "U_MD_D_KO",
  1582. "onmousedown": U.UF.C.closure(function (obj) {
  1583. //防止拖动图标即打开了桌面应用
  1584. U.MD.D.click(this, obj);
  1585. }, [_thuioeStudentDeskIconInfo[i]]),
  1586. "onclick": U.UF.C.closure(function (obj) {
  1587. //防止拖动图标即打开了桌面应用
  1588. U.MD.D.click(this, obj);
  1589. }, [_thuioeStudentDeskIconInfo[i]])
  1590. }, _frag); //
  1591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1594. }
  1595. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1596. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1597. _content = $$("div", {
  1598. className: "U_MD_D_KO",
  1599. "onmousedown": U.UF.C.closure(function (obj) {
  1600. //防止拖动图标即打开了桌面应用
  1601. U.MD.D.click(this, obj);
  1602. }, [_tpcStudentDeskIconInfo[i]]),
  1603. "onclick": U.UF.C.closure(function (obj) {
  1604. //防止拖动图标即打开了桌面应用
  1605. U.MD.D.click(this, obj);
  1606. }, [_tpcStudentDeskIconInfo[i]])
  1607. }, _frag); //
  1608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1611. } //
  1612. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1613. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1614. _content = $$("div", {
  1615. className: "U_MD_D_KO",
  1616. "onmousedown": U.UF.C.closure(function (obj) {
  1617. //防止拖动图标即打开了桌面应用
  1618. U.MD.D.click(this, obj);
  1619. }, [_chjyjStudentDeskIconInfo[i]]),
  1620. "onclick": U.UF.C.closure(function (obj) {
  1621. //防止拖动图标即打开了桌面应用
  1622. U.MD.D.click(this, obj);
  1623. }, [_chjyjStudentDeskIconInfo[i]])
  1624. }, _frag); //
  1625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1628. }
  1629. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1630. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1631. _content = $$("div", {
  1632. className: "U_MD_D_KO",
  1633. "onmousedown": U.UF.C.closure(function (obj) {
  1634. //防止拖动图标即打开了桌面应用
  1635. U.MD.D.click(this, obj);
  1636. }, [_szjkyStudentDeskIconInfo[i]]),
  1637. "onclick": U.UF.C.closure(function (obj) {
  1638. //防止拖动图标即打开了桌面应用
  1639. U.MD.D.click(this, obj);
  1640. }, [_szjkyStudentDeskIconInfo[i]])
  1641. }, _frag); //
  1642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1645. }
  1646. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1647. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1648. _content = $$("div", {
  1649. className: "U_MD_D_KO",
  1650. "onmousedown": U.UF.C.closure(function (obj) {
  1651. //防止拖动图标即打开了桌面应用
  1652. U.MD.D.click(this, obj);
  1653. }, [_dseiStudentDeskIconInfo[i]]),
  1654. "onclick": U.UF.C.closure(function (obj) {
  1655. //防止拖动图标即打开了桌面应用
  1656. U.MD.D.click(this, obj);
  1657. }, [_dseiStudentDeskIconInfo[i]])
  1658. }, _frag); //
  1659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1662. }
  1663. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1664. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1665. _content = $$("div", {
  1666. className: "U_MD_D_KO",
  1667. "onmousedown": U.UF.C.closure(function (obj) {
  1668. //防止拖动图标即打开了桌面应用
  1669. U.MD.D.click(this, obj);
  1670. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1671. "onclick": U.UF.C.closure(function (obj) {
  1672. //防止拖动图标即打开了桌面应用
  1673. U.MD.D.click(this, obj);
  1674. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1675. }, _frag); //
  1676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1679. }
  1680. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1681. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1682. _content = $$("div", {
  1683. className: "U_MD_D_KO",
  1684. "onmousedown": U.UF.C.closure(function (obj) {
  1685. //防止拖动图标即打开了桌面应用
  1686. U.MD.D.click(this, obj);
  1687. }, [_siesStudentDeskIconInfo[i]]),
  1688. "onclick": U.UF.C.closure(function (obj) {
  1689. //防止拖动图标即打开了桌面应用
  1690. U.MD.D.click(this, obj);
  1691. }, [_siesStudentDeskIconInfo[i]])
  1692. }, _frag); //
  1693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1696. }
  1697. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1698. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1699. _content = $$("div", {
  1700. className: "U_MD_D_KO",
  1701. "onmousedown": U.UF.C.closure(function (obj) {
  1702. //防止拖动图标即打开了桌面应用
  1703. U.MD.D.click(this, obj);
  1704. }, [_hkStudentDeskIconInfo[i]]),
  1705. "onclick": U.UF.C.closure(function (obj) {
  1706. //防止拖动图标即打开了桌面应用
  1707. U.MD.D.click(this, obj);
  1708. }, [_hkStudentDeskIconInfo[i]])
  1709. }, _frag); //
  1710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1713. }
  1714. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1715. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1716. _content = $$("div", {
  1717. className: "U_MD_D_KO",
  1718. "onmousedown": U.UF.C.closure(function (obj) {
  1719. //防止拖动图标即打开了桌面应用
  1720. U.MD.D.click(this, obj);
  1721. }, [_hkaceStudentDeskIconInfo[i]]),
  1722. "onclick": U.UF.C.closure(function (obj) {
  1723. //防止拖动图标即打开了桌面应用
  1724. U.MD.D.click(this, obj);
  1725. }, [_hkaceStudentDeskIconInfo[i]])
  1726. }, _frag); //
  1727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1730. }
  1731. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1732. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1733. _content = $$("div", {
  1734. className: "U_MD_D_KO",
  1735. "onmousedown": U.UF.C.closure(function (obj) {
  1736. //防止拖动图标即打开了桌面应用
  1737. U.MD.D.click(this, obj);
  1738. }, [_studentDesktopIconInfo[i]]),
  1739. "onclick": U.UF.C.closure(function (obj) {
  1740. //防止拖动图标即打开了桌面应用
  1741. U.MD.D.click(this, obj);
  1742. }, [_studentDesktopIconInfo[i]])
  1743. }, _frag); //
  1744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1747. }
  1748. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1749. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1750. _content = $$("div", {
  1751. className: "U_MD_D_KO",
  1752. "onmousedown": U.UF.C.closure(function (obj) {
  1753. //防止拖动图标即打开了桌面应用
  1754. U.MD.D.click(this, obj);
  1755. }, [_tcStudentDeskIconInfo[i]]),
  1756. "onclick": U.UF.C.closure(function (obj) {
  1757. //防止拖动图标即打开了桌面应用
  1758. U.MD.D.click(this, obj);
  1759. }, [_tcStudentDeskIconInfo[i]])
  1760. }, _frag); //
  1761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1764. }
  1765. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1766. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1767. _content = $$("div", {
  1768. className: "U_MD_D_KO",
  1769. "onmousedown": U.UF.C.closure(function (obj) {
  1770. //防止拖动图标即打开了桌面应用
  1771. U.MD.D.click(this, obj);
  1772. }, [_szscStudentDeskIconInfo[i]]),
  1773. "onclick": U.UF.C.closure(function (obj) {
  1774. //防止拖动图标即打开了桌面应用
  1775. U.MD.D.click(this, obj);
  1776. }, [_szscStudentDeskIconInfo[i]])
  1777. }, _frag); //
  1778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1781. }
  1782. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1783. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1784. _content = $$("div", {
  1785. className: "U_MD_D_KO",
  1786. "onmousedown": U.UF.C.closure(function (obj) {
  1787. //防止拖动图标即打开了桌面应用
  1788. U.MD.D.click(this, obj);
  1789. }, [_studentDesktopIconInfo3[i]]),
  1790. "onclick": U.UF.C.closure(function (obj) {
  1791. //防止拖动图标即打开了桌面应用
  1792. U.MD.D.click(this, obj);
  1793. }, [_studentDesktopIconInfo3[i]])
  1794. }, _frag); //
  1795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1798. }
  1799. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1800. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1801. _content = $$("div", {
  1802. className: "U_MD_D_KO",
  1803. "onmousedown": U.UF.C.closure(function (obj) {
  1804. //防止拖动图标即打开了桌面应用
  1805. U.MD.D.click(this, obj);
  1806. }, [_studentDesktopIconInfo2[i]]),
  1807. "onclick": U.UF.C.closure(function (obj) {
  1808. //防止拖动图标即打开了桌面应用
  1809. U.MD.D.click(this, obj);
  1810. }, [_studentDesktopIconInfo2[i]])
  1811. }, _frag); //
  1812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1815. }
  1816. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1817. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1818. _content = $$("div", {
  1819. className: "U_MD_D_KO",
  1820. "onmousedown": U.UF.C.closure(function (obj) {
  1821. //防止拖动图标即打开了桌面应用
  1822. U.MD.D.click(this, obj);
  1823. }, [_wanketeacherDesktopIconInfo[i]]),
  1824. "onclick": U.UF.C.closure(function (obj) {
  1825. //防止拖动图标即打开了桌面应用
  1826. U.MD.D.click(this, obj);
  1827. }, [_wanketeacherDesktopIconInfo[i]])
  1828. }, _frag); //
  1829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1832. }
  1833. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1834. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1835. _content = $$("div", {
  1836. className: "U_MD_D_KO",
  1837. "onmousedown": U.UF.C.closure(function (obj) {
  1838. //防止拖动图标即打开了桌面应用
  1839. U.MD.D.click(this, obj);
  1840. }, [_wankeAdminDesktopIconInfo[i]]),
  1841. "onclick": U.UF.C.closure(function (obj) {
  1842. //防止拖动图标即打开了桌面应用
  1843. U.MD.D.click(this, obj);
  1844. }, [_wankeAdminDesktopIconInfo[i]])
  1845. }, _frag); //
  1846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1849. }
  1850. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1851. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1852. _content = $$("div", {
  1853. className: "U_MD_D_KO",
  1854. "onmousedown": U.UF.C.closure(function (obj) {
  1855. //防止拖动图标即打开了桌面应用
  1856. U.MD.D.click(this, obj);
  1857. }, [_jccssylTeacherDeskIconInfo[i]]),
  1858. "onclick": U.UF.C.closure(function (obj) {
  1859. //防止拖动图标即打开了桌面应用
  1860. U.MD.D.click(this, obj);
  1861. }, [_jccssylTeacherDeskIconInfo[i]])
  1862. }, _frag); //
  1863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1866. }
  1867. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1868. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1869. _content = $$("div", {
  1870. className: "U_MD_D_KO",
  1871. "onmousedown": U.UF.C.closure(function (obj) {
  1872. //防止拖动图标即打开了桌面应用
  1873. U.MD.D.click(this, obj);
  1874. }, [_caleTeacherDeskIconInfo[i]]),
  1875. "onclick": U.UF.C.closure(function (obj) {
  1876. //防止拖动图标即打开了桌面应用
  1877. U.MD.D.click(this, obj);
  1878. }, [_caleTeacherDeskIconInfo[i]])
  1879. }, _frag); //
  1880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1883. }
  1884. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1885. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1886. _content = $$("div", {
  1887. className: "U_MD_D_KO",
  1888. "onmousedown": U.UF.C.closure(function (obj) {
  1889. //防止拖动图标即打开了桌面应用
  1890. U.MD.D.click(this, obj);
  1891. }, [_tpcOrganizerDeskIconInfo[i]]),
  1892. "onclick": U.UF.C.closure(function (obj) {
  1893. //防止拖动图标即打开了桌面应用
  1894. U.MD.D.click(this, obj);
  1895. }, [_tpcOrganizerDeskIconInfo[i]])
  1896. }, _frag); //
  1897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1900. }
  1901. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1902. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1903. _content = $$("div", {
  1904. className: "U_MD_D_KO",
  1905. "onmousedown": U.UF.C.closure(function (obj) {
  1906. //防止拖动图标即打开了桌面应用
  1907. U.MD.D.click(this, obj);
  1908. }, [_tpcTeacherDeskIconInfo[i]]),
  1909. "onclick": U.UF.C.closure(function (obj) {
  1910. //防止拖动图标即打开了桌面应用
  1911. U.MD.D.click(this, obj);
  1912. }, [_tpcTeacherDeskIconInfo[i]])
  1913. }, _frag); //
  1914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1917. }
  1918. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1919. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1920. _content = $$("div", {
  1921. className: "U_MD_D_KO",
  1922. "onmousedown": U.UF.C.closure(function (obj) {
  1923. //防止拖动图标即打开了桌面应用
  1924. U.MD.D.click(this, obj);
  1925. }, [_teacherDesktopIconInfo2[i]]),
  1926. "onclick": U.UF.C.closure(function (obj) {
  1927. //防止拖动图标即打开了桌面应用
  1928. U.MD.D.click(this, obj);
  1929. }, [_teacherDesktopIconInfo2[i]])
  1930. }, _frag); //
  1931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1934. }
  1935. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1936. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1937. _content = $$("div", {
  1938. className: "U_MD_D_KO",
  1939. "onmousedown": U.UF.C.closure(function (obj) {
  1940. //防止拖动图标即打开了桌面应用
  1941. U.MD.D.click(this, obj);
  1942. }, [_thuioeTeacherDeskIconInfo[i]]),
  1943. "onclick": U.UF.C.closure(function (obj) {
  1944. //防止拖动图标即打开了桌面应用
  1945. U.MD.D.click(this, obj);
  1946. }, [_thuioeTeacherDeskIconInfo[i]])
  1947. }, _frag); //
  1948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1951. }
  1952. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1953. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1954. _content = $$("div", {
  1955. className: "U_MD_D_KO",
  1956. "onmousedown": U.UF.C.closure(function (obj) {
  1957. //防止拖动图标即打开了桌面应用
  1958. U.MD.D.click(this, obj);
  1959. }, [_lotechTeacherDeskIconInfo[i]]),
  1960. "onclick": U.UF.C.closure(function (obj) {
  1961. //防止拖动图标即打开了桌面应用
  1962. U.MD.D.click(this, obj);
  1963. }, [_lotechTeacherDeskIconInfo[i]])
  1964. }, _frag); //
  1965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1968. }//
  1969. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1970. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1971. _content = $$("div", {
  1972. className: "U_MD_D_KO",
  1973. "onmousedown": U.UF.C.closure(function (obj) {
  1974. //防止拖动图标即打开了桌面应用
  1975. U.MD.D.click(this, obj);
  1976. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1977. "onclick": U.UF.C.closure(function (obj) {
  1978. //防止拖动图标即打开了桌面应用
  1979. U.MD.D.click(this, obj);
  1980. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1981. }, _frag); //
  1982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1985. }
  1986. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1987. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1988. _content = $$("div", {
  1989. className: "U_MD_D_KO",
  1990. "onmousedown": U.UF.C.closure(function (obj) {
  1991. //防止拖动图标即打开了桌面应用
  1992. U.MD.D.click(this, obj);
  1993. }, [_siesTeacherDeskIconInfo[i]]),
  1994. "onclick": U.UF.C.closure(function (obj) {
  1995. //防止拖动图标即打开了桌面应用
  1996. U.MD.D.click(this, obj);
  1997. }, [_siesTeacherDeskIconInfo[i]])
  1998. }, _frag); //
  1999. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2000. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2001. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2002. }
  2003. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2004. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2005. _content = $$("div", {
  2006. className: "U_MD_D_KO",
  2007. "onmousedown": U.UF.C.closure(function (obj) {
  2008. //防止拖动图标即打开了桌面应用
  2009. U.MD.D.click(this, obj);
  2010. }, [_longhuaTeacherDeskIconInfo[i]]),
  2011. "onclick": U.UF.C.closure(function (obj) {
  2012. //防止拖动图标即打开了桌面应用
  2013. U.MD.D.click(this, obj);
  2014. }, [_longhuaTeacherDeskIconInfo[i]])
  2015. }, _frag); //
  2016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2019. }
  2020. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2021. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2022. _content = $$("div", {
  2023. className: "U_MD_D_KO",
  2024. "onmousedown": U.UF.C.closure(function (obj) {
  2025. //防止拖动图标即打开了桌面应用
  2026. U.MD.D.click(this, obj);
  2027. }, [_ytyTeacherDeskIconInfo[i]]),
  2028. "onclick": U.UF.C.closure(function (obj) {
  2029. //防止拖动图标即打开了桌面应用
  2030. U.MD.D.click(this, obj);
  2031. }, [_ytyTeacherDeskIconInfo[i]])
  2032. }, _frag); //
  2033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2036. }
  2037. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2038. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2039. _content = $$("div", {
  2040. className: "U_MD_D_KO",
  2041. "onmousedown": U.UF.C.closure(function (obj) {
  2042. //防止拖动图标即打开了桌面应用
  2043. U.MD.D.click(this, obj);
  2044. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2045. "onclick": U.UF.C.closure(function (obj) {
  2046. //防止拖动图标即打开了桌面应用
  2047. U.MD.D.click(this, obj);
  2048. }, [_yunhaiTeacherDeskIconInfo[i]])
  2049. }, _frag); //
  2050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2053. } //_hkStudentDeskIconInfo
  2054. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2055. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2056. _content = $$("div", {
  2057. className: "U_MD_D_KO",
  2058. "onmousedown": U.UF.C.closure(function (obj) {
  2059. //防止拖动图标即打开了桌面应用
  2060. U.MD.D.click(this, obj);
  2061. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2062. "onclick": U.UF.C.closure(function (obj) {
  2063. //防止拖动图标即打开了桌面应用
  2064. U.MD.D.click(this, obj);
  2065. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2066. }, _frag); //
  2067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2070. }
  2071. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2072. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2073. _content = $$("div", {
  2074. className: "U_MD_D_KO",
  2075. "onmousedown": U.UF.C.closure(function (obj) {
  2076. //防止拖动图标即打开了桌面应用
  2077. U.MD.D.click(this, obj);
  2078. }, [_hkTeacherDeskIconInfo[i]]),
  2079. "onclick": U.UF.C.closure(function (obj) {
  2080. //防止拖动图标即打开了桌面应用
  2081. U.MD.D.click(this, obj);
  2082. }, [_hkTeacherDeskIconInfo[i]])
  2083. }, _frag); //
  2084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2087. }
  2088. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2089. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2090. _content = $$("div", {
  2091. className: "U_MD_D_KO",
  2092. "onmousedown": U.UF.C.closure(function (obj) {
  2093. //防止拖动图标即打开了桌面应用
  2094. U.MD.D.click(this, obj);
  2095. }, [_hkaceTeacherDeskIconInfo[i]]),
  2096. "onclick": U.UF.C.closure(function (obj) {
  2097. //防止拖动图标即打开了桌面应用
  2098. U.MD.D.click(this, obj);
  2099. }, [_hkaceTeacherDeskIconInfo[i]])
  2100. }, _frag); //
  2101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2104. }
  2105. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2106. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2107. _content = $$("div", {
  2108. className: "U_MD_D_KO",
  2109. "onmousedown": U.UF.C.closure(function (obj) {
  2110. //防止拖动图标即打开了桌面应用
  2111. U.MD.D.click(this, obj);
  2112. }, [_gdjgAdminDeskIconInfo[i]]),
  2113. "onclick": U.UF.C.closure(function (obj) {
  2114. //防止拖动图标即打开了桌面应用
  2115. U.MD.D.click(this, obj);
  2116. }, [_gdjgAdminDeskIconInfo[i]])
  2117. }, _frag); //
  2118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2121. }
  2122. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2123. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2124. _content = $$("div", {
  2125. className: "U_MD_D_KO",
  2126. "onmousedown": U.UF.C.closure(function (obj) {
  2127. //防止拖动图标即打开了桌面应用
  2128. U.MD.D.click(this, obj);
  2129. }, [_gdjgTeacherDeskIconInfo[i]]),
  2130. "onclick": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_gdjgTeacherDeskIconInfo[i]])
  2134. }, _frag); //
  2135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2138. }
  2139. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2140. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2141. _content = $$("div", {
  2142. className: "U_MD_D_KO",
  2143. "onmousedown": U.UF.C.closure(function (obj) {
  2144. //防止拖动图标即打开了桌面应用
  2145. U.MD.D.click(this, obj);
  2146. }, [_szherTeacherDeskIconInfo[i]]),
  2147. "onclick": U.UF.C.closure(function (obj) {
  2148. //防止拖动图标即打开了桌面应用
  2149. U.MD.D.click(this, obj);
  2150. }, [_szherTeacherDeskIconInfo[i]])
  2151. }, _frag); //
  2152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2155. }
  2156. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2157. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2158. _content = $$("div", {
  2159. className: "U_MD_D_KO",
  2160. "onmousedown": U.UF.C.closure(function (obj) {
  2161. //防止拖动图标即打开了桌面应用
  2162. U.MD.D.click(this, obj);
  2163. }, [_heyuannAdminDeskIconInfo[i]]),
  2164. "onclick": U.UF.C.closure(function (obj) {
  2165. //防止拖动图标即打开了桌面应用
  2166. U.MD.D.click(this, obj);
  2167. }, [_heyuannAdminDeskIconInfo[i]])
  2168. }, _frag); //
  2169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2172. }
  2173. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2174. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2175. _content = $$("div", {
  2176. className: "U_MD_D_KO",
  2177. "onmousedown": U.UF.C.closure(function (obj) {
  2178. //防止拖动图标即打开了桌面应用
  2179. U.MD.D.click(this, obj);
  2180. }, [_heyuanTeacherDeskIconInfo[i]]),
  2181. "onclick": U.UF.C.closure(function (obj) {
  2182. //防止拖动图标即打开了桌面应用
  2183. U.MD.D.click(this, obj);
  2184. }, [_heyuanTeacherDeskIconInfo[i]])
  2185. }, _frag); //
  2186. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2187. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2188. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2189. } //
  2190. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2191. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2192. _content = $$("div", {
  2193. className: "U_MD_D_KO",
  2194. "onmousedown": U.UF.C.closure(function (obj) {
  2195. //防止拖动图标即打开了桌面应用
  2196. U.MD.D.click(this, obj);
  2197. }, [_dseiAdminDeskIconInfo[i]]),
  2198. "onclick": U.UF.C.closure(function (obj) {
  2199. //防止拖动图标即打开了桌面应用
  2200. U.MD.D.click(this, obj);
  2201. }, [_dseiAdminDeskIconInfo[i]])
  2202. }, _frag); //
  2203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2206. }
  2207. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2208. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2209. _content = $$("div", {
  2210. className: "U_MD_D_KO",
  2211. "onmousedown": U.UF.C.closure(function (obj) {
  2212. //防止拖动图标即打开了桌面应用
  2213. U.MD.D.click(this, obj);
  2214. }, [_dseiTeacherDeskIconInfo[i]]),
  2215. "onclick": U.UF.C.closure(function (obj) {
  2216. //防止拖动图标即打开了桌面应用
  2217. U.MD.D.click(this, obj);
  2218. }, [_dseiTeacherDeskIconInfo[i]])
  2219. }, _frag); //
  2220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2223. } //
  2224. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2225. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2226. _content = $$("div", {
  2227. className: "U_MD_D_KO",
  2228. "onmousedown": U.UF.C.closure(function (obj) {
  2229. //防止拖动图标即打开了桌面应用
  2230. U.MD.D.click(this, obj);
  2231. }, [_chjyjAdminDeskIconInfo[i]]),
  2232. "onclick": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_chjyjAdminDeskIconInfo[i]])
  2236. }, _frag); //
  2237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2240. }//
  2241. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2242. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2243. _content = $$("div", {
  2244. className: "U_MD_D_KO",
  2245. "onmousedown": U.UF.C.closure(function (obj) {
  2246. //防止拖动图标即打开了桌面应用
  2247. U.MD.D.click(this, obj);
  2248. }, [_chjyjTeacherDeskIconInfo[i]]),
  2249. "onclick": U.UF.C.closure(function (obj) {
  2250. //防止拖动图标即打开了桌面应用
  2251. U.MD.D.click(this, obj);
  2252. }, [_chjyjTeacherDeskIconInfo[i]])
  2253. }, _frag); //
  2254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2257. }
  2258. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2259. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2260. _content = $$("div", {
  2261. className: "U_MD_D_KO",
  2262. "onmousedown": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_szjkyAdminDeskIconInfo[i]]),
  2266. "onclick": U.UF.C.closure(function (obj) {
  2267. //防止拖动图标即打开了桌面应用
  2268. U.MD.D.click(this, obj);
  2269. }, [_szjkyAdminDeskIconInfo[i]])
  2270. }, _frag); //
  2271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2274. }//
  2275. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2276. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2277. _content = $$("div", {
  2278. className: "U_MD_D_KO",
  2279. "onmousedown": U.UF.C.closure(function (obj) {
  2280. //防止拖动图标即打开了桌面应用
  2281. U.MD.D.click(this, obj);
  2282. }, [_szjkyTeacherDeskIconInfo[i]]),
  2283. "onclick": U.UF.C.closure(function (obj) {
  2284. //防止拖动图标即打开了桌面应用
  2285. U.MD.D.click(this, obj);
  2286. }, [_szjkyTeacherDeskIconInfo[i]])
  2287. }, _frag); //
  2288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2291. }
  2292. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2293. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2294. _content = $$("div", {
  2295. className: "U_MD_D_KO",
  2296. "onmousedown": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_futianAdminDeskIconInfo[i]]),
  2300. "onclick": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_futianAdminDeskIconInfo[i]])
  2304. }, _frag); //
  2305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2308. }
  2309. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2310. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2311. _content = $$("div", {
  2312. className: "U_MD_D_KO",
  2313. "onmousedown": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_futianTeacherDeskIconInfo[i]]),
  2317. "onclick": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_futianTeacherDeskIconInfo[i]])
  2321. }, _frag); //
  2322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2325. }
  2326. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2327. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2328. _content = $$("div", {
  2329. className: "U_MD_D_KO",
  2330. "onmousedown": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_MingdeTeacherDeskIcon[i]]),
  2334. "onclick": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_MingdeTeacherDeskIcon[i]])
  2338. }, _frag); //
  2339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2342. }
  2343. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2344. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2345. _content = $$("div", {
  2346. className: "U_MD_D_KO",
  2347. "onmousedown": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_lhsAdminDesktopIconInfo[i]]),
  2351. "onclick": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_lhsAdminDesktopIconInfo[i]])
  2355. }, _frag); //
  2356. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2357. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2358. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2359. }
  2360. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2361. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2362. _content = $$("div", {
  2363. className: "U_MD_D_KO",
  2364. "onmousedown": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_lhsteacherDesktopIconInfo[i]]),
  2368. "onclick": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_lhsteacherDesktopIconInfo[i]])
  2372. }, _frag); //
  2373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2376. }
  2377. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2378. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2379. _content = $$("div", {
  2380. className: "U_MD_D_KO",
  2381. "onmousedown": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2385. "onclick": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_zhoujiateacherDesktopIconInfo[i]])
  2389. }, _frag); //
  2390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2393. }
  2394. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2395. for (i = 0; i < _hanDeskIcon.length; i++) {
  2396. _content = $$("div", {
  2397. className: "U_MD_D_KO",
  2398. "onmousedown": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_hanDeskIcon[i]]),
  2402. "onclick": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_hanDeskIcon[i]])
  2406. }, _frag); //
  2407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2410. }
  2411. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2412. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2413. _content = $$("div", {
  2414. className: "U_MD_D_KO",
  2415. "onmousedown": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_orgStemDeskIcon[i]]),
  2419. "onclick": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_orgStemDeskIcon[i]])
  2423. }, _frag); //
  2424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2427. }
  2428. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2429. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2430. _content = $$("div", {
  2431. className: "U_MD_D_KO",
  2432. "onmousedown": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_szulsDeskIcon[i]]),
  2436. "onclick": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_szulsDeskIcon[i]])
  2440. }, _frag); //
  2441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2444. }
  2445. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2446. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2447. _content = $$("div", {
  2448. className: "U_MD_D_KO",
  2449. "onmousedown": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_orgDesktopIconInfo[i]]),
  2453. "onclick": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_orgDesktopIconInfo[i]])
  2457. }, _frag); //
  2458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2461. }
  2462. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2463. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2464. _content = $$("div", {
  2465. className: "U_MD_D_KO",
  2466. "onmousedown": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_schoolDesktopIconInfo[i]]),
  2470. "onclick": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_schoolDesktopIconInfo[i]])
  2474. }, _frag); //
  2475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2478. }
  2479. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2480. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_GMteacherDesktopIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_GMteacherDesktopIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2497. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2498. _content = $$("div", {
  2499. className: "U_MD_D_KO",
  2500. "onmousedown": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_SONGteacherDesktopIconInfo[i]]),
  2504. "onclick": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_SONGteacherDesktopIconInfo[i]])
  2508. }, _frag); //
  2509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2512. }
  2513. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2514. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2515. _content = $$("div", {
  2516. className: "U_MD_D_KO",
  2517. "onmousedown": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_GMstudentDesktopIconInfo[i]]),
  2521. "onclick": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_GMstudentDesktopIconInfo[i]])
  2525. }, _frag); //
  2526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2529. }
  2530. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2531. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2532. _content = $$("div", {
  2533. className: "U_MD_D_KO",
  2534. "onmousedown": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_tcTeacherDeskIconInfo[i]]),
  2538. "onclick": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_tcTeacherDeskIconInfo[i]])
  2542. }, _frag); //
  2543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2546. }
  2547. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2548. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2549. _content = $$("div", {
  2550. className: "U_MD_D_KO",
  2551. "onmousedown": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_tcOrganizerDeskIconInfo[i]]),
  2555. "onclick": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_tcOrganizerDeskIconInfo[i]])
  2559. }, _frag); //
  2560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2563. }
  2564. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2565. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2566. _content = $$("div", {
  2567. className: "U_MD_D_KO",
  2568. "onmousedown": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_szscTeacherDeskIconInfo[i]]),
  2572. "onclick": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_szscTeacherDeskIconInfo[i]])
  2576. }, _frag); //
  2577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2580. }
  2581. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2582. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2583. _content = $$("div", {
  2584. className: "U_MD_D_KO",
  2585. "onmousedown": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_szscOrganizerDeskIconInfo[i]]),
  2589. "onclick": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_szscOrganizerDeskIconInfo[i]])
  2593. }, _frag); //
  2594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2597. }
  2598. } else {
  2599. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2600. _content = $$("div", {
  2601. className: "U_MD_D_KO",
  2602. "onmousedown": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_teacherDesktopIconInfo[i]]),
  2606. "onclick": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_teacherDesktopIconInfo[i]])
  2610. }, _frag); //
  2611. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2612. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2613. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2614. }
  2615. }
  2616. } else {
  2617. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. style: { 'width': '124px', 'height': '145px' },
  2621. "onmousedown": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_easyDesktopIconInfo[i]]),
  2625. "onclick": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_easyDesktopIconInfo[i]])
  2629. }, _frag); //
  2630. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2633. }
  2634. }
  2635. if (type == 1) {
  2636. //加载好后给图标定位
  2637. U.MD.D.iconPostion($(_frag).Child());
  2638. } else {
  2639. //加载好后给图标定位
  2640. U.MD.D.iconPostion2($(_frag).Child());
  2641. }
  2642. //把图标加载到页面
  2643. el.appendChild(_frag);
  2644. }
  2645. /**
  2646. * 显示任务栏
  2647. *
  2648. * @param {element} 桌面元素
  2649. */
  2650. U.MD.D.I.displayTaskbar = function (el) {
  2651. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2652. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2653. //任务栏位置变化
  2654. U.selectEl(el).css({ "bottom": "0px" });
  2655. //桌面位置变话
  2656. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2657. }
  2658. }
  2659. //#region 桌面图标拖动逻辑
  2660. /**
  2661. * 桌面排列图标
  2662. *
  2663. * @param {element} 桌面元素
  2664. * @param {object} 上下相距的距离
  2665. * @param {object} 左右相距的距离
  2666. * @return {object} 命名空间
  2667. */
  2668. U.MD.D.iconPostion = function (childs, top, left) {
  2669. var i; //用于循环处理
  2670. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2671. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2672. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2673. for (i = 0; i < childs.length; i++) {
  2674. //如果竖排top超过了范围处理
  2675. if (top + 95 > US.height - 10) {
  2676. //left超过了页面范围处理,则向上重叠打印处理
  2677. if ((left + 180) > US.width) {
  2678. top -= 110;
  2679. left -= 90;
  2680. }
  2681. //没有超过范围,那么left+90添加到下一个竖排打印
  2682. else {
  2683. left += 90;
  2684. top = 15;
  2685. };
  2686. }
  2687. //给图标的位置赋值
  2688. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2689. if (i < childs.length - 1) {
  2690. //页面图标每次向下加95
  2691. top += 95;
  2692. }
  2693. }
  2694. //返回最后调用的图标的位置
  2695. return [top, left];
  2696. }
  2697. /**
  2698. * 桌面排列图标
  2699. *
  2700. * @param {element} 桌面元素
  2701. * @param {object} 上下相距的距离
  2702. * @param {object} 左右相距的距离
  2703. * @return {object} 命名空间
  2704. */
  2705. U.MD.D.iconPostion2 = function (childs, top, left) {
  2706. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2707. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2708. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2709. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2710. for (i = 0; i < childs.length; i++) {
  2711. //如果竖排top超过了范围处理
  2712. if (left + 150 > US.width - 10) {
  2713. //left超过了页面范围处理,则向上重叠打印处理
  2714. if ((top + 180) > US.Height) {
  2715. top -= 150;
  2716. left -= 150;
  2717. }
  2718. //没有超过范围,那么left+90添加到下一个竖排打印
  2719. else {
  2720. top += 150;
  2721. left = ol;
  2722. };
  2723. }
  2724. //给图标的位置赋值
  2725. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2726. if (i < childs.length - 1) {
  2727. //页面图标每次向下加95
  2728. left += 150;
  2729. }
  2730. }
  2731. //返回最后调用的图标的位置
  2732. return [top, left];
  2733. }
  2734. /**
  2735. * 桌面点击事件逻辑
  2736. *
  2737. * @param {element} 桌面元素
  2738. * @param {object} 上下相距的距离
  2739. * @param {object} 左右相距的距离
  2740. * @return {object} 命名空间
  2741. */
  2742. U.MD.D.click = function (el, obj) {
  2743. var _buttonnumber = event.button; //点击的按钮的事件值
  2744. var _userinfo = US.userInfo;
  2745. U.UF.EV.stopBubble(); //阻止向上冒泡
  2746. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2747. if (_buttonnumber < 2) {
  2748. //如果是click事件的处理
  2749. if (event.type == "click") {
  2750. //如果元素在mousemove事件中没有移动则出发click事件
  2751. if (!U.MD.D.I.IsDrag) {
  2752. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2753. U.alert("请先登录您的账号!");
  2754. setTimeout(() => {
  2755. U.MD.U.L.login();
  2756. }, 2000);
  2757. } else {
  2758. //打开应用处理
  2759. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2760. }
  2761. }
  2762. }
  2763. //如果是mouse事件的处理
  2764. else {
  2765. if (US.Config.type == '1') {
  2766. //拖动处理,添加拖动和拖动结束事件
  2767. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2768. }
  2769. }
  2770. U.MD.D.I.IsDrag = false;
  2771. }
  2772. }
  2773. /**
  2774. * 拖动的处理
  2775. *
  2776. */
  2777. U.MD.D.iconMove = function () {
  2778. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2779. U.MD.D.I.IsDrag = true;
  2780. }
  2781. /**
  2782. * 拖动结束后,这里是定位处理,以网状的形式定位
  2783. *
  2784. * @param {element} 拖动的元素
  2785. * @return {object} 命名空间
  2786. */
  2787. U.MD.D.iconUp = function (el) {
  2788. var _top = 15,
  2789. _left = 20,
  2790. _margin,
  2791. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2792. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2793. if (_positioninfo["OT"] > 15) {
  2794. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2795. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2796. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2797. }
  2798. if (_positioninfo["OL"] > 20) {
  2799. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2800. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2801. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2802. }
  2803. //while循环判断么一个重叠的元素
  2804. do {
  2805. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2806. _top = _positioninfo[0] + 95; //得到定位后的top
  2807. _left = _positioninfo[1]; //得到定位后的left
  2808. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2809. }
  2810. /**
  2811. * 判断拖动后图标是否重叠
  2812. *
  2813. * @param {element} 拖动的元素
  2814. * @param {element} 桌面所有的元素
  2815. * @param {array} 拖动元素的位置
  2816. ----------[0] 上 top
  2817. ----------[1] 左 left
  2818. * @return {object} 命名空间
  2819. */
  2820. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2821. //循环所有的图标
  2822. for (var i = 0; i < childs.length; i++) {
  2823. //判断有没有和该图标诶子重叠的元素
  2824. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2825. return childs[i]; //如果有返回
  2826. }
  2827. }
  2828. }
  2829. //#endregion
  2830. //#endregion
  2831. //#region 桌面应用
  2832. /**
  2833. * 打开应用
  2834. *
  2835. * @param {string} 类型
  2836. -----------------Disk 网盘系统
  2837. -----------------PDisk 学习系统网盘
  2838. -----------------Poto 图片
  2839. -----------------Video 视频
  2840. -----------------Music 音乐
  2841. -----------------Word word
  2842. -----------------Excel excel
  2843. -----------------Txt 记事本
  2844. -----------------PB 学习系统
  2845. -----------------Blog 朋友圈系统
  2846. -----------------FTP ftp系统
  2847. -----------------Group 好友群
  2848. -----------------SY 首页系统
  2849. -----------------Set 个人设置
  2850. -----------------XSet 系统设置
  2851. -----------------App 我们所有的app
  2852. -----------------BC c.1473.cn 平台
  2853. -----------------CWeb d.1473.cn 变成平台
  2854. -----------------其他的外联系统 我们统一用iframe打开
  2855. * @param {array} 类型
  2856. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2857. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2858. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2859. 如果第一个参数为其他,则无第二个参数
  2860. * @returns {array}
  2861. */
  2862. window.addEventListener('message', function (e) { // 监听 message 事件
  2863. // alert(e.data.type);
  2864. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2865. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2866. //3是展示全部阶段 2学生 1老师 4专家
  2867. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2868. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2869. //3是展示全部阶段 2学生 1老师 4专家
  2870. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2871. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2872. //3是展示全部阶段 2学生 1老师 4专家
  2873. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2874. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2875. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2876. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2877. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2878. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2879. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2880. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2881. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2882. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2883. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2884. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2885. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2886. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2887. //3是展示全部阶段 2学生 1老师 4专家
  2888. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2889. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2890. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2891. U.MD.D.I.selectUser();
  2892. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2893. var _formel = document.getElementById("study");
  2894. U.UF.F.windowZooming(_formel);
  2895. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2896. var _formel = document.getElementById("studyDetail");
  2897. U.UF.F.windowZooming(_formel);
  2898. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2899. var _formel = document.getElementById("studyDetail");
  2900. U.UF.F.windowZooming(_formel);
  2901. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2902. var _formel = document.getElementById("studentStudy");
  2903. U.UF.F.windowZooming(_formel);
  2904. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2905. // var _formel = document.getElementById("study");
  2906. //如果最大化了,那么就把他缩小
  2907. // if (_formel.ismaximize) {
  2908. // return;
  2909. // }
  2910. // U.UF.F.windowZooming(_formel);
  2911. // U.UF.F.topWindow(_formel);
  2912. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2913. // var _formel = document.getElementById("studyDetail");
  2914. //如果最大化了,那么就把他缩小
  2915. // if (_formel.ismaximize) {
  2916. // return;
  2917. // }
  2918. // U.UF.F.windowZooming(_formel);
  2919. // U.UF.F.topWindow(_formel);
  2920. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2921. // var _formel = document.getElementById("studentStudy");
  2922. // if (_formel.ismaximize) {
  2923. // return;
  2924. // }
  2925. // U.UF.F.windowZooming(_formel);
  2926. // U.UF.F.topWindow(_formel);
  2927. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2928. var _formel = document.getElementById("study");
  2929. // if (_formel.ismaximize) {
  2930. // return;
  2931. // }
  2932. // U.UF.F.windowZooming(_formel);
  2933. U.UF.F.topWindow(_formel);
  2934. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2935. var _formel = document.getElementById("studentIndex");
  2936. U.UF.F.windowZooming(_formel);
  2937. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2938. var _formel = document.getElementById("studyDetailS");
  2939. U.UF.F.windowZooming(_formel);
  2940. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2941. var _formel = document.getElementById("studioIndex");
  2942. U.UF.F.windowZooming(_formel);
  2943. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2944. var _formel = document.getElementById("studyDetailStudio");
  2945. U.UF.F.windowZooming(_formel);
  2946. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2947. var _formel = document.getElementById("studyDetailStudio");
  2948. U.UF.F.windowZooming(_formel);
  2949. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2950. var _formel = document.getElementById("studyDetailNT");
  2951. U.UF.F.windowZooming(_formel);
  2952. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2953. var _formel = document.getElementById("studyDetailS");
  2954. U.UF.F.windowZooming(_formel);
  2955. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2956. var _formel = document.getElementById("studyDetailS");
  2957. U.UF.F.topWindow(_formel);
  2958. } else if (e.data.tools && e.data.tools == "1") {
  2959. // U.MD.D.I.openApplication("whiteboard")
  2960. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2961. } else if (e.data.tools && e.data.tools == "2") {
  2962. U.MD.D.I.openApplication("note")
  2963. } else if (e.data.tools && e.data.tools == "3") {
  2964. // U.MD.D.I.openApplication("mind")
  2965. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2966. } else if (e.data.tools && e.data.tools == "4") {
  2967. U.MD.D.I.openApplication("investigation")
  2968. } else if (e.data.tools && e.data.tools == "6") {
  2969. // U.MD.D.I.openApplication("doc")
  2970. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2971. } else if (e.data.tools && e.data.tools == "7") {
  2972. // U.MD.D.I.openApplication("mindNetwork")
  2973. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2974. } else if (e.data.tools && e.data.tools == "8") {
  2975. U.MD.D.I.openApplication("library")
  2976. } else if (e.data.tools && e.data.tools == "17") {
  2977. U.MD.D.I.openApplication("stuLibrary")
  2978. } else if (e.data.tools && e.data.tools == "18") {
  2979. U.MD.D.I.openApplication("train")
  2980. } else if (e.data.tools && e.data.tools == "21") {
  2981. U.MD.D.I.openApplication("program")
  2982. } else if (e.data.tools && e.data.tools == "22") {
  2983. U.MD.D.I.openApplication("AIprogram2")
  2984. } else if (e.data.tools && e.data.tools == "23") {
  2985. U.MD.D.I.openApplication("Pythonprogram")
  2986. } else if (e.data.tools && e.data.tools == "24") {
  2987. U.MD.D.I.openApplication("AIprogram")
  2988. } else if (e.data.tools && e.data.tools == "25") {
  2989. U.MD.D.I.openApplication("sys")
  2990. } else if (e.data.tools && e.data.tools == "26") {
  2991. // U.MD.D.I.openApplication("courseDesign")
  2992. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2993. } else if (e.data.tools && e.data.tools == "31") {
  2994. U.MD.D.I.openApplication("netWorkPanel")
  2995. } else if (e.data.tools && e.data.tools == "32") {
  2996. U.MD.D.I.openApplication("codeEdit")
  2997. } else if (e.data.tools && e.data.tools == "57") {
  2998. U.MD.D.I.openApplication("CocoPi")
  2999. } else if (e.data.tools && e.data.tools == "63") {
  3000. U.MD.D.I.openApplication("Wood")
  3001. } else if (e.data.tools && e.data.tools == "58") {
  3002. U.MD.D.I.openApplication("car")
  3003. } else if (e.data.tools && e.data.tools == "59") {
  3004. U.MD.D.I.openApplication("lineSearch")
  3005. } else if (e.data.tools && e.data.tools == "60") {
  3006. U.MD.D.I.openApplication("deepLearning")
  3007. } else if (e.data.tools && e.data.tools == "61") {
  3008. U.MD.D.I.openApplication("allHistory")
  3009. } else if (e.data.tools && e.data.tools == "28") {
  3010. U.MD.D.I.openApplication("translation")
  3011. } else if (e.data.tools && e.data.tools == "37") {
  3012. U.MD.D.I.openApplication("mohe")
  3013. } else if (e.data.tools && e.data.tools == "38") {
  3014. U.MD.D.I.openApplication("24game")
  3015. } else if (e.data.tools && e.data.tools == "39") {
  3016. U.MD.D.I.openApplication("GeoGebra")
  3017. } else if (e.data.tools && e.data.tools == "43") {
  3018. U.MD.D.I.openApplication("studentEvaluate")
  3019. } else if (e.data.tools && e.data.tools == "44") {
  3020. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3021. } else if (e.data.tools && e.data.tools == "46") {
  3022. U.MD.D.I.openApplication("project")
  3023. } else if (e.data.tools && e.data.tools == "71") {
  3024. U.MD.D.I.openApplication("aigptCourse")
  3025. } else if (e.data.tools && e.data.tools == "1s") {
  3026. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3027. } else if (e.data.tools && e.data.tools == "3s") {
  3028. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3029. } else if (e.data.tools && e.data.tools == "6s") {
  3030. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3031. } else if (e.data.tools && e.data.tools == "1studio") {
  3032. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3033. } else if (e.data.tools && e.data.tools == "3studio") {
  3034. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3035. } else if (e.data.tools && e.data.tools == "6studio") {
  3036. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3037. } else if (e.data.tools && e.data.tools == "3y") {
  3038. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3039. } else if (e.data.tools && e.data.tools == "1y") {
  3040. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3041. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3042. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3043. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3044. U.MD.D.I.openApplication("AIAnalyse")
  3045. } else if (e.data.tools && e.data.tools == "1teacher") {
  3046. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3047. } else if (e.data.tools && e.data.tools == "3teacher") {
  3048. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3049. } else if (e.data.tools && e.data.tools == "7teacher") {
  3050. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3051. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3052. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3053. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3054. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3055. } else if (e.data.tools && e.data.tools == "1E") {
  3056. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3057. } else if (e.data.tools && e.data.tools == "3E") {
  3058. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3059. } else if (e.data.tools && e.data.tools == "57y") {
  3060. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3061. } else if (e.data.tools && e.data.tools == "57u") {
  3062. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3063. } else if (e.data.tools && e.data.tools == "57teacher") {
  3064. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3065. } else if (e.data.tools && e.data.tools == "64") {
  3066. U.MD.D.I.openApplication("AIChat")
  3067. } else if (e.data.tools && e.data.tools == "66") {
  3068. U.MD.D.I.openApplication("formulaEdi")
  3069. } else if (e.data.tools && e.data.tools == "67") {
  3070. U.MD.D.I.openApplication("molStr")
  3071. } else if (e.data.tools && e.data.tools == "68") {
  3072. U.MD.D.I.openApplication("timeAxis")
  3073. } else if (e.data.tools && e.data.tools == "openCourse") {
  3074. let _data = {
  3075. typea: e.data.typea || '',
  3076. typeb: e.data.typeb || '',
  3077. typed: e.data.typed || '',
  3078. }
  3079. U.MD.D.I.openInApplication("index", _data)
  3080. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3081. let _data = {
  3082. classid: e.data.classid || '',
  3083. }
  3084. U.MD.D.I.openInApplication("dataClass", _data)
  3085. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3086. let _data = {
  3087. cid: e.data.cid || '',
  3088. gid: e.data.gid || '',
  3089. }
  3090. U.MD.D.I.openInApplication("opencCscl", _data)
  3091. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3092. U.MD.D.I.openApplication("dataBoardTest")
  3093. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3094. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3095. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3096. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3097. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3098. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3099. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3100. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3101. }else if (e.data.tools && e.data.tools == "loginSz") {
  3102. U.MD.D.I.openInApplication("loginSz")
  3103. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3104. if($('#classroom_observation_board')[0]){
  3105. U.UF.F.closeWindow($('#classroom_observation_board'))
  3106. }
  3107. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3108. }
  3109. });
  3110. U.MD.D.I.selectUser = function () {
  3111. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3112. if (res.value[0].length > 0) {
  3113. US.userInfo = res.value[0][0];
  3114. $(".userName")[0].innerHTML = US.userInfo.username;
  3115. }
  3116. }, [], { "type": "GET", "withCredentials": true });
  3117. }
  3118. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3119. var _userinfo = US.userInfo, //登录用户信息
  3120. _userid = US.userInfo.userid, //登录用户id
  3121. _oid = _userinfo.organizeid,
  3122. _type = US.userInfo.type,
  3123. _org = US.userInfo.org,
  3124. _role = US.userInfo.role,
  3125. _classId = US.userInfo.classid;
  3126. if (_type == 4) {
  3127. tType = 4
  3128. }
  3129. switch (str) {
  3130. case "studyDetailNT": //无终端模式
  3131. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3132. setTimeout(() => {
  3133. U.MD.U.L.login();
  3134. }, 2000);
  3135. } else {
  3136. _formdiv = new U.UF.UI.form(
  3137. "课程详情",
  3138. $$("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 }), {
  3139. "id": "studyDetailNT",
  3140. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3141. "onresize": function () { }
  3142. }, {
  3143. closecallback: function () { }
  3144. }, { "style": { "height": "36px" } }).form; //创建窗体
  3145. _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); } }
  3146. break;
  3147. }
  3148. case "studyDetail":
  3149. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3150. setTimeout(() => {
  3151. U.MD.U.L.login();
  3152. }, 2000);
  3153. } else {
  3154. _formdiv = new U.UF.UI.form(
  3155. "课程详情",
  3156. $$("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 }), {
  3157. "id": "studyDetail",
  3158. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3159. "onresize": function () { }
  3160. }, {
  3161. closecallback: function () { }
  3162. }, { "style": { "height": "36px" } }).form; //创建窗体
  3163. _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); } }
  3164. break;
  3165. }
  3166. case "studyDetailTrain":
  3167. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3168. setTimeout(() => {
  3169. U.MD.U.L.login();
  3170. }, 2000);
  3171. } else {
  3172. _formdiv = new U.UF.UI.form(
  3173. "培训详情",
  3174. $$("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 }), {
  3175. "id": "studyDetailTrain",
  3176. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3177. "onresize": function () { }
  3178. }, {
  3179. closecallback: function () { }
  3180. }, { "style": { "height": "36px" } }).form; //创建窗体
  3181. _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); } }
  3182. break;
  3183. }
  3184. case "studyDetailS":
  3185. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3186. setTimeout(() => {
  3187. U.MD.U.L.login();
  3188. }, 2000);
  3189. } else {
  3190. _formdiv = new U.UF.UI.form(
  3191. "项目详情",
  3192. $$("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 }), {
  3193. "id": "studyDetailS",
  3194. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3195. "onresize": function () { }
  3196. }, {
  3197. closecallback: function () { }
  3198. }, { "style": { "height": "36px" } }).form; //创建窗体
  3199. _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); } }
  3200. break;
  3201. }
  3202. case "studyDetailStudio":
  3203. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3204. setTimeout(() => {
  3205. U.MD.U.L.login();
  3206. }, 2000);
  3207. } else {
  3208. _formdiv = new U.UF.UI.form(
  3209. "工作详情",
  3210. $$("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 }), {
  3211. "id": "studyDetailStudio",
  3212. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3213. "onresize": function () { }
  3214. }, {
  3215. closecallback: function () { }
  3216. }, { "style": { "height": "36px" } }).form; //创建窗体
  3217. _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); } }
  3218. break;
  3219. }
  3220. case "studyDetailS5":
  3221. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3222. setTimeout(() => {
  3223. U.MD.U.L.login();
  3224. }, 2000);
  3225. } else {
  3226. _formdiv = new U.UF.UI.form(
  3227. "项目详情",
  3228. $$("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 }), {
  3229. "id": "studyDetailS",
  3230. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3231. "onresize": function () { }
  3232. }, {
  3233. closecallback: function () { }
  3234. }, { "style": { "height": "36px" } }).form; //创建窗体
  3235. _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); } }
  3236. break;
  3237. }
  3238. case "studyDetailGM":
  3239. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3240. setTimeout(() => {
  3241. U.MD.U.L.login();
  3242. }, 2000);
  3243. } else {
  3244. _formdiv = new U.UF.UI.form(
  3245. "课程详情",
  3246. $$("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 }), {
  3247. "id": "studyDetail",
  3248. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3249. "onresize": function () { }
  3250. }, {
  3251. closecallback: function () { }
  3252. }, { "style": { "height": "36px" } }).form; //创建窗体
  3253. _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); } }
  3254. break;
  3255. }
  3256. case "hanUrl":
  3257. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3258. setTimeout(() => {
  3259. U.MD.U.L.login();
  3260. }, 2000);
  3261. } else {
  3262. _formdiv = new U.UF.UI.form(
  3263. "汉字宫",
  3264. $$("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" }), {
  3265. "id": "hanUrl",
  3266. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3267. "onresize": function () { }
  3268. }, {
  3269. closecallback: function () { }
  3270. }, { "style": { "height": "36px" } }).form; //创建窗体
  3271. _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); } }
  3272. break;
  3273. }
  3274. case "index":
  3275. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3276. setTimeout(() => {
  3277. U.MD.U.L.login();
  3278. }, 2000);
  3279. } else {
  3280. _formdiv = new U.UF.UI.form(
  3281. "课程中心",
  3282. $$("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 }), {
  3283. "id": "study",
  3284. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3285. "onresize": function () { }
  3286. }, {
  3287. closecallback: function () { }
  3288. }, { "style": { "height": "36px" } }).form; //创建窗体
  3289. _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); } }
  3290. break;
  3291. }
  3292. case "dataClass":
  3293. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3294. setTimeout(() => {
  3295. U.MD.U.L.login();
  3296. }, 2000);
  3297. } else {
  3298. _formdiv = new U.UF.UI.form(
  3299. "数据报告",
  3300. $$("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 }), {
  3301. "id": "dataClass",
  3302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3303. "onresize": function () { }
  3304. }, {
  3305. closecallback: function () { }
  3306. }, { "style": { "height": "36px" } }).form; //创建窗体
  3307. _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); } }
  3308. break;
  3309. }
  3310. case "opencCscl":
  3311. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3312. setTimeout(() => {
  3313. U.MD.U.L.login();
  3314. }, 2000);
  3315. } else {
  3316. _formdiv = new U.UF.UI.form(
  3317. "协同建构",
  3318. $$("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 }), {
  3319. "id": "futureClass",
  3320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3321. "onresize": function () { }
  3322. }, {
  3323. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3324. }, { "style": { "height": "36px" } }).form; //创建窗体
  3325. _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); } }
  3326. break;
  3327. }
  3328. case "openCourseUpdate":
  3329. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3330. setTimeout(() => {
  3331. U.MD.U.L.login();
  3332. }, 2000);
  3333. } else {
  3334. _formdiv = new U.UF.UI.form(
  3335. "课程管理",
  3336. $$("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 }), {
  3337. "id": "openCourseUpdate",
  3338. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3339. "onresize": function () { }
  3340. }, {
  3341. closecallback: function () { }
  3342. }, { "style": { "height": "36px" } }).form; //创建窗体
  3343. break;
  3344. }
  3345. case "openNewCourseUpdate":
  3346. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3347. setTimeout(() => {
  3348. U.MD.U.L.login();
  3349. }, 2000);
  3350. } else {
  3351. _formdiv = new U.UF.UI.form(
  3352. "课程管理",
  3353. $$("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 }), {
  3354. "id": "openCourseUpdate",
  3355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3356. "onresize": function () { }
  3357. }, {
  3358. closecallback: function () { }
  3359. }, { "style": { "height": "36px" } }).form; //创建窗体
  3360. break;
  3361. }
  3362. case "openCourseEUpdate":
  3363. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3364. setTimeout(() => {
  3365. U.MD.U.L.login();
  3366. }, 2000);
  3367. } else {
  3368. _formdiv = new U.UF.UI.form(
  3369. "课程管理",
  3370. $$("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 }), {
  3371. "id": "openCourseUpdate",
  3372. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3373. "onresize": function () { }
  3374. }, {
  3375. closecallback: function () { }
  3376. }, { "style": { "height": "36px" } }).form; //创建窗体
  3377. break;
  3378. }
  3379. case "openCourseNewUpdate":
  3380. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3381. setTimeout(() => {
  3382. U.MD.U.L.login();
  3383. }, 2000);
  3384. } else {
  3385. _formdiv = new U.UF.UI.form(
  3386. "课程管理",
  3387. $$("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 }), {
  3388. "id": "openCourseUpdate",
  3389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3390. "onresize": function () { }
  3391. }, {
  3392. closecallback: function () { }
  3393. }, { "style": { "height": "36px" } }).form; //创建窗体
  3394. break;
  3395. }
  3396. case "inviteLoginSz":
  3397. _formdiv = new U.UF.UI.form(
  3398. "随机码登录",
  3399. $$("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 }), {
  3400. "id": "loginSz",
  3401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3402. "onresize": function () { }
  3403. }, {
  3404. closecallback: function () { }
  3405. }, { "style": { "height": "36px" } }).form; //创建窗体
  3406. break;
  3407. case "loginSz":
  3408. _formdiv = new U.UF.UI.form(
  3409. "教师登录",
  3410. $$("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" }), {
  3411. "id": "loginSz",
  3412. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3413. "onresize": function () { }
  3414. }, {
  3415. closecallback: function () { }
  3416. }, { "style": { "height": "36px" } }).form; //创建窗体
  3417. break;
  3418. case "teacher":
  3419. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3420. setTimeout(() => {
  3421. U.MD.U.L.login();
  3422. }, 2000);
  3423. } else {
  3424. _formdiv = new U.UF.UI.form(
  3425. "教师管理",
  3426. $$("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 }), {
  3427. "id": "teacher",
  3428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3429. "onresize": function () { }
  3430. }, {
  3431. closecallback: function () { }
  3432. }, { "style": { "height": "36px" } }).form; //创建窗体
  3433. break;
  3434. }
  3435. case "dataBoardSZArea":
  3436. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3437. setTimeout(() => {
  3438. U.MD.U.L.login();
  3439. }, 2000);
  3440. } else {
  3441. _formdiv = new U.UF.UI.form(
  3442. "综合数据看板",
  3443. $$("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 }), {
  3444. "id": "dataBoardSZArea",
  3445. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3446. "onresize": function () { }
  3447. }, {
  3448. closecallback: function () { }
  3449. }, { "style": { "height": "36px" } }).form; //创建窗体
  3450. break;
  3451. }
  3452. case "dataBoardSZCity":
  3453. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3454. setTimeout(() => {
  3455. U.MD.U.L.login();
  3456. }, 2000);
  3457. } else {
  3458. _formdiv = new U.UF.UI.form(
  3459. "综合数据看板",
  3460. $$("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 }), {
  3461. "id": "dataBoardSZCity",
  3462. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3463. "onresize": function () { }
  3464. }, {
  3465. closecallback: function () { }
  3466. }, { "style": { "height": "36px" } }).form; //创建窗体
  3467. break;
  3468. }
  3469. case "classroom_observation_board":
  3470. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3471. setTimeout(() => {
  3472. U.MD.U.L.login();
  3473. }, 2000);
  3474. } else {
  3475. _formdiv = new U.UF.UI.form(
  3476. "课堂观察",
  3477. $$("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 }), {
  3478. "id": "classroom_observation_board",
  3479. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3480. "onresize": function () { }
  3481. }, {
  3482. closecallback: function () { }
  3483. }, { "style": { "height": "36px" } }).form; //创建窗体
  3484. break;
  3485. }
  3486. }
  3487. }
  3488. U.MD.D.I.openApplication = function (str, obj, info) {
  3489. obj = obj || {};
  3490. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3491. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3492. _userinfo = US.userInfo, //登录用户信息
  3493. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3494. _oid = obj.organizeid || _userinfo.organizeid,
  3495. _type = US.userInfo.type,
  3496. _org = US.userInfo.org,
  3497. _role = US.userInfo.role,
  3498. _classId = US.userInfo.classid,
  3499. _TscreenType = 1
  3500. _screenType = 2,
  3501. _SscreenType = 3;
  3502. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3503. return;
  3504. }
  3505. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3506. switch (str) {
  3507. case "studnetProject": //好友打开
  3508. _formdiv = new U.UF.UI.form(
  3509. "我的项目",
  3510. $$("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 }), {
  3511. "id": "studnetProject",
  3512. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3513. "onresize": function () { }
  3514. }, {
  3515. closecallback: function () { }
  3516. }, { "style": { "height": "36px" } }).form; //创建窗体
  3517. _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); } }
  3518. break;
  3519. case "studentEvaluate": //好友打开
  3520. _formdiv = new U.UF.UI.form(
  3521. "我的评价",
  3522. $$("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 }), {
  3523. "id": "studentEvaluate",
  3524. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3525. "onresize": function () { }
  3526. }, {
  3527. closecallback: function () { }
  3528. }, { "style": { "height": "36px" } }).form; //创建窗体
  3529. _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); } }
  3530. break;
  3531. case "my":
  3532. _formdiv = new U.UF.UI.form(
  3533. "我的资料",
  3534. $$("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 }), {
  3535. "id": "my",
  3536. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3537. "onresize": function () { }
  3538. }, {
  3539. closecallback: function () { }
  3540. }, { "style": { "height": "36px" } }).form; //创建窗体
  3541. _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); } }
  3542. break;
  3543. case "program":
  3544. _formdiv = new U.UF.UI.form(
  3545. "编程平台",
  3546. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3547. "id": "program",
  3548. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3549. "onresize": function () { }
  3550. }, {
  3551. closecallback: function () { }
  3552. }, { "style": { "height": "36px" } }).form; //创建窗体
  3553. _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); } }
  3554. break;
  3555. case "library":
  3556. _formdiv = new U.UF.UI.form(
  3557. "素材库",
  3558. $$("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 }), {
  3559. "id": "library",
  3560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3561. "onresize": function () { }
  3562. }, {
  3563. closecallback: function () { }
  3564. }, { "style": { "height": "36px" } }).form; //创建窗体
  3565. _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); } }
  3566. break;
  3567. case "whiteboard":
  3568. _formdiv = new U.UF.UI.form(
  3569. "电子白板",
  3570. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3571. "id": "whiteboard",
  3572. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3573. "onresize": function () { }
  3574. }, {
  3575. closecallback: function () { }
  3576. }, { "style": { "height": "36px" } }).form; //创建窗体
  3577. _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); } }
  3578. break;
  3579. case "investigation":
  3580. _formdiv = new U.UF.UI.form(
  3581. "问卷调查",
  3582. $$("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 }), {
  3583. "id": "investigation",
  3584. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3585. "onresize": function () { }
  3586. }, {
  3587. closecallback: function () { }
  3588. }, { "style": { "height": "36px" } }).form; //创建窗体
  3589. _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); } }
  3590. break;
  3591. case "note":
  3592. _formdiv = new U.UF.UI.form(
  3593. "便签分类",
  3594. $$("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 }), {
  3595. "id": "note",
  3596. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3597. "onresize": function () { }
  3598. }, {
  3599. closecallback: function () { }
  3600. }, { "style": { "height": "36px" } }).form; //创建窗体
  3601. _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); } }
  3602. break;
  3603. // case "score":
  3604. // _formdiv = new U.UF.UI.form(
  3605. // "量规评分",
  3606. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3607. // "id": "score",
  3608. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3609. // "onresize": function() {}
  3610. // }, {
  3611. // closecallback: function() {}
  3612. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3613. // _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); } }
  3614. // break;
  3615. case "mind":
  3616. _formdiv = new U.UF.UI.form(
  3617. "思维导图",
  3618. $$("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"
  3619. "id": "mind",
  3620. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3621. "onresize": function () { }
  3622. }, {
  3623. closecallback: function () { }
  3624. }, { "style": { "height": "36px" } }).form; //创建窗体
  3625. _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); } }
  3626. break;
  3627. case "doc":
  3628. // U.MD.D.I.isRoom();
  3629. _formdiv = new U.UF.UI.form(
  3630. "协同文档",
  3631. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3632. "id": "doc",
  3633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3634. "onresize": function () { }
  3635. }, {
  3636. closecallback: function () { }
  3637. }, { "style": { "height": "36px" } }).form; //创建窗体
  3638. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3639. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3640. // })
  3641. _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); } }
  3642. break;
  3643. case "studentStudy":
  3644. _formdiv = new U.UF.UI.form(
  3645. "课程中心",
  3646. $$("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
  3647. "id": "studentStudy",
  3648. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3649. "onresize": function () { }
  3650. }, {
  3651. closecallback: function () { }
  3652. }, { "style": { "height": "36px" } }).form; //创建窗体
  3653. _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); } }
  3654. break;
  3655. case "train": //好友打开
  3656. _formdiv = new U.UF.UI.form(
  3657. "训练平台",
  3658. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3659. "id": "train",
  3660. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3661. "onresize": function () { }
  3662. }, {
  3663. closecallback: function () { }
  3664. }, { "style": { "height": "36px" } }).form; //创建窗体
  3665. _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); } }
  3666. break;
  3667. case "mindNetwork": //好友打开
  3668. _formdiv = new U.UF.UI.form(
  3669. "思维网格",
  3670. $$("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 }), {
  3671. "id": "mindNetwork",
  3672. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3673. "onresize": function () { }
  3674. }, {
  3675. closecallback: function () { }
  3676. }, { "style": { "height": "36px" } }).form; //创建窗体
  3677. _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); } }
  3678. break;
  3679. case "studentClassRoom": //好友打开
  3680. _formdiv = new U.UF.UI.form(
  3681. "实时课堂",
  3682. $$("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 }), {
  3683. "id": "studentClassRoom",
  3684. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3685. "onresize": function () { }
  3686. }, {
  3687. closecallback: function () { }
  3688. }, { "style": { "height": "36px" } }).form; //创建窗体
  3689. _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); } }
  3690. setTimeout(() => {
  3691. U.UF.F.windowZooming(_formdiv)
  3692. }, 0);
  3693. break;
  3694. }
  3695. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3696. switch (str) {
  3697. case "studnetProject": //好友打开
  3698. _formdiv = new U.UF.UI.form(
  3699. "我的项目",
  3700. $$("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 }), {
  3701. "id": "studnetProject",
  3702. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3703. "onresize": function () { }
  3704. }, {
  3705. closecallback: function () { }
  3706. }, { "style": { "height": "36px" } }).form; //创建窗体
  3707. _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); } }
  3708. break;
  3709. case "studentEvaluate": //好友打开
  3710. _formdiv = new U.UF.UI.form(
  3711. "我的评价",
  3712. $$("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 }), {
  3713. "id": "studentEvaluate",
  3714. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3715. "onresize": function () { }
  3716. }, {
  3717. closecallback: function () { }
  3718. }, { "style": { "height": "36px" } }).form; //创建窗体
  3719. _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); } }
  3720. break;
  3721. case "my":
  3722. _formdiv = new U.UF.UI.form(
  3723. "我的资料",
  3724. $$("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 }), {
  3725. "id": "my",
  3726. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3727. "onresize": function () { }
  3728. }, {
  3729. closecallback: function () { }
  3730. }, { "style": { "height": "36px" } }).form; //创建窗体
  3731. _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); } }
  3732. break;
  3733. case "program":
  3734. _formdiv = new U.UF.UI.form(
  3735. "编程平台",
  3736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3737. "id": "program",
  3738. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3739. "onresize": function () { }
  3740. }, {
  3741. closecallback: function () { }
  3742. }, { "style": { "height": "36px" } }).form; //创建窗体
  3743. _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); } }
  3744. break;
  3745. case "library":
  3746. _formdiv = new U.UF.UI.form(
  3747. "素材库",
  3748. $$("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 }), {
  3749. "id": "library",
  3750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3751. "onresize": function () { }
  3752. }, {
  3753. closecallback: function () { }
  3754. }, { "style": { "height": "36px" } }).form; //创建窗体
  3755. _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); } }
  3756. break;
  3757. case "whiteboard":
  3758. _formdiv = new U.UF.UI.form(
  3759. "电子白板",
  3760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3761. "id": "whiteboard",
  3762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3763. "onresize": function () { }
  3764. }, {
  3765. closecallback: function () { }
  3766. }, { "style": { "height": "36px" } }).form; //创建窗体
  3767. _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); } }
  3768. break;
  3769. case "investigation":
  3770. _formdiv = new U.UF.UI.form(
  3771. "问卷调查",
  3772. $$("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 }), {
  3773. "id": "investigation",
  3774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3775. "onresize": function () { }
  3776. }, {
  3777. closecallback: function () { }
  3778. }, { "style": { "height": "36px" } }).form; //创建窗体
  3779. _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); } }
  3780. break;
  3781. case "note":
  3782. _formdiv = new U.UF.UI.form(
  3783. "便签分类",
  3784. $$("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 }), {
  3785. "id": "note",
  3786. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3787. "onresize": function () { }
  3788. }, {
  3789. closecallback: function () { }
  3790. }, { "style": { "height": "36px" } }).form; //创建窗体
  3791. _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); } }
  3792. break;
  3793. // case "score":
  3794. // _formdiv = new U.UF.UI.form(
  3795. // "量规评分",
  3796. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3797. // "id": "score",
  3798. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3799. // "onresize": function() {}
  3800. // }, {
  3801. // closecallback: function() {}
  3802. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3803. // _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); } }
  3804. // break;
  3805. case "mind":
  3806. _formdiv = new U.UF.UI.form(
  3807. "思维导图",
  3808. $$("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"
  3809. "id": "mind",
  3810. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3811. "onresize": function () { }
  3812. }, {
  3813. closecallback: function () { }
  3814. }, { "style": { "height": "36px" } }).form; //创建窗体
  3815. _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); } }
  3816. break;
  3817. case "doc":
  3818. // U.MD.D.I.isRoom();
  3819. _formdiv = new U.UF.UI.form(
  3820. "协同文档",
  3821. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3822. "id": "doc",
  3823. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3824. "onresize": function () { }
  3825. }, {
  3826. closecallback: function () { }
  3827. }, { "style": { "height": "36px" } }).form; //创建窗体
  3828. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3829. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3830. })
  3831. _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); } }
  3832. break;
  3833. case "train": //好友打开
  3834. _formdiv = new U.UF.UI.form(
  3835. "训练平台",
  3836. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3837. "id": "train",
  3838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3839. "onresize": function () { }
  3840. }, {
  3841. closecallback: function () { }
  3842. }, { "style": { "height": "36px" } }).form; //创建窗体
  3843. _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); } }
  3844. break;
  3845. case "studentStudy":
  3846. _formdiv = new U.UF.UI.form(
  3847. "课程中心",
  3848. $$("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
  3849. "id": "studentStudy",
  3850. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3851. "onresize": function () { }
  3852. }, {
  3853. closecallback: function () { }
  3854. }, { "style": { "height": "36px" } }).form; //创建窗体
  3855. _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); } }
  3856. break;
  3857. case "mindNetwork": //好友打开
  3858. _formdiv = new U.UF.UI.form(
  3859. "思维网格",
  3860. $$("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 }), {
  3861. "id": "mindNetwork",
  3862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3863. "onresize": function () { }
  3864. }, {
  3865. closecallback: function () { }
  3866. }, { "style": { "height": "36px" } }).form; //创建窗体
  3867. _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); } }
  3868. break;
  3869. case "studentClassRoom": //好友打开
  3870. _formdiv = new U.UF.UI.form(
  3871. "实时课堂",
  3872. $$("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 }), {
  3873. "id": "studentClassRoom",
  3874. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3875. "onresize": function () { }
  3876. }, {
  3877. closecallback: function () { }
  3878. }, { "style": { "height": "36px" } }).form; //创建窗体
  3879. _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); } }
  3880. setTimeout(() => {
  3881. U.UF.F.windowZooming(_formdiv)
  3882. }, 0);
  3883. break;
  3884. }
  3885. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3886. //选择应用处理
  3887. switch (str) {
  3888. case "project": //好友打开
  3889. _formdiv = new U.UF.UI.form(
  3890. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3891. $$("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 }), {
  3892. "id": "project",
  3893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3894. "onresize": function () { }
  3895. }, {
  3896. closecallback: function () { }
  3897. }, { "style": { "height": "36px" } }).form; //创建窗体
  3898. _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); } }
  3899. break;
  3900. case "student":
  3901. _formdiv = new U.UF.UI.form(
  3902. "学生管理",
  3903. $$("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 }), {
  3904. "id": "student",
  3905. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3906. "onresize": function () { }
  3907. }, {
  3908. closecallback: function () { }
  3909. }, { "style": { "height": "36px" } }).form; //创建窗体
  3910. _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); } }
  3911. break;
  3912. case "evaluate":
  3913. _formdiv = new U.UF.UI.form(
  3914. "学生评价",
  3915. $$("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 }), {
  3916. "id": "evaluate",
  3917. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3918. "onresize": function () { }
  3919. }, {
  3920. closecallback: function () { }
  3921. }, { "style": { "height": "36px" } }).form; //创建窗体
  3922. _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); } }
  3923. break;
  3924. case "sys":
  3925. _formdiv = new U.UF.UI.form(
  3926. "目标管理",
  3927. $$("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 }), {
  3928. "id": "sys",
  3929. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3930. "onresize": function () { }
  3931. }, {
  3932. closecallback: function () { }
  3933. }, { "style": { "height": "36px" } }).form; //创建窗体
  3934. _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); } }
  3935. break;
  3936. case "courseDesign":
  3937. _formdiv = new U.UF.UI.form(
  3938. "项目设计",
  3939. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3940. "id": "courseDesign",
  3941. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3942. "onresize": function () { }
  3943. }, {
  3944. closecallback: function () { }
  3945. }, { "style": { "height": "36px" } }).form; //创建窗体
  3946. _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); } }
  3947. break;
  3948. case "program":
  3949. _formdiv = new U.UF.UI.form(
  3950. "编程平台",
  3951. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3952. "id": "program",
  3953. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3954. "onresize": function () { }
  3955. }, {
  3956. closecallback: function () { }
  3957. }, { "style": { "height": "36px" } }).form; //创建窗体
  3958. _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); } }
  3959. break;
  3960. case "class":
  3961. _formdiv = new U.UF.UI.form(
  3962. "班级管理",
  3963. $$("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 }), {
  3964. "id": "class",
  3965. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3966. "onresize": function () { }
  3967. }, {
  3968. closecallback: function () { }
  3969. }, { "style": { "height": "36px" } }).form; //创建窗体
  3970. _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); } }
  3971. break;
  3972. case "Grade":
  3973. _formdiv = new U.UF.UI.form(
  3974. "年级管理",
  3975. $$("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 }), {
  3976. "id": "Grade",
  3977. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3978. "onresize": function () { }
  3979. }, {
  3980. closecallback: function () { }
  3981. }, { "style": { "height": "36px" } }).form; //创建窗体
  3982. _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); } }
  3983. break;
  3984. case "teacherOffice":
  3985. _formdiv = new U.UF.UI.form(
  3986. "教研室",
  3987. $$("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 }), {
  3988. "id": "teacherOffice",
  3989. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3990. "onresize": function () { }
  3991. }, {
  3992. closecallback: function () { }
  3993. }, { "style": { "height": "36px" } }).form; //创建窗体
  3994. _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); } }
  3995. break;
  3996. case "my":
  3997. _formdiv = new U.UF.UI.form(
  3998. "我的资料",
  3999. $$("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 }), {
  4000. "id": "my",
  4001. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4002. "onresize": function () { }
  4003. }, {
  4004. closecallback: function () { }
  4005. }, { "style": { "height": "36px" } }).form; //创建窗体
  4006. _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); } }
  4007. break;
  4008. case "notice":
  4009. _formdiv = new U.UF.UI.form(
  4010. "通知公告",
  4011. $$("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 }), {
  4012. "id": "notice",
  4013. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4014. "onresize": function () { }
  4015. }, {
  4016. closecallback: function () { }
  4017. }, { "style": { "height": "36px" } }).form; //创建窗体
  4018. _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); } }
  4019. break;
  4020. case "library":
  4021. _formdiv = new U.UF.UI.form(
  4022. "素材库",
  4023. $$("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 }), {
  4024. "id": "library",
  4025. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4026. "onresize": function () { }
  4027. }, {
  4028. closecallback: function () { }
  4029. }, { "style": { "height": "36px" } }).form; //创建窗体
  4030. _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); } }
  4031. break;
  4032. case "whiteboard":
  4033. _formdiv = new U.UF.UI.form(
  4034. "电子白板",
  4035. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4036. "id": "whiteboard",
  4037. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4038. "onresize": function () { }
  4039. }, {
  4040. closecallback: function () { }
  4041. }, { "style": { "height": "36px" } }).form; //创建窗体
  4042. _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); } }
  4043. break;
  4044. case "investigation":
  4045. _formdiv = new U.UF.UI.form(
  4046. "问卷调查",
  4047. $$("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 }), {
  4048. "id": "investigation",
  4049. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4050. "onresize": function () { }
  4051. }, {
  4052. closecallback: function () { }
  4053. }, { "style": { "height": "36px" } }).form; //创建窗体
  4054. _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); } }
  4055. break;
  4056. case "note":
  4057. _formdiv = new U.UF.UI.form(
  4058. "便签分类",
  4059. $$("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 }), {
  4060. "id": "note",
  4061. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4062. "onresize": function () { }
  4063. }, {
  4064. closecallback: function () { }
  4065. }, { "style": { "height": "36px" } }).form; //创建窗体
  4066. _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); } }
  4067. break;
  4068. // case "score":
  4069. // _formdiv = new U.UF.UI.form(
  4070. // "量规评分",
  4071. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4072. // "id": "score",
  4073. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4074. // "onresize": function() {}
  4075. // }, {
  4076. // closecallback: function() {}
  4077. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4078. // _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); } }
  4079. // break;
  4080. case "mind":
  4081. _formdiv = new U.UF.UI.form(
  4082. "思维导图",
  4083. $$("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"
  4084. "id": "mind",
  4085. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4086. "onresize": function () { }
  4087. }, {
  4088. closecallback: function () { }
  4089. }, { "style": { "height": "36px" } }).form; //创建窗体
  4090. _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); } }
  4091. break;
  4092. case "doc":
  4093. // U.MD.D.I.isRoom();
  4094. _formdiv = new U.UF.UI.form(
  4095. "协同文档",
  4096. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4097. "id": "doc",
  4098. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4099. "onresize": function () { }
  4100. }, {
  4101. closecallback: function () { }
  4102. }, { "style": { "height": "36px" } }).form; //创建窗体
  4103. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4104. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4105. })
  4106. _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); } }
  4107. break;
  4108. case "study":
  4109. _formdiv = new U.UF.UI.form(
  4110. "课程中心",
  4111. $$("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
  4112. "id": "study",
  4113. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4114. "onresize": function () { }
  4115. }, {
  4116. closecallback: function () { }
  4117. }, { "style": { "height": "36px" } }).form; //创建窗体
  4118. _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); } }
  4119. break;
  4120. case "mindNetwork": //好友打开
  4121. _formdiv = new U.UF.UI.form(
  4122. "思维网格",
  4123. $$("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 }), {
  4124. "id": "mindNetwork",
  4125. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4126. "onresize": function () { }
  4127. }, {
  4128. closecallback: function () { }
  4129. }, { "style": { "height": "36px" } }).form; //创建窗体
  4130. _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); } }
  4131. break;
  4132. case "train": //好友打开
  4133. _formdiv = new U.UF.UI.form(
  4134. "训练平台",
  4135. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4136. "id": "mindNetwork",
  4137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4138. "onresize": function () { }
  4139. }, {
  4140. closecallback: function () { }
  4141. }, { "style": { "height": "36px" } }).form; //创建窗体
  4142. _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); } }
  4143. break;
  4144. case "teacherClassRoom": //好友打开
  4145. _formdiv = new U.UF.UI.form(
  4146. "实时课堂",
  4147. $$("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 }), {
  4148. "id": "teacherClassRoom",
  4149. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4150. "onresize": function () { }
  4151. }, {
  4152. closecallback: function () { }
  4153. }, { "style": { "height": "36px" } }).form; //创建窗体
  4154. _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); } }
  4155. setTimeout(() => {
  4156. U.UF.F.windowZooming(_formdiv)
  4157. }, 0);
  4158. break;
  4159. }
  4160. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4161. switch (str) {
  4162. case "project": //好友打开
  4163. _formdiv = new U.UF.UI.form(
  4164. "课程管理",
  4165. $$("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 }), {
  4166. "id": "project",
  4167. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4168. "onresize": function () { }
  4169. }, {
  4170. closecallback: function () { }
  4171. }, { "style": { "height": "36px" } }).form; //创建窗体
  4172. _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); } }
  4173. break;
  4174. case "evaluate":
  4175. _formdiv = new U.UF.UI.form(
  4176. "学生评价",
  4177. $$("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 }), {
  4178. "id": "evaluate",
  4179. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4180. "onresize": function () { }
  4181. }, {
  4182. closecallback: function () { }
  4183. }, { "style": { "height": "36px" } }).form; //创建窗体
  4184. _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); } }
  4185. break;
  4186. case "notice":
  4187. _formdiv = new U.UF.UI.form(
  4188. "通知公告",
  4189. $$("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 }), {
  4190. "id": "notice",
  4191. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4192. "onresize": function () { }
  4193. }, {
  4194. closecallback: function () { }
  4195. }, { "style": { "height": "36px" } }).form; //创建窗体
  4196. _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); } }
  4197. break;
  4198. case "stuLibrary":
  4199. _formdiv = new U.UF.UI.form(
  4200. "学习资料",
  4201. $$("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 }), {
  4202. "id": "stuLibrary",
  4203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4204. "onresize": function () { }
  4205. }, {
  4206. closecallback: function () { }
  4207. }, { "style": { "height": "36px" } }).form; //创建窗体
  4208. _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); } }
  4209. break;
  4210. case "program":
  4211. _formdiv = new U.UF.UI.form(
  4212. "编程平台",
  4213. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4214. "id": "program",
  4215. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4216. "onresize": function () { }
  4217. }, {
  4218. closecallback: function () { }
  4219. }, { "style": { "height": "36px" } }).form; //创建窗体
  4220. _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); } }
  4221. break;
  4222. case "whiteboard":
  4223. _formdiv = new U.UF.UI.form(
  4224. "电子白板",
  4225. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4226. "id": "whiteboard",
  4227. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4228. "onresize": function () { }
  4229. }, {
  4230. closecallback: function () { }
  4231. }, { "style": { "height": "36px" } }).form; //创建窗体
  4232. _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); } }
  4233. break;
  4234. case "investigation":
  4235. _formdiv = new U.UF.UI.form(
  4236. "问卷调查",
  4237. $$("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 }), {
  4238. "id": "investigation",
  4239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4240. "onresize": function () { }
  4241. }, {
  4242. closecallback: function () { }
  4243. }, { "style": { "height": "36px" } }).form; //创建窗体
  4244. _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); } }
  4245. break;
  4246. case "mind":
  4247. _formdiv = new U.UF.UI.form(
  4248. "思维导图",
  4249. $$("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"
  4250. "id": "mind",
  4251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4252. "onresize": function () { }
  4253. }, {
  4254. closecallback: function () { }
  4255. }, { "style": { "height": "36px" } }).form; //创建窗体
  4256. _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); } }
  4257. break;
  4258. case "doc":
  4259. // U.MD.D.I.isRoom();
  4260. _formdiv = new U.UF.UI.form(
  4261. "协同文档",
  4262. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4263. "id": "doc",
  4264. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4265. "onresize": function () { }
  4266. }, {
  4267. closecallback: function () { }
  4268. }, { "style": { "height": "36px" } }).form; //创建窗体
  4269. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4270. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4271. })
  4272. _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); } }
  4273. break;
  4274. case "study":
  4275. _formdiv = new U.UF.UI.form(
  4276. "课程中心",
  4277. $$("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
  4278. "id": "study",
  4279. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4280. "onresize": function () { }
  4281. }, {
  4282. closecallback: function () { }
  4283. }, { "style": { "height": "36px" } }).form; //创建窗体
  4284. _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); } }
  4285. break;
  4286. case "mindNetwork": //好友打开
  4287. _formdiv = new U.UF.UI.form(
  4288. "思维网格",
  4289. $$("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 }), {
  4290. "id": "mindNetwork",
  4291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4292. "onresize": function () { }
  4293. }, {
  4294. closecallback: function () { }
  4295. }, { "style": { "height": "36px" } }).form; //创建窗体
  4296. _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); } }
  4297. break;
  4298. case "train": //好友打开
  4299. _formdiv = new U.UF.UI.form(
  4300. "训练平台",
  4301. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4302. "id": "train",
  4303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4304. "onresize": function () { }
  4305. }, {
  4306. closecallback: function () { }
  4307. }, { "style": { "height": "36px" } }).form; //创建窗体
  4308. _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); } }
  4309. break;
  4310. case "sys":
  4311. _formdiv = new U.UF.UI.form(
  4312. "目标管理",
  4313. $$("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 }), {
  4314. "id": "sys",
  4315. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4316. "onresize": function () { }
  4317. }, {
  4318. closecallback: function () { }
  4319. }, { "style": { "height": "36px" } }).form; //创建窗体
  4320. _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); } }
  4321. break;
  4322. case "courseDesign":
  4323. _formdiv = new U.UF.UI.form(
  4324. "项目设计",
  4325. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4326. "id": "courseDesign",
  4327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4328. "onresize": function () { }
  4329. }, {
  4330. closecallback: function () { }
  4331. }, { "style": { "height": "36px" } }).form; //创建窗体
  4332. _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); } }
  4333. break;
  4334. }
  4335. } else if (!_type) {
  4336. switch (str) {
  4337. case "my":
  4338. _formdiv = new U.UF.UI.form(
  4339. "我的资料",
  4340. $$("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 }), {
  4341. "id": "my",
  4342. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4343. "onresize": function () { }
  4344. }, {
  4345. closecallback: function () { }
  4346. }, { "style": { "height": "36px" } }).form; //创建窗体
  4347. _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); } }
  4348. break;
  4349. }
  4350. }
  4351. switch (str) {
  4352. // AIprogram2 AI体验 aihub.cocorobo.cn
  4353. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4354. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4355. case "formulaEdi": //公式编辑
  4356. _formdiv = new U.UF.UI.form(
  4357. "公式编辑",
  4358. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4359. "id": "formulaEdi",
  4360. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4361. "onresize": function () { }
  4362. }, {
  4363. closecallback: function () { }
  4364. }, { "style": { "height": "36px" } }).form; //创建窗体
  4365. _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); } }
  4366. break;
  4367. case "molStr": //分子结构
  4368. _formdiv = new U.UF.UI.form(
  4369. "分子结构",
  4370. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4371. "id": "molStr",
  4372. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4373. "onresize": function () { }
  4374. }, {
  4375. closecallback: function () { }
  4376. }, { "style": { "height": "36px" } }).form; //创建窗体
  4377. _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); } }
  4378. break;
  4379. case "timeAxis": //时间轴
  4380. _formdiv = new U.UF.UI.form(
  4381. "时间轴",
  4382. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4383. "id": "timeAxis",
  4384. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4385. "onresize": function () { }
  4386. }, {
  4387. closecallback: function () { }
  4388. }, { "style": { "height": "36px" } }).form; //创建窗体
  4389. _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); } }
  4390. break;
  4391. case "AIprogram2": //AI体验
  4392. _formdiv = new U.UF.UI.form(
  4393. "AI体验",
  4394. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4395. "id": "AIprogram2",
  4396. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4397. "onresize": function () { }
  4398. }, {
  4399. closecallback: function () { }
  4400. }, { "style": { "height": "36px" } }).form; //创建窗体
  4401. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4402. break;
  4403. case "Pythonprogram": //python编程
  4404. _formdiv = new U.UF.UI.form(
  4405. "Python编程",
  4406. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4407. "id": "Pythonprogram",
  4408. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4409. "onresize": function () { }
  4410. }, {
  4411. closecallback: function () { }
  4412. }, { "style": { "height": "36px" } }).form; //创建窗体
  4413. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4414. break;
  4415. case "AIprogram": //ai编程
  4416. _formdiv = new U.UF.UI.form(
  4417. "AI编程平台",
  4418. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4419. "id": "AIprogram",
  4420. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4421. "onresize": function () { }
  4422. }, {
  4423. closecallback: function () { }
  4424. }, { "style": { "height": "36px" } }).form; //创建窗体
  4425. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4426. break;
  4427. case "CocoPi": //CocoPi
  4428. _formdiv = new U.UF.UI.form(
  4429. "CocoPi",
  4430. $$("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" }), {
  4431. "id": "CocoPi",
  4432. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4433. "onresize": function () { }
  4434. }, {
  4435. closecallback: function () { }
  4436. }, { "style": { "height": "36px" } }).form; //创建窗体
  4437. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4438. break;
  4439. case "Wood": //Wood
  4440. _formdiv = new U.UF.UI.form(
  4441. "海龟编程",
  4442. $$("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/" }), {
  4443. "id": "Wood",
  4444. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4445. "onresize": function () { }
  4446. }, {
  4447. closecallback: function () { }
  4448. }, { "style": { "height": "36px" } }).form; //创建窗体
  4449. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4450. break;
  4451. case "car": //模拟驾驶
  4452. _formdiv = new U.UF.UI.form(
  4453. "模拟驾驶",
  4454. $$("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/" }), {
  4455. "id": "car",
  4456. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4457. "onresize": function () { }
  4458. }, {
  4459. closecallback: function () { }
  4460. }, { "style": { "height": "36px" } }).form; //创建窗体
  4461. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4462. break;
  4463. case "lineSearch": //路径搜索
  4464. _formdiv = new U.UF.UI.form(
  4465. "路径搜索",
  4466. $$("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/" }), {
  4467. "id": "lineSearch",
  4468. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4469. "onresize": function () { }
  4470. }, {
  4471. closecallback: function () { }
  4472. }, { "style": { "height": "36px" } }).form; //创建窗体
  4473. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4474. break;
  4475. case "deepLearning": //深度学习
  4476. _formdiv = new U.UF.UI.form(
  4477. "深度学习",
  4478. $$("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/#" }), {
  4479. "id": "deepLearning",
  4480. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4481. "onresize": function () { }
  4482. }, {
  4483. closecallback: function () { }
  4484. }, { "style": { "height": "36px" } }).form; //创建窗体
  4485. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4486. break;
  4487. case "allHistory": //深度学习
  4488. _formdiv = new U.UF.UI.form(
  4489. "全历史",
  4490. $$("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/" }), {
  4491. "id": "allHistory",
  4492. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4493. "onresize": function () { }
  4494. }, {
  4495. closecallback: function () { }
  4496. }, { "style": { "height": "36px" } }).form; //创建窗体
  4497. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4498. break;
  4499. case "chatPDF": //ai编程
  4500. _formdiv = new U.UF.UI.form(
  4501. "chatPDF",
  4502. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4503. "id": "chatPDF",
  4504. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4505. "onresize": function () { }
  4506. }, {
  4507. closecallback: function () { }
  4508. }, { "style": { "height": "36px" } }).form; //创建窗体
  4509. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4510. break;
  4511. case "resources": //国家教育
  4512. _formdiv = new U.UF.UI.form(
  4513. "国家教育",
  4514. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4515. "id": "resources",
  4516. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4517. "onresize": function () { }
  4518. }, {
  4519. closecallback: function () { }
  4520. }, { "style": { "height": "36px" } }).form; //创建窗体
  4521. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4522. break;
  4523. case "codeEdit": //源码编辑
  4524. _formdiv = new U.UF.UI.form(
  4525. "源码编辑",
  4526. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4527. "id": "codeEdit",
  4528. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4529. "onresize": function () { }
  4530. }, {
  4531. closecallback: function () { }
  4532. }, { "style": { "height": "36px" } }).form; //创建窗体
  4533. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4534. break; //
  4535. case "MindMap": //MindMap
  4536. _formdiv = new U.UF.UI.form(
  4537. "MindMap",
  4538. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4539. "id": "MindMap",
  4540. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4541. "onresize": function () { }
  4542. }, {
  4543. closecallback: function () { }
  4544. }, { "style": { "height": "36px" } }).form; //创建窗体
  4545. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4546. break;
  4547. case "netWorkPanel": //netWorkPanel
  4548. _formdiv = new U.UF.UI.form(
  4549. "netWorkPanel",
  4550. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4551. "id": "netWorkPanel",
  4552. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4553. "onresize": function () { }
  4554. }, {
  4555. closecallback: function () { }
  4556. }, { "style": { "height": "36px" } }).form; //创建窗体
  4557. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4558. break;
  4559. case "GeoGebra": //GeoGebra
  4560. _formdiv = new U.UF.UI.form(
  4561. "GeoGebra",
  4562. $$("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" }), {
  4563. "id": "GeoGebra",
  4564. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4565. "onresize": function () { }
  4566. }, {
  4567. closecallback: function () { }
  4568. }, { "style": { "height": "36px" } }).form; //创建窗体
  4569. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4570. break;
  4571. case "translation": //翻译
  4572. _formdiv = new U.UF.UI.form(
  4573. "翻译",
  4574. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4575. "id": "translation",
  4576. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4577. "onresize": function () { }
  4578. }, {
  4579. closecallback: function () { }
  4580. }, { "style": { "height": "36px" } }).form; //创建窗体
  4581. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4582. break;
  4583. case "mohe": //魔盒
  4584. _formdiv = new U.UF.UI.form(
  4585. "魔盒识字",
  4586. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4587. "id": "mohe",
  4588. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4589. "onresize": function () { }
  4590. }, {
  4591. closecallback: function () { }
  4592. }, { "style": { "height": "36px" } }).form; //创建窗体
  4593. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4594. break;
  4595. case "24game": //24点
  4596. _formdiv = new U.UF.UI.form(
  4597. "24点",
  4598. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4599. "id": "24game",
  4600. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4601. "onresize": function () { }
  4602. }, {
  4603. closecallback: function () { }
  4604. }, { "style": { "height": "36px" } }).form; //创建窗体
  4605. _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); } }
  4606. break;
  4607. case "case":
  4608. _formdiv = new U.UF.UI.form(
  4609. "课程进展",
  4610. $$("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 }), {
  4611. "id": "case",
  4612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4613. "onresize": function () { }
  4614. }, {
  4615. closecallback: function () { }
  4616. }, { "style": { "height": "36px" } }).form; //创建窗体
  4617. _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); } }
  4618. break;
  4619. case "snf":
  4620. _formdiv = new U.UF.UI.form(
  4621. "赛诺梵",
  4622. $$("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" }), {
  4623. "id": "snf",
  4624. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4625. "onresize": function () { }
  4626. }, {
  4627. closecallback: function () { }
  4628. }, { "style": { "height": "36px" } }).form; //创建窗体
  4629. _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); } }
  4630. break;
  4631. case "hanFamily":
  4632. _formdiv = new U.UF.UI.form(
  4633. "汉字家族",
  4634. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4635. "id": "hanFamily",
  4636. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4637. "onresize": function () { }
  4638. }, {
  4639. closecallback: function () { }
  4640. }, { "style": { "height": "36px" } }).form; //创建窗体
  4641. _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); } }
  4642. break;
  4643. case "hanClassics":
  4644. _formdiv = new U.UF.UI.form(
  4645. "国学经典",
  4646. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4647. "id": "hanClassics",
  4648. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4649. "onresize": function () { }
  4650. }, {
  4651. closecallback: function () { }
  4652. }, { "style": { "height": "36px" } }).form; //创建窗体
  4653. _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); } }
  4654. break;
  4655. case "hanTraining":
  4656. _formdiv = new U.UF.UI.form(
  4657. "笔画训练",
  4658. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4659. "id": "hanTraining",
  4660. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4661. "onresize": function () { }
  4662. }, {
  4663. closecallback: function () { }
  4664. }, { "style": { "height": "36px" } }).form; //创建窗体
  4665. _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); } }
  4666. break;
  4667. case "hanClass":
  4668. _formdiv = new U.UF.UI.form(
  4669. "书法课堂",
  4670. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4671. "id": "hanClass",
  4672. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4673. "onresize": function () { }
  4674. }, {
  4675. closecallback: function () { }
  4676. }, { "style": { "height": "36px" } }).form; //创建窗体
  4677. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4678. break;
  4679. case "han":
  4680. _formdiv = new U.UF.UI.form(
  4681. "汉字宫",
  4682. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4683. "id": "han",
  4684. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4685. "onresize": function () { }
  4686. }, {
  4687. closecallback: function () { }
  4688. }, { "style": { "height": "36px" } }).form; //创建窗体
  4689. _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); } }
  4690. break;
  4691. case "projectGM": //课程管理
  4692. _formdiv = new U.UF.UI.form(
  4693. "课程管理",
  4694. $$("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 }), {
  4695. "id": "projectGM",
  4696. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4697. "onresize": function () { }
  4698. }, {
  4699. closecallback: function () { }
  4700. }, { "style": { "height": "36px" } }).form; //创建窗体
  4701. _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); } }
  4702. break;
  4703. case "studyGM": //课程中心
  4704. _formdiv = new U.UF.UI.form(
  4705. "课程中心",
  4706. $$("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
  4707. "id": "study",
  4708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4709. "onresize": function () { }
  4710. }, {
  4711. closecallback: function () { }
  4712. }, { "style": { "height": "36px" } }).form; //创建窗体
  4713. _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); } }
  4714. break;
  4715. // studentGM
  4716. case "studentGM": //学生管理
  4717. _formdiv = new U.UF.UI.form(
  4718. "学生管理",
  4719. $$("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 }), {
  4720. "id": "studentGM",
  4721. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4722. "onresize": function () { }
  4723. }, {
  4724. closecallback: function () { }
  4725. }, { "style": { "height": "36px" } }).form; //创建窗体
  4726. _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); } }
  4727. break;
  4728. case "evaluateGM": //学生评价
  4729. _formdiv = new U.UF.UI.form(
  4730. "学生评价",
  4731. $$("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 }), {
  4732. "id": "evaluateGM",
  4733. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4734. "onresize": function () { }
  4735. }, {
  4736. closecallback: function () { }
  4737. }, { "style": { "height": "36px" } }).form; //创建窗体
  4738. _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); } }
  4739. break;
  4740. // classGM
  4741. case "classGM": //班级管理
  4742. _formdiv = new U.UF.UI.form(
  4743. "班级管理",
  4744. $$("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 }), {
  4745. "id": "classGM",
  4746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4747. "onresize": function () { }
  4748. }, {
  4749. closecallback: function () { }
  4750. }, { "style": { "height": "36px" } }).form; //创建窗体
  4751. _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); } }
  4752. break;
  4753. // dataGM
  4754. case "dataGM":
  4755. _formdiv = new U.UF.UI.form(
  4756. "我的资料",
  4757. $$("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 }), {
  4758. "id": "dataGM",
  4759. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4760. "onresize": function () { }
  4761. }, {
  4762. closecallback: function () { }
  4763. }, { "style": { "height": "36px" } }).form; //创建窗体
  4764. _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); } }
  4765. break;
  4766. // caseGM
  4767. case "caseGM": //课程进展
  4768. _formdiv = new U.UF.UI.form(
  4769. "课程进展",
  4770. $$("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 }), {
  4771. "id": "caseGM",
  4772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4773. "onresize": function () { }
  4774. }, {
  4775. closecallback: function () { }
  4776. }, { "style": { "height": "36px" } }).form; //创建窗体
  4777. _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); } }
  4778. break;
  4779. // meterialGM
  4780. case "meterialGM": //素材库
  4781. _formdiv = new U.UF.UI.form(
  4782. "素材库",
  4783. $$("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 }), {
  4784. "id": "meterialGM",
  4785. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4786. "onresize": function () { }
  4787. }, {
  4788. closecallback: function () { }
  4789. }, { "style": { "height": "36px" } }).form; //创建窗体
  4790. _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); } }
  4791. break;
  4792. // evaluateSGM
  4793. case "evaluateSGM": //我的评价
  4794. _formdiv = new U.UF.UI.form(
  4795. "我的评价",
  4796. $$("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 }), {
  4797. "id": "evaluateSGM",
  4798. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4799. "onresize": function () { }
  4800. }, {
  4801. closecallback: function () { }
  4802. }, { "style": { "height": "36px" } }).form; //创建窗体
  4803. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4804. break;
  4805. case "jupyter": //jupyter
  4806. _formdiv = new U.UF.UI.form(
  4807. "jupyter",
  4808. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4809. "id": "jupyter",
  4810. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4811. "onresize": function () { }
  4812. }, {
  4813. closecallback: function () { }
  4814. }, { "style": { "height": "36px" } }).form; //创建窗体
  4815. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4816. break;
  4817. case "number": //数字实验室
  4818. _formdiv = new U.UF.UI.form(
  4819. "数字实验室",
  4820. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  4821. "id": "number",
  4822. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4823. "onresize": function () { }
  4824. }, {
  4825. closecallback: function () { }
  4826. }, { "style": { "height": "36px" } }).form; //创建窗体
  4827. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4828. break;
  4829. case "studentCourse": //项目管理 学生
  4830. _formdiv = new U.UF.UI.form(
  4831. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4832. $$("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 }), {
  4833. "id": "studentCourse",
  4834. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4835. "onresize": function () { }
  4836. }, {
  4837. closecallback: function () { }
  4838. }, { "style": { "height": "36px" } }).form; //创建窗体
  4839. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4840. break;
  4841. case "studentCourseS": //项目管理 老师
  4842. _formdiv = new U.UF.UI.form(
  4843. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4844. $$("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 }), {
  4845. "id": "studentCourseS",
  4846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4847. "onresize": function () { }
  4848. }, {
  4849. closecallback: function () { }
  4850. }, { "style": { "height": "36px" } }).form; //创建窗体
  4851. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4852. break;
  4853. case "studentIndex": //项目中心
  4854. _formdiv = new U.UF.UI.form(
  4855. "项目中心",
  4856. $$("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 }), {
  4857. "id": "studentIndex",
  4858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4859. "onresize": function () { }
  4860. }, {
  4861. closecallback: function () { }
  4862. }, { "style": { "height": "36px" } }).form; //创建窗体
  4863. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4864. break;
  4865. case "CaseDesignS":
  4866. _formdiv = new U.UF.UI.form(
  4867. "项目进展",
  4868. $$("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 }), {
  4869. "id": "case",
  4870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4871. "onresize": function () { }
  4872. }, {
  4873. closecallback: function () { }
  4874. }, { "style": { "height": "36px" } }).form; //创建窗体
  4875. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4876. break;
  4877. case "tcStudent": //腾讯学生管理
  4878. _formdiv = new U.UF.UI.form(
  4879. "学生管理",
  4880. $$("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 }), {
  4881. "id": "tcStudent",
  4882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4883. "onresize": function () { }
  4884. }, {
  4885. closecallback: function () { }
  4886. }, { "style": { "height": "36px" } }).form; //创建窗体
  4887. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4888. break;
  4889. case "tcSchool": //腾讯学校管理
  4890. _formdiv = new U.UF.UI.form(
  4891. "学校管理",
  4892. $$("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 }), {
  4893. "id": "tcSchool",
  4894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4900. break;
  4901. case "tcTeacher": //腾讯学校管理
  4902. _formdiv = new U.UF.UI.form(
  4903. "教师管理",
  4904. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4905. "id": "tcTeacher",
  4906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4907. "onresize": function () { }
  4908. }, {
  4909. closecallback: function () { }
  4910. }, { "style": { "height": "36px" } }).form; //创建窗体
  4911. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4912. break;
  4913. case "tcData": //腾讯我的资料
  4914. _formdiv = new U.UF.UI.form(
  4915. "我的资料",
  4916. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4917. "id": "tcData",
  4918. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4919. "onresize": function () { }
  4920. }, {
  4921. closecallback: function () { }
  4922. }, { "style": { "height": "36px" } }).form; //创建窗体
  4923. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4924. break;
  4925. case "tcNotice": //腾讯消息通知
  4926. _formdiv = new U.UF.UI.form(
  4927. "消息通知",
  4928. $$("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 }), {
  4929. "id": "tcNotice",
  4930. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4931. "onresize": function () { }
  4932. }, {
  4933. closecallback: function () { }
  4934. }, { "style": { "height": "36px" } }).form; //创建窗体
  4935. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4936. break;
  4937. case "myReport": //好友打开
  4938. _formdiv = new U.UF.UI.form(
  4939. "我的评价",
  4940. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  4941. "id": "myReport",
  4942. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4943. "onresize": function () { }
  4944. }, {
  4945. closecallback: function () { }
  4946. }, { "style": { "height": "36px" } }).form; //创建窗体
  4947. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4948. break;
  4949. case "learnAna": //好友打开
  4950. _formdiv = new U.UF.UI.form(
  4951. "学习分析",
  4952. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4953. "id": "learnAna",
  4954. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4955. "onresize": function () { }
  4956. }, {
  4957. closecallback: function () { }
  4958. }, { "style": { "height": "36px" } }).form; //创建窗体
  4959. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4960. break;
  4961. case "AIChat": //AI共创
  4962. _formdiv = new U.UF.UI.form(
  4963. "AI共创",
  4964. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4965. "id": "AIChat",
  4966. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4967. "onresize": function () { }
  4968. }, {
  4969. istop: true,
  4970. closecallback: function () { $("#aichat_icon").remove(); },
  4971. narrowcallback: function () {
  4972. if (!$("#aichat_icon")[0]) {
  4973. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4974. }
  4975. },
  4976. }, { "style": { "height": "36px" } }).form; //创建窗体
  4977. _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); } }
  4978. break;
  4979. case "ainew": //AI共创
  4980. _formdiv = new U.UF.UI.form(
  4981. "AI协同",
  4982. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4983. "id": "ainew",
  4984. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4985. "onresize": function () { }
  4986. }, {
  4987. closecallback: function () { }
  4988. }, { "style": { "height": "36px" } }).form; //创建窗体
  4989. _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); } }
  4990. break;
  4991. case "gpt4": //gpt4
  4992. _formdiv = new U.UF.UI.form(
  4993. "AI助手",
  4994. $$("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 }), {
  4995. "id": "gpt4",
  4996. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4997. "onresize": function () { }
  4998. }, {
  4999. closecallback: function () { }
  5000. }, { "style": { "height": "36px" } }).form; //创建窗体
  5001. _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); } }
  5002. break;
  5003. case "aigpt": //gpt4
  5004. _formdiv = new U.UF.UI.form(
  5005. "AI助手+",
  5006. $$("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 }), {
  5007. "id": "aigpt",
  5008. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5009. "onresize": function () { }
  5010. }, {
  5011. closecallback: function () { }
  5012. }, { "style": { "height": "36px" } }).form; //创建窗体
  5013. _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); } }
  5014. break;
  5015. case "futureClass": //AI共创
  5016. _formdiv = new U.UF.UI.form(
  5017. "协同建构",
  5018. $$("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
  5019. "id": "synergyCourse",
  5020. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5021. "onresize": function () { }
  5022. }, {
  5023. closecallback: function () {
  5024. $("iframe", _formdiv)[0].contentWindow.loginout();
  5025. }
  5026. }, { "style": { "height": "36px" } }).form; //创建窗体
  5027. _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); } }
  5028. break;
  5029. case "aiagent": //ai agent
  5030. _formdiv = new U.UF.UI.form(
  5031. "AI Agent",
  5032. $$("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" }), {
  5033. "id": "AIAgent",
  5034. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5035. "onresize": function () { }
  5036. }, {
  5037. closecallback: function () { }
  5038. }, { "style": { "height": "36px" } }).form; //创建窗体
  5039. _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); } }
  5040. break;
  5041. case "dataBoard": //数据看板
  5042. _formdiv = new U.UF.UI.form(
  5043. "数据看板",
  5044. $$("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 }), {
  5045. "id": "dataBoard",
  5046. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5047. "onresize": function () { }
  5048. }, {
  5049. closecallback: function () { }
  5050. }, { "style": { "height": "36px" } }).form; //创建窗体
  5051. _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); } }
  5052. break;
  5053. case "dataBoardSies": //数据融合
  5054. _formdiv = new U.UF.UI.form(
  5055. "数据融合",
  5056. $$("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 }), {
  5057. "id": "dataBoardSies",
  5058. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5059. "onresize": function () { }
  5060. }, {
  5061. closecallback: function () { }
  5062. }, { "style": { "height": "36px" } }).form; //创建窗体
  5063. _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); } }
  5064. break;
  5065. case "dataBoardNew": //数据看板
  5066. _formdiv = new U.UF.UI.form(
  5067. "综合看板",
  5068. $$("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 }), {
  5069. "id": "dataBoardNew",
  5070. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5071. "onresize": function () { }
  5072. }, {
  5073. closecallback: function () { }
  5074. }, { "style": { "height": "36px" } }).form; //创建窗体
  5075. _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); } }
  5076. break;
  5077. case "dataBoardTest": //数据看板
  5078. _formdiv = new U.UF.UI.form(
  5079. "评测看板",
  5080. $$("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 }), {
  5081. "id": "dataBoardTest",
  5082. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5083. "onresize": function () { }
  5084. }, {
  5085. closecallback: function () { }
  5086. }, { "style": { "height": "36px" } }).form; //创建窗体
  5087. _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); } }
  5088. break;
  5089. case "AIAnalyse": //AI共创
  5090. _formdiv = new U.UF.UI.form(
  5091. "AI分析",
  5092. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5093. "id": "AIAnalyse",
  5094. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5095. "onresize": function () { }
  5096. }, {
  5097. closecallback: function () { }
  5098. }, { "style": { "height": "36px" } }).form; //创建窗体
  5099. _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); } }
  5100. break;
  5101. case "studioCourse": //AI共创
  5102. _formdiv = new U.UF.UI.form(
  5103. "工作管理",
  5104. $$("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 }), {
  5105. "id": "studioCourse",
  5106. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5107. "onresize": function () { }
  5108. }, {
  5109. closecallback: function () { }
  5110. }, { "style": { "height": "36px" } }).form; //创建窗体
  5111. _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); } }
  5112. break;
  5113. case "studioIndex": //AI共创
  5114. _formdiv = new U.UF.UI.form(
  5115. "工作中心",
  5116. $$("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 }), {
  5117. "id": "studioIndex",
  5118. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5119. "onresize": function () { }
  5120. }, {
  5121. closecallback: function () { }
  5122. }, { "style": { "height": "36px" } }).form; //创建窗体
  5123. _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); } }
  5124. break;
  5125. case "source":
  5126. _formdiv = new U.UF.UI.form(
  5127. "教学资源",
  5128. $$("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 }), {
  5129. "id": "source",
  5130. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5131. "onresize": function () { }
  5132. }, {
  5133. closecallback: function () { }
  5134. }, { "style": { "height": "36px" } }).form; //创建窗体
  5135. _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); } }
  5136. break;
  5137. case "testTeacher":
  5138. _formdiv = new U.UF.UI.form(
  5139. "教师管理",
  5140. $$("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 }), {
  5141. "id": "testTeacher",
  5142. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5143. "onresize": function () { }
  5144. }, {
  5145. closecallback: function () { }
  5146. }, { "style": { "height": "36px" } }).form; //创建窗体
  5147. _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); } }
  5148. break;
  5149. case "testStudent":
  5150. _formdiv = new U.UF.UI.form(
  5151. "教师中心",
  5152. $$("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 }), {
  5153. "id": "testStudent",
  5154. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5155. "onresize": function () { }
  5156. }, {
  5157. closecallback: function () { }
  5158. }, { "style": { "height": "36px" } }).form; //创建窗体
  5159. _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); } }
  5160. break;
  5161. case "testTeacherSies":
  5162. _formdiv = new U.UF.UI.form(
  5163. "教师管理",
  5164. $$("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 }), {
  5165. "id": "testTeacherSies",
  5166. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5167. "onresize": function () { }
  5168. }, {
  5169. closecallback: function () { }
  5170. }, { "style": { "height": "36px" } }).form; //创建窗体
  5171. _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); } }
  5172. break;
  5173. case "testStudentSies":
  5174. _formdiv = new U.UF.UI.form(
  5175. "教师中心",
  5176. $$("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 }), {
  5177. "id": "testStudentSies",
  5178. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5179. "onresize": function () { }
  5180. }, {
  5181. closecallback: function () { }
  5182. }, { "style": { "height": "36px" } }).form; //创建窗体
  5183. _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); } }
  5184. break;
  5185. case "ytpbl": //消息通知
  5186. _formdiv = new U.UF.UI.form(
  5187. "案例征集",
  5188. $$("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 }), {
  5189. "id": "ytpbl",
  5190. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5191. "onresize": function () { }
  5192. }, {
  5193. closecallback: function () { }
  5194. }, { "style": { "height": "36px" } }).form; //创建窗体
  5195. _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); } }
  5196. // 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");
  5197. break;
  5198. case "aiCourseResource": //人工智能窗体
  5199. _formdiv = new U.UF.UI.form(
  5200. false,
  5201. $$("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 }), {
  5202. "id": "aiCourseResource",
  5203. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5204. "onresize": function () { },
  5205. "isdrag": false,
  5206. }, {
  5207. closecallback: function () { }
  5208. }, { "style": { "height": "36px" } }).form; //创建窗体
  5209. _taskbar = ''
  5210. break;
  5211. case "szdjgCocooroboX": //图形化编程
  5212. _formdiv = new U.UF.UI.form(
  5213. "图形化编程",
  5214. $$("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" }), {
  5215. "id": "szdjgCocooroboX",
  5216. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5217. "onresize": function () { }
  5218. }, {
  5219. closecallback: function () { }
  5220. }, { "style": { "height": "36px" } }).form; //创建窗体
  5221. _taskbar = ''
  5222. break;
  5223. case "szdjgPython": //python编程
  5224. _formdiv = new U.UF.UI.form(
  5225. "Python编程",
  5226. $$("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" }), {
  5227. "id": "szdjgPython",
  5228. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5229. "onresize": function () { }
  5230. }, {
  5231. closecallback: function () { }
  5232. }, { "style": { "height": "36px" } }).form; //创建窗体
  5233. _taskbar = ''
  5234. break;
  5235. case "Record":
  5236. _formdiv = new U.UF.UI.form(
  5237. "观察记录",
  5238. $$("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 }), {
  5239. "id": "Record",
  5240. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5241. "onresize": function () { }
  5242. }, {
  5243. closecallback: function () { }
  5244. }, { "style": { "height": "36px" } }).form; //创建窗体
  5245. _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); } }
  5246. break;
  5247. case "aigptCourse":
  5248. _formdiv = new U.UF.UI.form(
  5249. "AI智能体",
  5250. $$("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' }), {
  5251. "id": "aigptCourse",
  5252. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5253. "onresize": function () { }
  5254. }, {
  5255. closecallback: function () { }
  5256. }, { "style": { "height": "36px" } }).form; //创建窗体
  5257. _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); } }
  5258. break;
  5259. case "classroomObservation":
  5260. _formdiv = new U.UF.UI.form(
  5261. "课堂观察",
  5262. $$("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 }), {
  5263. "id": "classroomObservation",
  5264. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5265. "onresize": function () { }
  5266. }, {
  5267. closecallback: function () { }
  5268. }, { "style": { "height": "36px" } }).form; //创建窗体
  5269. _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); } }
  5270. break;
  5271. }
  5272. //U.MD.D.I.openClick(str);
  5273. //如果有任务栏信息
  5274. if (_taskbar) {
  5275. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5276. }
  5277. }
  5278. // U.MD.D.I.openClick = function(str){
  5279. // var click = '';
  5280. // switch(str){
  5281. // case 'friend':
  5282. // click = '我的好友';
  5283. // break;
  5284. // case 'domain':
  5285. // click = '域名管理';
  5286. // break;
  5287. // case 'disk':
  5288. // click = '我的云盘';
  5289. // break;
  5290. // case 'word':
  5291. // click = 'Word';
  5292. // break;
  5293. // case 'excel':
  5294. // click = 'Execl';
  5295. // break;
  5296. // case 'txt':
  5297. // click = '文本文件';
  5298. // break;
  5299. // case 'lookupFriend':
  5300. // click = '查找好友';
  5301. // break;
  5302. // case 'ftp':
  5303. // click = 'FTP';
  5304. // break;
  5305. // case 'group':
  5306. // click = '群组';
  5307. // break;
  5308. // case 'set':
  5309. // click = '我的设置';
  5310. // break;
  5311. // case 'systemSet':
  5312. // click = '系统设置';
  5313. // break;
  5314. // case 'boomYun':
  5315. // click = '互联办公';
  5316. // break;
  5317. // case 'xz':
  5318. // click = '云端下载';
  5319. // break;
  5320. // case 'client':
  5321. // click = '有思浏览器';
  5322. // break;
  5323. // case 'backEndProgramming':
  5324. // click = '在线后台编程';
  5325. // break;
  5326. // case 'frontEndProgramming':
  5327. // click = '在线前端编程';
  5328. // break;
  5329. // default: break;
  5330. // }
  5331. // if(U.MD.D.I.Ip && click){
  5332. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5333. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5334. // })
  5335. // }
  5336. // }
  5337. /**
  5338. *函数作用:ajax简易函数,使用post格式
  5339. *@param url {data} 后台地址
  5340. *@param data {data} 参数json
  5341. *@param fn {data} 回调函数
  5342. *
  5343. */
  5344. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5345. // var xhr = new XMLHttpRequest();
  5346. // xhr.open("GET",url,true);
  5347. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5348. // xhr.onreadystatechange = function(){
  5349. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5350. // fn.call(this,xhr.responseText);
  5351. // }
  5352. // };
  5353. // xhr.send();
  5354. // }
  5355. /*判断是否是内网IP*/
  5356. // U.MD.D.I.isInnerIPFn = function(str){
  5357. // var curPageUrl = str;
  5358. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5359. // curPageUrl =curPageUrl.replace(reg1,'');
  5360. // // console.log('curPageUrl-1 '+curPageUrl);
  5361. // var reg2 = /\:+/g;//替换冒号为一点
  5362. // curPageUrl =curPageUrl.replace(reg2,'.');
  5363. // // console.log('curPageUrl-2 '+curPageUrl);
  5364. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5365. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5366. // if(curPageUrl[2] != '16'){
  5367. // return ipAddress;
  5368. // }else{
  5369. // return false;
  5370. // }
  5371. // }
  5372. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5373. // //compatibility for firefox and chrome
  5374. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5375. // var pc = new myPeerConnection({
  5376. // iceServers: []
  5377. // }),
  5378. // noop = function() {},
  5379. // localIPs = {},
  5380. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5381. // key;
  5382. // function iterateIP(ip) {
  5383. // if (!localIPs[ip]) onNewIP(ip);
  5384. // localIPs[ip] = true;
  5385. // }
  5386. // //create a bogus data channel
  5387. // pc.createDataChannel("");
  5388. // // create offer and set local description
  5389. // pc.createOffer().then(function(sdp) {
  5390. // sdp.sdp.split('\n').forEach(function(line) {
  5391. // if (line.indexOf('candidate') < 0) return;
  5392. // line.match(ipRegex).forEach(iterateIP);
  5393. // });
  5394. // pc.setLocalDescription(sdp, noop, noop);
  5395. // }).catch(function(reason) {
  5396. // // An error occurred, so handle the failure to connect
  5397. // });
  5398. // //sten for candidate events
  5399. // pc.onicecandidate = function(ice) {
  5400. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5401. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5402. // };
  5403. // }
  5404. // U.MD.D.I.getUserIpBool = function(callback){
  5405. // U.MD.D.I.getUserIP(function(ip){
  5406. // alert("Got IP! :" + ip);
  5407. // });
  5408. //}
  5409. //#endregion
  5410. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5411. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5412. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5413. _userinfo = US.userInfo, //登录用户信息
  5414. _userid = US.userInfo.userid //登录用户id
  5415. let _iframe;
  5416. let _cid = cid,
  5417. _stage = stage,
  5418. _task = task,
  5419. _tool = tool;
  5420. var _jie = $$("div", {
  5421. "style": {
  5422. "position": "absolute",
  5423. "bottom": "50px",
  5424. "right": "50px",
  5425. "zIndex": "9999",
  5426. "backgroundColor": "#2268bc",
  5427. "color": "#fff",
  5428. "padding": "12px 20px",
  5429. "cursor": "pointer",
  5430. "borderRadius": "4px",
  5431. },
  5432. "innerHTML": "提交作业"
  5433. })
  5434. let aTool = ''
  5435. let _loading = document.createElement('div')
  5436. _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;"
  5437. // _loading.id = "";
  5438. let _lchild = document.createElement('div')
  5439. let _limg = document.createElement('img')
  5440. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5441. _limg.style = "width: 26px;margin-right: 10px;"
  5442. _lchild.appendChild(_limg)
  5443. let _lspan = document.createElement('span')
  5444. _lspan.innerHTML = "上传中..."
  5445. _lchild.appendChild(_lspan)
  5446. _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%);"
  5447. _loading.appendChild(_lchild)
  5448. var _box = $$('div', {
  5449. "style": {
  5450. "position": "relative",
  5451. "width": "100%",
  5452. "height": "100%",
  5453. },
  5454. })
  5455. _box.appendChild(_loading)
  5456. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5457. switch (str) {
  5458. case "whiteboard":
  5459. aTool = 1;
  5460. _iframe = $$("iframe", {
  5461. "frameborder": "no",
  5462. "border": "0",
  5463. "scrolling ": "no",
  5464. "style": {
  5465. "cssText": "border:0;width:100%;height:100%"
  5466. },
  5467. "src": "https://beta.iwb.cocorobo.cn/"
  5468. })
  5469. _box.appendChild(_iframe);
  5470. _box.appendChild(_jie);
  5471. _formdiv = new U.UF.UI.form(
  5472. "电子白板",
  5473. _box, {
  5474. "id": "whiteboard" + cid + stage + task + tool,
  5475. "style": {
  5476. "width": "90%",
  5477. "height": "90%",
  5478. "overflow": 'hidden'
  5479. },
  5480. "onresize": function () { }
  5481. }, {
  5482. closecallback: function () { }
  5483. }, {
  5484. "style": {
  5485. "height": "36px"
  5486. }
  5487. }).form; //创建窗体
  5488. _taskbar = {
  5489. "id": str + _formdiv.id,
  5490. "style": {
  5491. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5492. },
  5493. "name": "电子白板",
  5494. "forms": _formdiv,
  5495. "click": function () {
  5496. U.MD.D.I.openApplication(str, obj, info);
  5497. }
  5498. }
  5499. break;
  5500. case "mind":
  5501. aTool = 3;
  5502. _iframe = $$("iframe", {
  5503. "frameborder": "no",
  5504. "border": "0",
  5505. "scrolling ": "no",
  5506. "style": {
  5507. "cssText": "border:0;width:100%;height:100%"
  5508. },
  5509. "src": "/kityminder-editor/dist/index.html"
  5510. })
  5511. _box.appendChild(_iframe);
  5512. _box.appendChild(_jie);
  5513. _formdiv = new U.UF.UI.form(
  5514. "思维导图",
  5515. _box, { //"/jsmind/example/demo.html"
  5516. "id": "mind" + cid + stage + task + tool,
  5517. "style": {
  5518. "width": "90%",
  5519. "height": "90%",
  5520. "overflow": 'hidden'
  5521. },
  5522. "onresize": function () { }
  5523. }, {
  5524. closecallback: function () { }
  5525. }, {
  5526. "style": {
  5527. "height": "36px"
  5528. }
  5529. }).form; //创建窗体
  5530. _taskbar = {
  5531. "id": str + _formdiv.id,
  5532. "style": {
  5533. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5534. },
  5535. "name": "思维导图",
  5536. "forms": _formdiv,
  5537. "click": function () {
  5538. U.MD.D.I.openApplication(str, obj, info);
  5539. }
  5540. }
  5541. break;
  5542. case "MindMap":
  5543. aTool = 3;
  5544. _iframe = $$("iframe", {
  5545. "frameborder": "no",
  5546. "border": "0",
  5547. "scrolling ": "no",
  5548. "style": {
  5549. "cssText": "border:0;width:100%;height:100%"
  5550. },
  5551. "src": "//cloud.cocorobo.cn/mind/"
  5552. })
  5553. _box.appendChild(_iframe);
  5554. _box.appendChild(_jie);
  5555. _formdiv = new U.UF.UI.form(
  5556. "思维导图",
  5557. _box, { //"/jsmind/example/demo.html"
  5558. "id": "mind" + cid + stage + task + tool,
  5559. "style": {
  5560. "width": "90%",
  5561. "height": "90%",
  5562. "overflow": 'hidden'
  5563. },
  5564. "onresize": function () { }
  5565. }, {
  5566. closecallback: function () { }
  5567. }, {
  5568. "style": {
  5569. "height": "36px"
  5570. }
  5571. }).form; //创建窗体
  5572. _taskbar = {
  5573. "id": str + _formdiv.id,
  5574. "style": {
  5575. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5576. },
  5577. "name": "思维导图",
  5578. "forms": _formdiv,
  5579. "click": function () {
  5580. U.MD.D.I.openApplication(str, obj, info);
  5581. }
  5582. }
  5583. break;
  5584. case "doc":
  5585. aTool = 6;
  5586. _iframe = $$("iframe", {
  5587. "frameborder": "no",
  5588. "border": "0",
  5589. "scrolling ": "no",
  5590. "style": {
  5591. "cssText": "border:0;width:100%;height:100%"
  5592. },
  5593. "src": "/Office/Word/WordEditArea.htm"
  5594. })
  5595. _box.appendChild(_iframe);
  5596. _box.appendChild(_jie);
  5597. _formdiv = new U.UF.UI.form(
  5598. "协同文档",
  5599. _box, {
  5600. "id": "doc" + cid + stage + task + tool,
  5601. "style": {
  5602. "width": "90%",
  5603. "height": "90%",
  5604. "overflow": 'hidden'
  5605. },
  5606. "onresize": function () { }
  5607. }, {
  5608. closecallback: function () { }
  5609. }, {
  5610. "style": {
  5611. "height": "36px"
  5612. }
  5613. }).form; //创建窗体
  5614. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5615. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5616. })
  5617. _taskbar = {
  5618. "id": str + _formdiv.id,
  5619. "style": {
  5620. "backgroundImage": "url(/img/icon/doc.png)"
  5621. },
  5622. "name": "协同文档",
  5623. "forms": _formdiv,
  5624. "click": function () {
  5625. U.MD.D.I.openApplication(str, obj, info);
  5626. }
  5627. }
  5628. break;
  5629. case "mindNetwork": //好友打开
  5630. aTool = 7;
  5631. _iframe = $$("iframe", {
  5632. "webkitallowfullscreen": "",
  5633. "mozallowfullscreen": "",
  5634. "allowfullscreen": "",
  5635. "frameborder": "no",
  5636. "border": "0",
  5637. "scrolling ": "no",
  5638. "style": {
  5639. "cssText": "border:0; width:100%; height:100%;"
  5640. },
  5641. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5642. })
  5643. _box.appendChild(_iframe);
  5644. _box.appendChild(_jie);
  5645. _formdiv = new U.UF.UI.form(
  5646. "思维网格",
  5647. _box, {
  5648. "id": "mindNetwork" + cid + stage + task + tool,
  5649. "style": {
  5650. "width": "90%",
  5651. "height": "90%",
  5652. "overflow": 'hidden'
  5653. },
  5654. "onresize": function () { }
  5655. }, {
  5656. closecallback: function () { }
  5657. }, {
  5658. "style": {
  5659. "height": "36px"
  5660. }
  5661. }).form; //创建窗体
  5662. _taskbar = {
  5663. "id": str + _formdiv.id,
  5664. "style": {
  5665. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5666. },
  5667. "name": "思维网格",
  5668. "forms": _formdiv,
  5669. "click": function () {
  5670. U.MD.D.I.openApplication(str, obj, info);
  5671. }
  5672. }
  5673. break;
  5674. case "courseDesign":
  5675. _iframe = $$("iframe", {
  5676. "webkitallowfullscreen": "",
  5677. "mozallowfullscreen": "",
  5678. "allowfullscreen": "",
  5679. "frameborder": "no",
  5680. "border": "0",
  5681. "scrolling ": "no",
  5682. "style": {
  5683. "cssText": "border:0; width:100%; height:100%;"
  5684. },
  5685. "src": "/course-design-vue"
  5686. })
  5687. _box.appendChild(_iframe);
  5688. _box.appendChild(_jie);
  5689. _formdiv = new U.UF.UI.form(
  5690. "项目设计",
  5691. _box, {
  5692. "id": "courseDesign" + cid + stage + task + tool,
  5693. "style": {
  5694. "width": "90%",
  5695. "height": "90%",
  5696. "overflow": 'hidden'
  5697. },
  5698. "onresize": function () { }
  5699. }, {
  5700. closecallback: function () { }
  5701. }, {
  5702. "style": {
  5703. "height": "36px"
  5704. }
  5705. }).form; //创建窗体
  5706. _taskbar = {
  5707. "id": str + _formdiv.id,
  5708. "style": {
  5709. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5710. },
  5711. "name": "项目设计",
  5712. "forms": _formdiv,
  5713. "click": function () {
  5714. U.MD.D.I.openApplication(str, obj, info);
  5715. }
  5716. }
  5717. break;
  5718. }
  5719. const script1 = document.createElement("script");
  5720. script1.type = "text/javascript";
  5721. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5722. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5723. const script2 = document.createElement("script");
  5724. script2.type = "text/javascript";
  5725. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5726. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5727. const script3 = document.createElement("script");
  5728. script3.type = "text/javascript";
  5729. script3.charset = "UTF-8";
  5730. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5731. const script4 = document.createElement("script");
  5732. script4.type = "text/javascript";
  5733. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5734. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5735. if (_iframe) {
  5736. if (str == 'doc') {
  5737. _iframe = _formdiv.querySelector('iframe')
  5738. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5739. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5740. _iframe.contentWindow.document.body.appendChild(script1);
  5741. _iframe.contentWindow.document.body.appendChild(script2);
  5742. // _iframe.contentWindow.document.body.appendChild(script3);
  5743. _iframe.contentWindow.document.body.appendChild(script4);
  5744. })
  5745. if (onloadListener) {
  5746. _iframe.contentDocument.location.reload()
  5747. } else {
  5748. _iframe.contentDocument.location.reload()
  5749. }
  5750. } else if (str == 'courseDesign') {
  5751. U.UF.DL.iframeLoad(_iframe, function () {
  5752. // _iframe.contentWindow.U.MD.O.W.load();
  5753. // _iframe.contentWindow.document.body.appendChild(script1);
  5754. _iframe.contentWindow.document.body.appendChild(script2);
  5755. _iframe.contentWindow.document.body.appendChild(script4);
  5756. })
  5757. } else if (str == 'mind') {
  5758. _iframe = _formdiv.querySelector('iframe')
  5759. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5760. //
  5761. _iframe.contentWindow.document.body.appendChild(script1);
  5762. _iframe.contentWindow.document.body.appendChild(script2);
  5763. _iframe.contentWindow.document.body.appendChild(script4);
  5764. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5765. })
  5766. if (onloadListener) {
  5767. _iframe.contentDocument.location.reload()
  5768. } else {
  5769. _iframe.contentDocument.location.reload()
  5770. }
  5771. } else if (str == 'whiteboard') {
  5772. _iframe = _formdiv.querySelector('iframe')
  5773. let onloadListener = _iframe.onload = () => {
  5774. _iframe.contentWindow.document.body.appendChild(script1);
  5775. _iframe.contentWindow.document.body.appendChild(script2);
  5776. _iframe.contentWindow.document.body.appendChild(script4);
  5777. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5778. };
  5779. if (onloadListener) {
  5780. _iframe.contentDocument.location.reload()
  5781. } else {
  5782. _iframe.contentDocument.location.reload()
  5783. }
  5784. } else {
  5785. _iframe.onload = () => {
  5786. _iframe.contentWindow.document.body.appendChild(script1);
  5787. _iframe.contentWindow.document.body.appendChild(script2);
  5788. // _iframe.contentWindow.document.body.appendChild(script3);
  5789. _iframe.contentWindow.document.body.appendChild(script4);
  5790. };
  5791. }
  5792. _jie.onclick = async () => {
  5793. let text = ''
  5794. if (aTool == 1) {
  5795. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5796. } else if (aTool == 6) {
  5797. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5798. } else if (aTool == 3) {
  5799. text = await U.MD.D.I.getEditorContent(_iframe);
  5800. }
  5801. _loading.style.display = 'flex'
  5802. console.log(_loading);
  5803. var _ajs = _iframe.contentWindow.document.createElement("script");
  5804. _ajs.type = "text/javascript";
  5805. _ajs.innerHTML =
  5806. // 'console.log(' + _loading + ');\n' +
  5807. 'var _js = document.createElement("script");\n' +
  5808. '_js.type="text/javascript";\n' +
  5809. '_js.charset="UTF-8";\n' +
  5810. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5811. "_js.onload = function(){\n" +
  5812. ' var a = document.getElementsByTagName("img")\n' +
  5813. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5814. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5815. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5816. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5817. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5818. "beforeUpload_shishi(file," +
  5819. "'" +
  5820. _userid +
  5821. "'" +
  5822. ", " +
  5823. "'" +
  5824. _cid +
  5825. "'" +
  5826. ", " +
  5827. "'" +
  5828. _stage +
  5829. "'" +
  5830. ", " +
  5831. "'" +
  5832. _task +
  5833. "'" +
  5834. ", " +
  5835. "'" +
  5836. _tool +
  5837. "'" +
  5838. ", " +
  5839. "'" +
  5840. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5841. "'" +
  5842. ", " +
  5843. "'" +
  5844. aTool +
  5845. "'" +
  5846. ", " +
  5847. "`" +
  5848. text +
  5849. "`" +
  5850. ")\n" +
  5851. " });\n" +
  5852. "}\n" +
  5853. "document.head.appendChild(_js);\n";
  5854. _iframe.contentWindow.document.head.appendChild(_ajs);
  5855. }
  5856. }
  5857. //U.MD.D.I.openClick(str);
  5858. //如果有任务栏信息
  5859. // if (_taskbar) {
  5860. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5861. // }
  5862. }
  5863. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5864. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5865. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5866. _userinfo = US.userInfo, //登录用户信息
  5867. _userid = US.userInfo.userid //登录用户id
  5868. let _iframe;
  5869. let _cid = cid,
  5870. _stage = stage,
  5871. _task = task,
  5872. _tool = tool;
  5873. var _jie = $$("div", {
  5874. "style": {
  5875. "position": "absolute",
  5876. "bottom": "50px",
  5877. "right": "50px",
  5878. "zIndex": "9999",
  5879. "backgroundColor": "#2268bc",
  5880. "color": "#fff",
  5881. "padding": "12px 20px",
  5882. "cursor": "pointer",
  5883. "borderRadius": "4px",
  5884. },
  5885. "innerHTML": "提交作业"
  5886. })
  5887. let aTool = ''
  5888. let _loading = document.createElement('div')
  5889. _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;"
  5890. // _loading.id = "";
  5891. let _lchild = document.createElement('div')
  5892. let _limg = document.createElement('img')
  5893. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5894. _limg.style = "width: 26px;margin-right: 10px;"
  5895. _lchild.appendChild(_limg)
  5896. let _lspan = document.createElement('span')
  5897. _lspan.innerHTML = "上传中..."
  5898. _lchild.appendChild(_lspan)
  5899. _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%);"
  5900. _loading.appendChild(_lchild)
  5901. var _box = $$('div', {
  5902. "style": {
  5903. "position": "relative",
  5904. "width": "100%",
  5905. "height": "100%",
  5906. },
  5907. })
  5908. _box.appendChild(_loading)
  5909. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5910. switch (str) {
  5911. case "whiteboard":
  5912. aTool = 1;
  5913. _iframe = $$("iframe", {
  5914. "frameborder": "no",
  5915. "border": "0",
  5916. "scrolling ": "no",
  5917. "style": {
  5918. "cssText": "border:0;width:100%;height:100%"
  5919. },
  5920. "src": "https://beta.iwb.cocorobo.cn/"
  5921. })
  5922. _box.appendChild(_iframe);
  5923. _box.appendChild(_jie);
  5924. _formdiv = new U.UF.UI.form(
  5925. "电子白板",
  5926. _box, {
  5927. "id": "whiteboard" + cid + stage + task + tool,
  5928. "style": {
  5929. "width": "90%",
  5930. "height": "90%",
  5931. "overflow": 'hidden'
  5932. },
  5933. "onresize": function () { }
  5934. }, {
  5935. closecallback: function () { }
  5936. }, {
  5937. "style": {
  5938. "height": "36px"
  5939. }
  5940. }).form; //创建窗体
  5941. _taskbar = {
  5942. "id": str + _formdiv.id,
  5943. "style": {
  5944. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5945. },
  5946. "name": "电子白板",
  5947. "forms": _formdiv,
  5948. "click": function () {
  5949. U.MD.D.I.openApplication(str, obj, info);
  5950. }
  5951. }
  5952. break;
  5953. case "mind":
  5954. aTool = 3;
  5955. _iframe = $$("iframe", {
  5956. "frameborder": "no",
  5957. "border": "0",
  5958. "scrolling ": "no",
  5959. "style": {
  5960. "cssText": "border:0;width:100%;height:100%"
  5961. },
  5962. "src": "/kityminder-editor/dist/index.html"
  5963. })
  5964. _box.appendChild(_iframe);
  5965. _box.appendChild(_jie);
  5966. _formdiv = new U.UF.UI.form(
  5967. "思维导图",
  5968. _box, { //"/jsmind/example/demo.html"
  5969. "id": "mind" + cid + stage + task + tool,
  5970. "style": {
  5971. "width": "90%",
  5972. "height": "90%",
  5973. "overflow": 'hidden'
  5974. },
  5975. "onresize": function () { }
  5976. }, {
  5977. closecallback: function () { }
  5978. }, {
  5979. "style": {
  5980. "height": "36px"
  5981. }
  5982. }).form; //创建窗体
  5983. _taskbar = {
  5984. "id": str + _formdiv.id,
  5985. "style": {
  5986. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5987. },
  5988. "name": "思维导图",
  5989. "forms": _formdiv,
  5990. "click": function () {
  5991. U.MD.D.I.openApplication(str, obj, info);
  5992. }
  5993. }
  5994. break;
  5995. case "MindMap":
  5996. aTool = 3;
  5997. _iframe = $$("iframe", {
  5998. "frameborder": "no",
  5999. "border": "0",
  6000. "scrolling ": "no",
  6001. "style": {
  6002. "cssText": "border:0;width:100%;height:100%"
  6003. },
  6004. "src": "//cloud.cocorobo.cn/mind/"
  6005. })
  6006. _box.appendChild(_iframe);
  6007. _box.appendChild(_jie);
  6008. _formdiv = new U.UF.UI.form(
  6009. "思维导图",
  6010. _box, { //"/jsmind/example/demo.html"
  6011. "id": "mind" + cid + stage + task + tool,
  6012. "style": {
  6013. "width": "90%",
  6014. "height": "90%",
  6015. "overflow": 'hidden'
  6016. },
  6017. "onresize": function () { }
  6018. }, {
  6019. closecallback: function () { }
  6020. }, {
  6021. "style": {
  6022. "height": "36px"
  6023. }
  6024. }).form; //创建窗体
  6025. _taskbar = {
  6026. "id": str + _formdiv.id,
  6027. "style": {
  6028. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6029. },
  6030. "name": "思维导图",
  6031. "forms": _formdiv,
  6032. "click": function () {
  6033. U.MD.D.I.openApplication(str, obj, info);
  6034. }
  6035. }
  6036. break;
  6037. case "doc":
  6038. aTool = 6;
  6039. _iframe = $$("iframe", {
  6040. "frameborder": "no",
  6041. "border": "0",
  6042. "scrolling ": "no",
  6043. "style": {
  6044. "cssText": "border:0;width:100%;height:100%"
  6045. },
  6046. "src": "/Office/Word/WordEditArea.htm"
  6047. })
  6048. _box.appendChild(_iframe);
  6049. _box.appendChild(_jie);
  6050. _formdiv = new U.UF.UI.form(
  6051. "协同文档",
  6052. _box, {
  6053. "id": "doc" + cid + stage + task + tool,
  6054. "style": {
  6055. "width": "90%",
  6056. "height": "90%",
  6057. "overflow": 'hidden'
  6058. },
  6059. "onresize": function () { }
  6060. }, {
  6061. closecallback: function () { }
  6062. }, {
  6063. "style": {
  6064. "height": "36px"
  6065. }
  6066. }).form; //创建窗体
  6067. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6068. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6069. })
  6070. _taskbar = {
  6071. "id": str + _formdiv.id,
  6072. "style": {
  6073. "backgroundImage": "url(/img/icon/doc.png)"
  6074. },
  6075. "name": "协同文档",
  6076. "forms": _formdiv,
  6077. "click": function () {
  6078. U.MD.D.I.openApplication(str, obj, info);
  6079. }
  6080. }
  6081. break;
  6082. case "mindNetwork": //好友打开
  6083. aTool = 7;
  6084. _iframe = $$("iframe", {
  6085. "webkitallowfullscreen": "",
  6086. "mozallowfullscreen": "",
  6087. "allowfullscreen": "",
  6088. "frameborder": "no",
  6089. "border": "0",
  6090. "scrolling ": "no",
  6091. "style": {
  6092. "cssText": "border:0; width:100%; height:100%;"
  6093. },
  6094. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6095. })
  6096. _box.appendChild(_iframe);
  6097. _box.appendChild(_jie);
  6098. _formdiv = new U.UF.UI.form(
  6099. "思维网格",
  6100. _box, {
  6101. "id": "mindNetwork" + cid + stage + task + tool,
  6102. "style": {
  6103. "width": "90%",
  6104. "height": "90%",
  6105. "overflow": 'hidden'
  6106. },
  6107. "onresize": function () { }
  6108. }, {
  6109. closecallback: function () { }
  6110. }, {
  6111. "style": {
  6112. "height": "36px"
  6113. }
  6114. }).form; //创建窗体
  6115. _taskbar = {
  6116. "id": str + _formdiv.id,
  6117. "style": {
  6118. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6119. },
  6120. "name": "思维网格",
  6121. "forms": _formdiv,
  6122. "click": function () {
  6123. U.MD.D.I.openApplication(str, obj, info);
  6124. }
  6125. }
  6126. break;
  6127. case "courseDesign":
  6128. _iframe = $$("iframe", {
  6129. "webkitallowfullscreen": "",
  6130. "mozallowfullscreen": "",
  6131. "allowfullscreen": "",
  6132. "frameborder": "no",
  6133. "border": "0",
  6134. "scrolling ": "no",
  6135. "style": {
  6136. "cssText": "border:0; width:100%; height:100%;"
  6137. },
  6138. "src": "/course-design-vue"
  6139. })
  6140. _box.appendChild(_iframe);
  6141. _box.appendChild(_jie);
  6142. _formdiv = new U.UF.UI.form(
  6143. "项目设计",
  6144. _box, {
  6145. "id": "courseDesign" + cid + stage + task + tool,
  6146. "style": {
  6147. "width": "90%",
  6148. "height": "90%",
  6149. "overflow": 'hidden'
  6150. },
  6151. "onresize": function () { }
  6152. }, {
  6153. closecallback: function () { }
  6154. }, {
  6155. "style": {
  6156. "height": "36px"
  6157. }
  6158. }).form; //创建窗体
  6159. _taskbar = {
  6160. "id": str + _formdiv.id,
  6161. "style": {
  6162. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6163. },
  6164. "name": "项目设计",
  6165. "forms": _formdiv,
  6166. "click": function () {
  6167. U.MD.D.I.openApplication(str, obj, info);
  6168. }
  6169. }
  6170. break;
  6171. }
  6172. const script1 = document.createElement("script");
  6173. script1.type = "text/javascript";
  6174. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6175. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6176. const script2 = document.createElement("script");
  6177. script2.type = "text/javascript";
  6178. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6179. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6180. const script3 = document.createElement("script");
  6181. script3.type = "text/javascript";
  6182. script3.charset = "UTF-8";
  6183. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6184. const script4 = document.createElement("script");
  6185. script4.type = "text/javascript";
  6186. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6187. script4.src = window.origin + "/js/Common/jietu2E.js";
  6188. if (_iframe) {
  6189. if (str == 'doc') {
  6190. _iframe = _formdiv.querySelector('iframe')
  6191. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6192. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6193. _iframe.contentWindow.document.body.appendChild(script1);
  6194. _iframe.contentWindow.document.body.appendChild(script2);
  6195. // _iframe.contentWindow.document.body.appendChild(script3);
  6196. _iframe.contentWindow.document.body.appendChild(script4);
  6197. })
  6198. if (onloadListener) {
  6199. _iframe.contentDocument.location.reload()
  6200. } else {
  6201. _iframe.contentDocument.location.reload()
  6202. }
  6203. } else if (str == 'courseDesign') {
  6204. U.UF.DL.iframeLoad(_iframe, function () {
  6205. // _iframe.contentWindow.U.MD.O.W.load();
  6206. // _iframe.contentWindow.document.body.appendChild(script1);
  6207. _iframe.contentWindow.document.body.appendChild(script2);
  6208. _iframe.contentWindow.document.body.appendChild(script4);
  6209. })
  6210. } else if (str == 'mind') {
  6211. _iframe = _formdiv.querySelector('iframe')
  6212. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6213. //
  6214. _iframe.contentWindow.document.body.appendChild(script1);
  6215. _iframe.contentWindow.document.body.appendChild(script2);
  6216. _iframe.contentWindow.document.body.appendChild(script4);
  6217. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6218. })
  6219. if (onloadListener) {
  6220. _iframe.contentDocument.location.reload()
  6221. } else {
  6222. _iframe.contentDocument.location.reload()
  6223. }
  6224. } else if (str == 'whiteboard') {
  6225. _iframe = _formdiv.querySelector('iframe')
  6226. let onloadListener = _iframe.onload = () => {
  6227. _iframe.contentWindow.document.body.appendChild(script1);
  6228. _iframe.contentWindow.document.body.appendChild(script2);
  6229. _iframe.contentWindow.document.body.appendChild(script4);
  6230. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6231. };
  6232. if (onloadListener) {
  6233. _iframe.contentDocument.location.reload()
  6234. } else {
  6235. _iframe.contentDocument.location.reload()
  6236. }
  6237. } else {
  6238. _iframe.onload = () => {
  6239. _iframe.contentWindow.document.body.appendChild(script1);
  6240. _iframe.contentWindow.document.body.appendChild(script2);
  6241. // _iframe.contentWindow.document.body.appendChild(script3);
  6242. _iframe.contentWindow.document.body.appendChild(script4);
  6243. };
  6244. }
  6245. _jie.onclick = async () => {
  6246. let text = ''
  6247. if (aTool == 1) {
  6248. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6249. } else if (aTool == 6) {
  6250. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6251. } else if (aTool == 3) {
  6252. text = await U.MD.D.I.getEditorContent(_iframe);
  6253. }
  6254. _loading.style.display = 'flex'
  6255. console.log(_loading);
  6256. var _ajs = _iframe.contentWindow.document.createElement("script");
  6257. _ajs.type = "text/javascript";
  6258. _ajs.innerHTML =
  6259. // 'console.log(' + _loading + ');\n' +
  6260. 'var _js = document.createElement("script");\n' +
  6261. '_js.type="text/javascript";\n' +
  6262. '_js.charset="UTF-8";\n' +
  6263. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6264. "_js.onload = function(){\n" +
  6265. ' var a = document.getElementsByTagName("img")\n' +
  6266. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6267. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6268. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6269. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6270. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6271. "beforeUpload_shishi(file," +
  6272. "'" +
  6273. _userid +
  6274. "'" +
  6275. ", " +
  6276. "'" +
  6277. _cid +
  6278. "'" +
  6279. ", " +
  6280. "'" +
  6281. _stage +
  6282. "'" +
  6283. ", " +
  6284. "'" +
  6285. _task +
  6286. "'" +
  6287. ", " +
  6288. "'" +
  6289. _tool +
  6290. "'" +
  6291. ", " +
  6292. "'" +
  6293. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6294. "'" +
  6295. ", " +
  6296. "'" +
  6297. aTool +
  6298. "'" +
  6299. ", " +
  6300. "`" +
  6301. text +
  6302. "`" +
  6303. ")\n" +
  6304. " });\n" +
  6305. "}\n" +
  6306. "document.head.appendChild(_js);\n";
  6307. _iframe.contentWindow.document.head.appendChild(_ajs);
  6308. }
  6309. }
  6310. //U.MD.D.I.openClick(str);
  6311. //如果有任务栏信息
  6312. // if (_taskbar) {
  6313. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6314. // }
  6315. }
  6316. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6317. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6318. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6319. _userid = student.userid, //登录用户id
  6320. _username = student.student //用户名字
  6321. let _iframe;
  6322. let _cid = cid,
  6323. _stage = stage,
  6324. _task = task,
  6325. _tool = tool;
  6326. var _jie = $$("div", {
  6327. "style": {
  6328. "position": "absolute",
  6329. "bottom": "50px",
  6330. "right": "50px",
  6331. "zIndex": "9999",
  6332. "backgroundColor": "#2268bc",
  6333. "color": "#fff",
  6334. "padding": "12px 20px",
  6335. "cursor": "pointer",
  6336. "borderRadius": "4px",
  6337. },
  6338. "innerHTML": "提交作业"
  6339. })
  6340. let aTool = ''
  6341. let _loading = document.createElement('div')
  6342. _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;"
  6343. // _loading.id = "";
  6344. let _lchild = document.createElement('div')
  6345. let _limg = document.createElement('img')
  6346. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6347. _limg.style = "width: 26px;margin-right: 10px;"
  6348. _lchild.appendChild(_limg)
  6349. let _lspan = document.createElement('span')
  6350. _lspan.innerHTML = "上传中..."
  6351. _lchild.appendChild(_lspan)
  6352. _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%);"
  6353. _loading.appendChild(_lchild)
  6354. var _box = $$('div', {
  6355. "style": {
  6356. "position": "relative",
  6357. "width": "100%",
  6358. "height": "100%",
  6359. },
  6360. })
  6361. _box.appendChild(_loading)
  6362. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6363. switch (str) {
  6364. case "whiteboard":
  6365. aTool = 1;
  6366. _iframe = $$("iframe", {
  6367. "frameborder": "no",
  6368. "border": "0",
  6369. "scrolling ": "no",
  6370. "style": {
  6371. "cssText": "border:0;width:100%;height:100%"
  6372. },
  6373. "src": "https://beta.iwb.cocorobo.cn/"
  6374. })
  6375. _box.appendChild(_iframe);
  6376. _box.appendChild(_jie);
  6377. _formdiv = new U.UF.UI.form(
  6378. "电子白板-" + _username,
  6379. _box, {
  6380. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6381. "style": {
  6382. "width": "90%",
  6383. "height": "90%",
  6384. "overflow": 'hidden'
  6385. },
  6386. "onresize": function () { }
  6387. }, {
  6388. closecallback: function () { }
  6389. }, {
  6390. "style": {
  6391. "height": "36px"
  6392. }
  6393. }).form; //创建窗体
  6394. _taskbar = {
  6395. "id": str + _formdiv.id,
  6396. "style": {
  6397. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6398. },
  6399. "name": "电子白板",
  6400. "forms": _formdiv,
  6401. "click": function () {
  6402. U.MD.D.I.openApplication(str, obj, info);
  6403. }
  6404. }
  6405. break;
  6406. case "mind":
  6407. aTool = 3;
  6408. _iframe = $$("iframe", {
  6409. "frameborder": "no",
  6410. "border": "0",
  6411. "scrolling ": "no",
  6412. "style": {
  6413. "cssText": "border:0;width:100%;height:100%"
  6414. },
  6415. "src": "/kityminder-editor/dist/index.html"
  6416. })
  6417. _box.appendChild(_iframe);
  6418. _box.appendChild(_jie);
  6419. _formdiv = new U.UF.UI.form(
  6420. "思维导图-" + _username,
  6421. _box, { //"/jsmind/example/demo.html"
  6422. "id": "mind" + cid + stage + task + tool + _userid,
  6423. "style": {
  6424. "width": "90%",
  6425. "height": "90%",
  6426. "overflow": 'hidden'
  6427. },
  6428. "onresize": function () { }
  6429. }, {
  6430. closecallback: function () { }
  6431. }, {
  6432. "style": {
  6433. "height": "36px"
  6434. }
  6435. }).form; //创建窗体
  6436. _taskbar = {
  6437. "id": str + _formdiv.id,
  6438. "style": {
  6439. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6440. },
  6441. "name": "思维导图",
  6442. "forms": _formdiv,
  6443. "click": function () {
  6444. U.MD.D.I.openApplication(str, obj, info);
  6445. }
  6446. }
  6447. break;
  6448. case "MindMap":
  6449. aTool = 3;
  6450. _iframe = $$("iframe", {
  6451. "frameborder": "no",
  6452. "border": "0",
  6453. "scrolling ": "no",
  6454. "style": {
  6455. "cssText": "border:0;width:100%;height:100%"
  6456. },
  6457. "src": "//cloud.cocorobo.cn/mind/"
  6458. })
  6459. _box.appendChild(_iframe);
  6460. _box.appendChild(_jie);
  6461. _formdiv = new U.UF.UI.form(
  6462. "思维导图-" + _username,
  6463. _box, { //"/jsmind/example/demo.html"
  6464. "id": "mind" + cid + stage + task + tool + _userid,
  6465. "style": {
  6466. "width": "90%",
  6467. "height": "90%",
  6468. "overflow": 'hidden'
  6469. },
  6470. "onresize": function () { }
  6471. }, {
  6472. closecallback: function () { }
  6473. }, {
  6474. "style": {
  6475. "height": "36px"
  6476. }
  6477. }).form; //创建窗体
  6478. _taskbar = {
  6479. "id": str + _formdiv.id,
  6480. "style": {
  6481. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6482. },
  6483. "name": "思维导图",
  6484. "forms": _formdiv,
  6485. "click": function () {
  6486. U.MD.D.I.openApplication(str, obj, info);
  6487. }
  6488. }
  6489. break;
  6490. case "doc":
  6491. aTool = 6;
  6492. _iframe = $$("iframe", {
  6493. "frameborder": "no",
  6494. "border": "0",
  6495. "scrolling ": "no",
  6496. "style": {
  6497. "cssText": "border:0;width:100%;height:100%"
  6498. },
  6499. "src": "/Office/Word/WordEditArea.htm"
  6500. })
  6501. _box.appendChild(_iframe);
  6502. _box.appendChild(_jie);
  6503. _formdiv = new U.UF.UI.form(
  6504. "协同文档-" + _username,
  6505. _box, {
  6506. "id": "doc" + cid + stage + task + tool + _userid,
  6507. "style": {
  6508. "width": "90%",
  6509. "height": "90%",
  6510. "overflow": 'hidden'
  6511. },
  6512. "onresize": function () { }
  6513. }, {
  6514. closecallback: function () { }
  6515. }, {
  6516. "style": {
  6517. "height": "36px"
  6518. }
  6519. }).form; //创建窗体
  6520. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6521. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6522. })
  6523. _taskbar = {
  6524. "id": str + _formdiv.id,
  6525. "style": {
  6526. "backgroundImage": "url(/img/icon/doc.png)"
  6527. },
  6528. "name": "协同文档",
  6529. "forms": _formdiv,
  6530. "click": function () {
  6531. U.MD.D.I.openApplication(str, obj, info);
  6532. }
  6533. }
  6534. break;
  6535. case "mindNetwork": //好友打开
  6536. aTool = 7;
  6537. _iframe = $$("iframe", {
  6538. "webkitallowfullscreen": "",
  6539. "mozallowfullscreen": "",
  6540. "allowfullscreen": "",
  6541. "frameborder": "no",
  6542. "border": "0",
  6543. "scrolling ": "no",
  6544. "style": {
  6545. "cssText": "border:0; width:100%; height:100%;"
  6546. },
  6547. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6548. })
  6549. _box.appendChild(_iframe);
  6550. _box.appendChild(_jie);
  6551. _formdiv = new U.UF.UI.form(
  6552. "思维网格-" + _username,
  6553. _box, {
  6554. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6555. "style": {
  6556. "width": "90%",
  6557. "height": "90%",
  6558. "overflow": 'hidden'
  6559. },
  6560. "onresize": function () { }
  6561. }, {
  6562. closecallback: function () { }
  6563. }, {
  6564. "style": {
  6565. "height": "36px"
  6566. }
  6567. }).form; //创建窗体
  6568. _taskbar = {
  6569. "id": str + _formdiv.id,
  6570. "style": {
  6571. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6572. },
  6573. "name": "思维网格",
  6574. "forms": _formdiv,
  6575. "click": function () {
  6576. U.MD.D.I.openApplication(str, obj, info);
  6577. }
  6578. }
  6579. break;
  6580. case "courseDesign":
  6581. _iframe = $$("iframe", {
  6582. "webkitallowfullscreen": "",
  6583. "mozallowfullscreen": "",
  6584. "allowfullscreen": "",
  6585. "frameborder": "no",
  6586. "border": "0",
  6587. "scrolling ": "no",
  6588. "style": {
  6589. "cssText": "border:0; width:100%; height:100%;"
  6590. },
  6591. "src": "/course-design-vue"
  6592. })
  6593. _box.appendChild(_iframe);
  6594. _box.appendChild(_jie);
  6595. _formdiv = new U.UF.UI.form(
  6596. "项目设计-" + _username,
  6597. _box, {
  6598. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6599. "style": {
  6600. "width": "90%",
  6601. "height": "90%",
  6602. "overflow": 'hidden'
  6603. },
  6604. "onresize": function () { }
  6605. }, {
  6606. closecallback: function () { }
  6607. }, {
  6608. "style": {
  6609. "height": "36px"
  6610. }
  6611. }).form; //创建窗体
  6612. _taskbar = {
  6613. "id": str + _formdiv.id,
  6614. "style": {
  6615. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6616. },
  6617. "name": "项目设计",
  6618. "forms": _formdiv,
  6619. "click": function () {
  6620. U.MD.D.I.openApplication(str, obj, info);
  6621. }
  6622. }
  6623. break;
  6624. }
  6625. const script1 = document.createElement("script");
  6626. script1.type = "text/javascript";
  6627. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6628. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6629. const script2 = document.createElement("script");
  6630. script2.type = "text/javascript";
  6631. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6632. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6633. const script3 = document.createElement("script");
  6634. script3.type = "text/javascript";
  6635. script3.charset = "UTF-8";
  6636. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6637. const script4 = document.createElement("script");
  6638. script4.type = "text/javascript";
  6639. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6640. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6641. if (_iframe) {
  6642. if (str == 'doc') {
  6643. _iframe = _formdiv.querySelector('iframe')
  6644. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6645. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6646. _iframe.contentWindow.document.body.appendChild(script1);
  6647. _iframe.contentWindow.document.body.appendChild(script2);
  6648. // _iframe.contentWindow.document.body.appendChild(script3);
  6649. _iframe.contentWindow.document.body.appendChild(script4);
  6650. })
  6651. if (onloadListener) {
  6652. _iframe.contentDocument.location.reload()
  6653. } else {
  6654. _iframe.contentDocument.location.reload()
  6655. }
  6656. } else if (str == 'courseDesign') {
  6657. U.UF.DL.iframeLoad(_iframe, function () {
  6658. // _iframe.contentWindow.U.MD.O.W.load();
  6659. // _iframe.contentWindow.document.body.appendChild(script1);
  6660. _iframe.contentWindow.document.body.appendChild(script2);
  6661. _iframe.contentWindow.document.body.appendChild(script4);
  6662. })
  6663. } else if (str == 'mind') {
  6664. _iframe = _formdiv.querySelector('iframe')
  6665. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6666. //
  6667. _iframe.contentWindow.document.body.appendChild(script1);
  6668. _iframe.contentWindow.document.body.appendChild(script2);
  6669. _iframe.contentWindow.document.body.appendChild(script4);
  6670. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6671. })
  6672. if (onloadListener) {
  6673. _iframe.contentDocument.location.reload()
  6674. } else {
  6675. _iframe.contentDocument.location.reload()
  6676. }
  6677. } else if (str == 'whiteboard') {
  6678. _iframe = _formdiv.querySelector('iframe')
  6679. let onloadListener = _iframe.onload = () => {
  6680. _iframe.contentWindow.document.body.appendChild(script1);
  6681. _iframe.contentWindow.document.body.appendChild(script2);
  6682. _iframe.contentWindow.document.body.appendChild(script4);
  6683. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6684. };
  6685. if (onloadListener) {
  6686. _iframe.contentDocument.location.reload()
  6687. } else {
  6688. _iframe.contentDocument.location.reload()
  6689. }
  6690. } else {
  6691. _iframe.onload = () => {
  6692. _iframe.contentWindow.document.body.appendChild(script1);
  6693. _iframe.contentWindow.document.body.appendChild(script2);
  6694. // _iframe.contentWindow.document.body.appendChild(script3);
  6695. _iframe.contentWindow.document.body.appendChild(script4);
  6696. };
  6697. }
  6698. _jie.onclick = async () => {
  6699. let text = ''
  6700. if (aTool == 1) {
  6701. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6702. } else if (aTool == 6) {
  6703. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6704. } else if (aTool == 3) {
  6705. text = await U.MD.D.I.getEditorContent(_iframe);
  6706. }
  6707. _loading.style.display = 'flex'
  6708. console.log(_loading);
  6709. var _ajs = _iframe.contentWindow.document.createElement("script");
  6710. _ajs.type = "text/javascript";
  6711. _ajs.innerHTML =
  6712. // 'console.log(' + _loading + ');\n' +
  6713. 'var _js = document.createElement("script");\n' +
  6714. '_js.type="text/javascript";\n' +
  6715. '_js.charset="UTF-8";\n' +
  6716. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6717. "_js.onload = function(){\n" +
  6718. ' var a = document.getElementsByTagName("img")\n' +
  6719. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6720. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6721. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6722. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6723. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6724. "beforeUpload_shishi(file," +
  6725. "'" +
  6726. _userid +
  6727. "'" +
  6728. ", " +
  6729. "'" +
  6730. _cid +
  6731. "'" +
  6732. ", " +
  6733. "'" +
  6734. _stage +
  6735. "'" +
  6736. ", " +
  6737. "'" +
  6738. _task +
  6739. "'" +
  6740. ", " +
  6741. "'" +
  6742. _tool +
  6743. "'" +
  6744. ", " +
  6745. "'" +
  6746. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6747. "'" +
  6748. ", " +
  6749. "'" +
  6750. aTool +
  6751. "'" +
  6752. ", " +
  6753. "`" +
  6754. text +
  6755. "`" +
  6756. ")\n" +
  6757. " });\n" +
  6758. "}\n" +
  6759. "document.head.appendChild(_js);\n";
  6760. _iframe.contentWindow.document.head.appendChild(_ajs);
  6761. }
  6762. }
  6763. }
  6764. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6765. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6766. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6767. _userid = student.userid, //登录用户id
  6768. _username = student.student //用户名字
  6769. let _iframe;
  6770. let _cid = cid,
  6771. _stage = stage,
  6772. _task = task,
  6773. _tool = tool;
  6774. var _jie = $$("div", {
  6775. "style": {
  6776. "position": "absolute",
  6777. "bottom": "50px",
  6778. "right": "50px",
  6779. "zIndex": "9999",
  6780. "backgroundColor": "#2268bc",
  6781. "color": "#fff",
  6782. "padding": "12px 20px",
  6783. "cursor": "pointer",
  6784. "borderRadius": "4px",
  6785. },
  6786. "innerHTML": "提交作业"
  6787. })
  6788. let aTool = ''
  6789. let _loading = document.createElement('div')
  6790. _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;"
  6791. // _loading.id = "";
  6792. let _lchild = document.createElement('div')
  6793. let _limg = document.createElement('img')
  6794. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6795. _limg.style = "width: 26px;margin-right: 10px;"
  6796. _lchild.appendChild(_limg)
  6797. let _lspan = document.createElement('span')
  6798. _lspan.innerHTML = "上传中..."
  6799. _lchild.appendChild(_lspan)
  6800. _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%);"
  6801. _loading.appendChild(_lchild)
  6802. var _box = $$('div', {
  6803. "style": {
  6804. "position": "relative",
  6805. "width": "100%",
  6806. "height": "100%",
  6807. },
  6808. })
  6809. _box.appendChild(_loading)
  6810. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6811. switch (str) {
  6812. case "whiteboard":
  6813. aTool = 1;
  6814. _iframe = $$("iframe", {
  6815. "frameborder": "no",
  6816. "border": "0",
  6817. "scrolling ": "no",
  6818. "style": {
  6819. "cssText": "border:0;width:100%;height:100%"
  6820. },
  6821. "src": "https://beta.iwb.cocorobo.cn/"
  6822. })
  6823. _box.appendChild(_iframe);
  6824. _box.appendChild(_jie);
  6825. _formdiv = new U.UF.UI.form(
  6826. "电子白板-" + _username,
  6827. _box, {
  6828. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6829. "style": {
  6830. "width": "90%",
  6831. "height": "90%",
  6832. "overflow": 'hidden'
  6833. },
  6834. "onresize": function () { }
  6835. }, {
  6836. closecallback: function () { }
  6837. }, {
  6838. "style": {
  6839. "height": "36px"
  6840. }
  6841. }).form; //创建窗体
  6842. _taskbar = {
  6843. "id": str + _formdiv.id,
  6844. "style": {
  6845. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6846. },
  6847. "name": "电子白板",
  6848. "forms": _formdiv,
  6849. "click": function () {
  6850. U.MD.D.I.openApplication(str, obj, info);
  6851. }
  6852. }
  6853. break;
  6854. case "mind":
  6855. aTool = 3;
  6856. _iframe = $$("iframe", {
  6857. "frameborder": "no",
  6858. "border": "0",
  6859. "scrolling ": "no",
  6860. "style": {
  6861. "cssText": "border:0;width:100%;height:100%"
  6862. },
  6863. "src": "/kityminder-editor/dist/index.html"
  6864. })
  6865. _box.appendChild(_iframe);
  6866. _box.appendChild(_jie);
  6867. _formdiv = new U.UF.UI.form(
  6868. "思维导图-" + _username,
  6869. _box, { //"/jsmind/example/demo.html"
  6870. "id": "mind" + cid + stage + task + tool + _userid,
  6871. "style": {
  6872. "width": "90%",
  6873. "height": "90%",
  6874. "overflow": 'hidden'
  6875. },
  6876. "onresize": function () { }
  6877. }, {
  6878. closecallback: function () { }
  6879. }, {
  6880. "style": {
  6881. "height": "36px"
  6882. }
  6883. }).form; //创建窗体
  6884. _taskbar = {
  6885. "id": str + _formdiv.id,
  6886. "style": {
  6887. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6888. },
  6889. "name": "思维导图",
  6890. "forms": _formdiv,
  6891. "click": function () {
  6892. U.MD.D.I.openApplication(str, obj, info);
  6893. }
  6894. }
  6895. break;
  6896. case "MindMap":
  6897. aTool = 3;
  6898. _iframe = $$("iframe", {
  6899. "frameborder": "no",
  6900. "border": "0",
  6901. "scrolling ": "no",
  6902. "style": {
  6903. "cssText": "border:0;width:100%;height:100%"
  6904. },
  6905. "src": "//cloud.cocorobo.cn/mind/"
  6906. })
  6907. _box.appendChild(_iframe);
  6908. _box.appendChild(_jie);
  6909. _formdiv = new U.UF.UI.form(
  6910. "思维导图-" + _username,
  6911. _box, { //"/jsmind/example/demo.html"
  6912. "id": "mind" + cid + stage + task + tool + _userid,
  6913. "style": {
  6914. "width": "90%",
  6915. "height": "90%",
  6916. "overflow": 'hidden'
  6917. },
  6918. "onresize": function () { }
  6919. }, {
  6920. closecallback: function () { }
  6921. }, {
  6922. "style": {
  6923. "height": "36px"
  6924. }
  6925. }).form; //创建窗体
  6926. _taskbar = {
  6927. "id": str + _formdiv.id,
  6928. "style": {
  6929. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6930. },
  6931. "name": "思维导图",
  6932. "forms": _formdiv,
  6933. "click": function () {
  6934. U.MD.D.I.openApplication(str, obj, info);
  6935. }
  6936. }
  6937. break;
  6938. case "doc":
  6939. aTool = 6;
  6940. _iframe = $$("iframe", {
  6941. "frameborder": "no",
  6942. "border": "0",
  6943. "scrolling ": "no",
  6944. "style": {
  6945. "cssText": "border:0;width:100%;height:100%"
  6946. },
  6947. "src": "/Office/Word/WordEditArea.htm"
  6948. })
  6949. _box.appendChild(_iframe);
  6950. _box.appendChild(_jie);
  6951. _formdiv = new U.UF.UI.form(
  6952. "协同文档-" + _username,
  6953. _box, {
  6954. "id": "doc" + cid + stage + task + tool + _userid,
  6955. "style": {
  6956. "width": "90%",
  6957. "height": "90%",
  6958. "overflow": 'hidden'
  6959. },
  6960. "onresize": function () { }
  6961. }, {
  6962. closecallback: function () { }
  6963. }, {
  6964. "style": {
  6965. "height": "36px"
  6966. }
  6967. }).form; //创建窗体
  6968. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6969. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6970. })
  6971. _taskbar = {
  6972. "id": str + _formdiv.id,
  6973. "style": {
  6974. "backgroundImage": "url(/img/icon/doc.png)"
  6975. },
  6976. "name": "协同文档",
  6977. "forms": _formdiv,
  6978. "click": function () {
  6979. U.MD.D.I.openApplication(str, obj, info);
  6980. }
  6981. }
  6982. break;
  6983. case "mindNetwork": //好友打开
  6984. aTool = 7;
  6985. _iframe = $$("iframe", {
  6986. "webkitallowfullscreen": "",
  6987. "mozallowfullscreen": "",
  6988. "allowfullscreen": "",
  6989. "frameborder": "no",
  6990. "border": "0",
  6991. "scrolling ": "no",
  6992. "style": {
  6993. "cssText": "border:0; width:100%; height:100%;"
  6994. },
  6995. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6996. })
  6997. _box.appendChild(_iframe);
  6998. _box.appendChild(_jie);
  6999. _formdiv = new U.UF.UI.form(
  7000. "思维网格-" + _username,
  7001. _box, {
  7002. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7003. "style": {
  7004. "width": "90%",
  7005. "height": "90%",
  7006. "overflow": 'hidden'
  7007. },
  7008. "onresize": function () { }
  7009. }, {
  7010. closecallback: function () { }
  7011. }, {
  7012. "style": {
  7013. "height": "36px"
  7014. }
  7015. }).form; //创建窗体
  7016. _taskbar = {
  7017. "id": str + _formdiv.id,
  7018. "style": {
  7019. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7020. },
  7021. "name": "思维网格",
  7022. "forms": _formdiv,
  7023. "click": function () {
  7024. U.MD.D.I.openApplication(str, obj, info);
  7025. }
  7026. }
  7027. break;
  7028. case "courseDesign":
  7029. _iframe = $$("iframe", {
  7030. "webkitallowfullscreen": "",
  7031. "mozallowfullscreen": "",
  7032. "allowfullscreen": "",
  7033. "frameborder": "no",
  7034. "border": "0",
  7035. "scrolling ": "no",
  7036. "style": {
  7037. "cssText": "border:0; width:100%; height:100%;"
  7038. },
  7039. "src": "/course-design-vue"
  7040. })
  7041. _box.appendChild(_iframe);
  7042. _box.appendChild(_jie);
  7043. _formdiv = new U.UF.UI.form(
  7044. "项目设计-" + _username,
  7045. _box, {
  7046. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7047. "style": {
  7048. "width": "90%",
  7049. "height": "90%",
  7050. "overflow": 'hidden'
  7051. },
  7052. "onresize": function () { }
  7053. }, {
  7054. closecallback: function () { }
  7055. }, {
  7056. "style": {
  7057. "height": "36px"
  7058. }
  7059. }).form; //创建窗体
  7060. _taskbar = {
  7061. "id": str + _formdiv.id,
  7062. "style": {
  7063. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7064. },
  7065. "name": "项目设计",
  7066. "forms": _formdiv,
  7067. "click": function () {
  7068. U.MD.D.I.openApplication(str, obj, info);
  7069. }
  7070. }
  7071. break;
  7072. }
  7073. const script1 = document.createElement("script");
  7074. script1.type = "text/javascript";
  7075. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7076. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7077. const script2 = document.createElement("script");
  7078. script2.type = "text/javascript";
  7079. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7080. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7081. const script3 = document.createElement("script");
  7082. script3.type = "text/javascript";
  7083. script3.charset = "UTF-8";
  7084. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7085. const script4 = document.createElement("script");
  7086. script4.type = "text/javascript";
  7087. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7088. script4.src = window.origin + "/js/Common/jietu2E.js";
  7089. if (_iframe) {
  7090. if (str == 'doc') {
  7091. _iframe = _formdiv.querySelector('iframe')
  7092. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7093. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7094. _iframe.contentWindow.document.body.appendChild(script1);
  7095. _iframe.contentWindow.document.body.appendChild(script2);
  7096. // _iframe.contentWindow.document.body.appendChild(script3);
  7097. _iframe.contentWindow.document.body.appendChild(script4);
  7098. })
  7099. if (onloadListener) {
  7100. _iframe.contentDocument.location.reload()
  7101. } else {
  7102. _iframe.contentDocument.location.reload()
  7103. }
  7104. } else if (str == 'courseDesign') {
  7105. U.UF.DL.iframeLoad(_iframe, function () {
  7106. // _iframe.contentWindow.U.MD.O.W.load();
  7107. // _iframe.contentWindow.document.body.appendChild(script1);
  7108. _iframe.contentWindow.document.body.appendChild(script2);
  7109. _iframe.contentWindow.document.body.appendChild(script4);
  7110. })
  7111. } else if (str == 'mind') {
  7112. _iframe = _formdiv.querySelector('iframe')
  7113. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7114. //
  7115. _iframe.contentWindow.document.body.appendChild(script1);
  7116. _iframe.contentWindow.document.body.appendChild(script2);
  7117. _iframe.contentWindow.document.body.appendChild(script4);
  7118. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7119. })
  7120. if (onloadListener) {
  7121. _iframe.contentDocument.location.reload()
  7122. } else {
  7123. _iframe.contentDocument.location.reload()
  7124. }
  7125. } else if (str == 'whiteboard') {
  7126. _iframe = _formdiv.querySelector('iframe')
  7127. let onloadListener = _iframe.onload = () => {
  7128. _iframe.contentWindow.document.body.appendChild(script1);
  7129. _iframe.contentWindow.document.body.appendChild(script2);
  7130. _iframe.contentWindow.document.body.appendChild(script4);
  7131. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7132. };
  7133. if (onloadListener) {
  7134. _iframe.contentDocument.location.reload()
  7135. } else {
  7136. _iframe.contentDocument.location.reload()
  7137. }
  7138. } else {
  7139. _iframe.onload = () => {
  7140. _iframe.contentWindow.document.body.appendChild(script1);
  7141. _iframe.contentWindow.document.body.appendChild(script2);
  7142. // _iframe.contentWindow.document.body.appendChild(script3);
  7143. _iframe.contentWindow.document.body.appendChild(script4);
  7144. };
  7145. }
  7146. _jie.onclick = async () => {
  7147. let text = ''
  7148. if (aTool == 1) {
  7149. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7150. } else if (aTool == 6) {
  7151. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7152. } else if (aTool == 3) {
  7153. text = await U.MD.D.I.getEditorContent(_iframe);
  7154. }
  7155. _loading.style.display = 'flex'
  7156. console.log(_loading);
  7157. var _ajs = _iframe.contentWindow.document.createElement("script");
  7158. _ajs.type = "text/javascript";
  7159. _ajs.innerHTML =
  7160. // 'console.log(' + _loading + ');\n' +
  7161. 'var _js = document.createElement("script");\n' +
  7162. '_js.type="text/javascript";\n' +
  7163. '_js.charset="UTF-8";\n' +
  7164. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7165. "_js.onload = function(){\n" +
  7166. ' var a = document.getElementsByTagName("img")\n' +
  7167. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7168. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7169. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7170. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7171. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7172. "beforeUpload_shishi(file," +
  7173. "'" +
  7174. _userid +
  7175. "'" +
  7176. ", " +
  7177. "'" +
  7178. _cid +
  7179. "'" +
  7180. ", " +
  7181. "'" +
  7182. _stage +
  7183. "'" +
  7184. ", " +
  7185. "'" +
  7186. _task +
  7187. "'" +
  7188. ", " +
  7189. "'" +
  7190. _tool +
  7191. "'" +
  7192. ", " +
  7193. "'" +
  7194. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7195. "'" +
  7196. ", " +
  7197. "'" +
  7198. aTool +
  7199. "'" +
  7200. ", " +
  7201. "`" +
  7202. text +
  7203. "`" +
  7204. ")\n" +
  7205. " });\n" +
  7206. "}\n" +
  7207. "document.head.appendChild(_js);\n";
  7208. _iframe.contentWindow.document.head.appendChild(_ajs);
  7209. }
  7210. }
  7211. }
  7212. U.MD.D.I.getEditorContent = function (iframe) {
  7213. return new Promise((resolve, reject) => {
  7214. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7215. console.log(content);
  7216. resolve(content)
  7217. });
  7218. });
  7219. }
  7220. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7221. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7222. // if (res.value[0].length > 0) {
  7223. // // resolve(res.value[0][0].text);
  7224. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7225. // $(fileInput).val('');
  7226. // });
  7227. // }
  7228. // }, [], { "type": "GET", "withCredentials": true });
  7229. var xmlhttp;
  7230. var Mac, Sn, DeviceId
  7231. if (window.XMLHttpRequest) {
  7232. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7233. xmlhttp = new XMLHttpRequest();
  7234. } else {
  7235. // IE6, IE5 浏览器执行代码
  7236. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7237. }
  7238. xmlhttp.onreadystatechange = function () {
  7239. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7240. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7241. // resolve(res.value[0][0].text);
  7242. if (type == '2') {
  7243. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7244. } else if (type == '3') {
  7245. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7246. }
  7247. } else {
  7248. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7249. }
  7250. }
  7251. }
  7252. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7253. xmlhttp.send();
  7254. }
  7255. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7256. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7257. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7258. _userinfo = US.userInfo, //登录用户信息
  7259. _userid = US.userInfo.userid //登录用户id
  7260. let _iframe;
  7261. let _cid = cid,
  7262. _stage = stage,
  7263. _task = task,
  7264. _tool = tool;
  7265. var _jie = $$("div", {
  7266. "style": {
  7267. "position": "absolute",
  7268. "bottom": "50px",
  7269. "right": "50px",
  7270. "zIndex": "9999",
  7271. "backgroundColor": "#2268bc",
  7272. "color": "#fff",
  7273. "padding": "12px 20px",
  7274. "cursor": "pointer",
  7275. "borderRadius": "4px",
  7276. },
  7277. "innerHTML": "确认并提交"
  7278. })
  7279. let aTool = ''
  7280. let _loading = document.createElement('div')
  7281. _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;"
  7282. // _loading.id = "";
  7283. let _lchild = document.createElement('div')
  7284. let _limg = document.createElement('img')
  7285. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7286. _limg.style = "width: 26px;margin-right: 10px;"
  7287. _lchild.appendChild(_limg)
  7288. let _lspan = document.createElement('span')
  7289. _lspan.innerHTML = "上传中..."
  7290. _lchild.appendChild(_lspan)
  7291. _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%);"
  7292. _loading.appendChild(_lchild)
  7293. var _box = $$('div', {
  7294. "style": {
  7295. "position": "relative",
  7296. "width": "100%",
  7297. "height": "100%",
  7298. },
  7299. })
  7300. _box.appendChild(_loading)
  7301. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7302. switch (str) {
  7303. case "whiteboard":
  7304. aTool = 1;
  7305. _iframe = $$("iframe", {
  7306. "frameborder": "no",
  7307. "border": "0",
  7308. "scrolling ": "no",
  7309. "style": {
  7310. "cssText": "border:0;width:100%;height:100%"
  7311. },
  7312. "src": "https://beta.iwb.cocorobo.cn/"
  7313. })
  7314. _box.appendChild(_iframe);
  7315. _box.appendChild(_jie);
  7316. _formdiv = new U.UF.UI.form(
  7317. "电子白板",
  7318. _box, {
  7319. "id": "whiteboards" + cid + stage + task + tool,
  7320. "style": {
  7321. "width": "90%",
  7322. "height": "90%",
  7323. "overflow": 'hidden'
  7324. },
  7325. "onresize": function () { }
  7326. }, {
  7327. closecallback: function () { }
  7328. }, {
  7329. "style": {
  7330. "height": "36px"
  7331. }
  7332. }).form; //创建窗体
  7333. _taskbar = {
  7334. "id": str + _formdiv.id,
  7335. "style": {
  7336. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7337. },
  7338. "name": "电子白板",
  7339. "forms": _formdiv,
  7340. "click": function () {
  7341. U.MD.D.I.openApplication(str, obj, info);
  7342. }
  7343. }
  7344. break;
  7345. case "mind":
  7346. aTool = 3;
  7347. _iframe = $$("iframe", {
  7348. "frameborder": "no",
  7349. "border": "0",
  7350. "scrolling ": "no",
  7351. "style": {
  7352. "cssText": "border:0;width:100%;height:100%"
  7353. },
  7354. "src": "/kityminder-editor/dist/index.html"
  7355. });
  7356. _box.appendChild(_iframe);
  7357. _box.appendChild(_jie);
  7358. _formdiv = new U.UF.UI.form(
  7359. "思维导图",
  7360. _box, { //"/jsmind/example/demo.html"
  7361. "id": "minds" + cid + stage + task + tool,
  7362. "style": {
  7363. "width": "90%",
  7364. "height": "90%",
  7365. "overflow": 'hidden'
  7366. },
  7367. "onresize": function () { }
  7368. }, {
  7369. closecallback: function () { }
  7370. }, {
  7371. "style": {
  7372. "height": "36px"
  7373. }
  7374. }).form; //创建窗体
  7375. _taskbar = {
  7376. "id": str + _formdiv.id,
  7377. "style": {
  7378. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7379. },
  7380. "name": "思维导图",
  7381. "forms": _formdiv,
  7382. "click": function () {
  7383. U.MD.D.I.openApplication(str, obj, info);
  7384. }
  7385. }
  7386. break;
  7387. case "doc":
  7388. aTool = 6;
  7389. _iframe = $$("iframe", {
  7390. "frameborder": "no",
  7391. "border": "0",
  7392. "scrolling ": "no",
  7393. "style": {
  7394. "cssText": "border:0;width:100%;height:100%"
  7395. },
  7396. "src": "/Office/Word/WordEditArea.htm"
  7397. })
  7398. _box.appendChild(_iframe);
  7399. _box.appendChild(_jie);
  7400. _formdiv = new U.UF.UI.form(
  7401. "协同文档",
  7402. _box, {
  7403. "id": "docs" + cid + stage + task + tool,
  7404. "style": {
  7405. "width": "90%",
  7406. "height": "90%",
  7407. "overflow": 'hidden'
  7408. },
  7409. "onresize": function () { }
  7410. }, {
  7411. closecallback: function () { }
  7412. }, {
  7413. "style": {
  7414. "height": "36px"
  7415. }
  7416. }).form; //创建窗体
  7417. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7418. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7419. })
  7420. _taskbar = {
  7421. "id": str + _formdiv.id,
  7422. "style": {
  7423. "backgroundImage": "url(/img/icon/doc.png)"
  7424. },
  7425. "name": "协同文档",
  7426. "forms": _formdiv,
  7427. "click": function () {
  7428. U.MD.D.I.openApplication(str, obj, info);
  7429. }
  7430. }
  7431. break;
  7432. }
  7433. const script1 = document.createElement("script");
  7434. script1.type = "text/javascript";
  7435. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7436. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7437. const script2 = document.createElement("script");
  7438. script2.type = "text/javascript";
  7439. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7440. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7441. const script3 = document.createElement("script");
  7442. script3.type = "text/javascript";
  7443. script3.charset = "UTF-8";
  7444. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7445. const script4 = document.createElement("script");
  7446. script4.type = "text/javascript";
  7447. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7448. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7449. if (_iframe) {
  7450. if (str == 'doc') {
  7451. _iframe = _formdiv.querySelector('iframe')
  7452. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7453. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7454. _iframe.contentWindow.document.body.appendChild(script1);
  7455. _iframe.contentWindow.document.body.appendChild(script2);
  7456. // _iframe.contentWindow.document.body.appendChild(script3);
  7457. _iframe.contentWindow.document.body.appendChild(script4);
  7458. })
  7459. if (onloadListener) {
  7460. _iframe.contentDocument.location.reload()
  7461. } else {
  7462. _iframe.contentDocument.location.reload()
  7463. }
  7464. } else if (str == 'mind') {
  7465. _iframe = _formdiv.querySelector('iframe')
  7466. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7467. _iframe.contentWindow.document.body.appendChild(script1);
  7468. _iframe.contentWindow.document.body.appendChild(script2);
  7469. _iframe.contentWindow.document.body.appendChild(script4);
  7470. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7471. })
  7472. if (onloadListener) {
  7473. _iframe.contentDocument.location.reload()
  7474. } else {
  7475. _iframe.contentDocument.location.reload()
  7476. }
  7477. } else {
  7478. _iframe.onload = () => {
  7479. _iframe.contentWindow.document.body.appendChild(script1);
  7480. _iframe.contentWindow.document.body.appendChild(script2);
  7481. // _iframe.contentWindow.document.body.appendChild(script3);
  7482. _iframe.contentWindow.document.body.appendChild(script4);
  7483. };
  7484. }
  7485. _jie.onclick = async () => {
  7486. let text = ''
  7487. if (aTool == 6) {
  7488. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7489. } else if (aTool == 3) {
  7490. text = await U.MD.D.I.getEditorContent(_iframe);
  7491. }
  7492. _loading.style.display = 'flex'
  7493. console.log(_loading);
  7494. var _ajs = _iframe.contentWindow.document.createElement("script");
  7495. _ajs.type = "text/javascript";
  7496. _ajs.innerHTML =
  7497. // 'console.log(' + _loading + ');\n' +
  7498. 'var _js = document.createElement("script");\n' +
  7499. '_js.type="text/javascript";\n' +
  7500. '_js.charset="UTF-8";\n' +
  7501. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7502. "_js.onload = function(){\n" +
  7503. ' var a = document.getElementsByTagName("img")\n' +
  7504. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7505. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7506. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7507. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7508. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7509. "beforeUpload_shishi(file," +
  7510. "'" +
  7511. _userid +
  7512. "'" +
  7513. ", " +
  7514. "'" +
  7515. _cid +
  7516. "'" +
  7517. ", " +
  7518. "'" +
  7519. _stage +
  7520. "'" +
  7521. ", " +
  7522. "'" +
  7523. _task +
  7524. "'" +
  7525. ", " +
  7526. "'" +
  7527. _tool +
  7528. "'" +
  7529. ", " +
  7530. "'" +
  7531. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7532. "'" +
  7533. ", " +
  7534. "'" +
  7535. aTool +
  7536. "'" +
  7537. ", " +
  7538. "`" +
  7539. text +
  7540. "`" +
  7541. ")\n" +
  7542. " });\n" +
  7543. "}\n" +
  7544. "document.head.appendChild(_js);\n";
  7545. _iframe.contentWindow.document.head.appendChild(_ajs);
  7546. }
  7547. }
  7548. //U.MD.D.I.openClick(str);
  7549. //如果有任务栏信息
  7550. // if (_taskbar) {
  7551. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7552. // }
  7553. }
  7554. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7555. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7556. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7557. _userinfo = US.userInfo, //登录用户信息
  7558. _userid = US.userInfo.userid //登录用户id
  7559. let _iframe;
  7560. let _cid = cid,
  7561. _stage = stage,
  7562. _task = task,
  7563. _tool = tool;
  7564. var _jie = $$("div", {
  7565. "style": {
  7566. "position": "absolute",
  7567. "bottom": "50px",
  7568. "right": "50px",
  7569. "zIndex": "9999",
  7570. "backgroundColor": "#2268bc",
  7571. "color": "#fff",
  7572. "padding": "12px 20px",
  7573. "cursor": "pointer",
  7574. "borderRadius": "4px",
  7575. },
  7576. "innerHTML": "确认并提交"
  7577. })
  7578. let aTool = ''
  7579. let _loading = document.createElement('div')
  7580. _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;"
  7581. // _loading.id = "";
  7582. let _lchild = document.createElement('div')
  7583. let _limg = document.createElement('img')
  7584. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7585. _limg.style = "width: 26px;margin-right: 10px;"
  7586. _lchild.appendChild(_limg)
  7587. let _lspan = document.createElement('span')
  7588. _lspan.innerHTML = "上传中..."
  7589. _lchild.appendChild(_lspan)
  7590. _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%);"
  7591. _loading.appendChild(_lchild)
  7592. var _box = $$('div', {
  7593. "style": {
  7594. "position": "relative",
  7595. "width": "100%",
  7596. "height": "100%",
  7597. },
  7598. })
  7599. _box.appendChild(_loading)
  7600. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7601. switch (str) {
  7602. case "whiteboard":
  7603. aTool = 1;
  7604. _iframe = $$("iframe", {
  7605. "frameborder": "no",
  7606. "border": "0",
  7607. "scrolling ": "no",
  7608. "style": {
  7609. "cssText": "border:0;width:100%;height:100%"
  7610. },
  7611. "src": "https://beta.iwb.cocorobo.cn/"
  7612. })
  7613. _box.appendChild(_iframe);
  7614. _box.appendChild(_jie);
  7615. _formdiv = new U.UF.UI.form(
  7616. "电子白板",
  7617. _box, {
  7618. "id": "whiteboards" + cid + stage + task + tool,
  7619. "style": {
  7620. "width": "90%",
  7621. "height": "90%",
  7622. "overflow": 'hidden'
  7623. },
  7624. "onresize": function () { }
  7625. }, {
  7626. closecallback: function () { }
  7627. }, {
  7628. "style": {
  7629. "height": "36px"
  7630. }
  7631. }).form; //创建窗体
  7632. _taskbar = {
  7633. "id": str + _formdiv.id,
  7634. "style": {
  7635. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7636. },
  7637. "name": "电子白板",
  7638. "forms": _formdiv,
  7639. "click": function () {
  7640. U.MD.D.I.openApplication(str, obj, info);
  7641. }
  7642. }
  7643. break;
  7644. case "mind":
  7645. aTool = 3;
  7646. _iframe = $$("iframe", {
  7647. "frameborder": "no",
  7648. "border": "0",
  7649. "scrolling ": "no",
  7650. "style": {
  7651. "cssText": "border:0;width:100%;height:100%"
  7652. },
  7653. "src": "/kityminder-editor/dist/index.html"
  7654. });
  7655. _box.appendChild(_iframe);
  7656. _box.appendChild(_jie);
  7657. _formdiv = new U.UF.UI.form(
  7658. "思维导图",
  7659. _box, { //"/jsmind/example/demo.html"
  7660. "id": "minds" + cid + stage + task + tool,
  7661. "style": {
  7662. "width": "90%",
  7663. "height": "90%",
  7664. "overflow": 'hidden'
  7665. },
  7666. "onresize": function () { }
  7667. }, {
  7668. closecallback: function () { }
  7669. }, {
  7670. "style": {
  7671. "height": "36px"
  7672. }
  7673. }).form; //创建窗体
  7674. _taskbar = {
  7675. "id": str + _formdiv.id,
  7676. "style": {
  7677. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7678. },
  7679. "name": "思维导图",
  7680. "forms": _formdiv,
  7681. "click": function () {
  7682. U.MD.D.I.openApplication(str, obj, info);
  7683. }
  7684. }
  7685. break;
  7686. case "doc":
  7687. aTool = 6;
  7688. _iframe = $$("iframe", {
  7689. "frameborder": "no",
  7690. "border": "0",
  7691. "scrolling ": "no",
  7692. "style": {
  7693. "cssText": "border:0;width:100%;height:100%"
  7694. },
  7695. "src": "/Office/Word/WordEditArea.htm"
  7696. })
  7697. _box.appendChild(_iframe);
  7698. _box.appendChild(_jie);
  7699. _formdiv = new U.UF.UI.form(
  7700. "协同文档",
  7701. _box, {
  7702. "id": "docs" + cid + stage + task + tool,
  7703. "style": {
  7704. "width": "90%",
  7705. "height": "90%",
  7706. "overflow": 'hidden'
  7707. },
  7708. "onresize": function () { }
  7709. }, {
  7710. closecallback: function () { }
  7711. }, {
  7712. "style": {
  7713. "height": "36px"
  7714. }
  7715. }).form; //创建窗体
  7716. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7717. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7718. })
  7719. _taskbar = {
  7720. "id": str + _formdiv.id,
  7721. "style": {
  7722. "backgroundImage": "url(/img/icon/doc.png)"
  7723. },
  7724. "name": "协同文档",
  7725. "forms": _formdiv,
  7726. "click": function () {
  7727. U.MD.D.I.openApplication(str, obj, info);
  7728. }
  7729. }
  7730. break;
  7731. }
  7732. const script1 = document.createElement("script");
  7733. script1.type = "text/javascript";
  7734. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7735. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7736. const script2 = document.createElement("script");
  7737. script2.type = "text/javascript";
  7738. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7739. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7740. const script3 = document.createElement("script");
  7741. script3.type = "text/javascript";
  7742. script3.charset = "UTF-8";
  7743. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7744. const script4 = document.createElement("script");
  7745. script4.type = "text/javascript";
  7746. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7747. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7748. if (_iframe) {
  7749. if (str == 'doc') {
  7750. _iframe = _formdiv.querySelector('iframe')
  7751. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7752. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7753. _iframe.contentWindow.document.body.appendChild(script1);
  7754. _iframe.contentWindow.document.body.appendChild(script2);
  7755. // _iframe.contentWindow.document.body.appendChild(script3);
  7756. _iframe.contentWindow.document.body.appendChild(script4);
  7757. })
  7758. if (onloadListener) {
  7759. _iframe.contentDocument.location.reload()
  7760. } else {
  7761. _iframe.contentDocument.location.reload()
  7762. }
  7763. } else if (str == 'mind') {
  7764. _iframe = _formdiv.querySelector('iframe')
  7765. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7766. _iframe.contentWindow.document.body.appendChild(script1);
  7767. _iframe.contentWindow.document.body.appendChild(script2);
  7768. _iframe.contentWindow.document.body.appendChild(script4);
  7769. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7770. })
  7771. if (onloadListener) {
  7772. _iframe.contentDocument.location.reload()
  7773. } else {
  7774. _iframe.contentDocument.location.reload()
  7775. }
  7776. } else {
  7777. _iframe.onload = () => {
  7778. _iframe.contentWindow.document.body.appendChild(script1);
  7779. _iframe.contentWindow.document.body.appendChild(script2);
  7780. // _iframe.contentWindow.document.body.appendChild(script3);
  7781. _iframe.contentWindow.document.body.appendChild(script4);
  7782. };
  7783. }
  7784. _jie.onclick = async () => {
  7785. let text = ''
  7786. if (aTool == 6) {
  7787. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7788. } else if (aTool == 3) {
  7789. text = await U.MD.D.I.getEditorContent(_iframe);
  7790. }
  7791. _loading.style.display = 'flex'
  7792. console.log(_loading);
  7793. var _ajs = _iframe.contentWindow.document.createElement("script");
  7794. _ajs.type = "text/javascript";
  7795. _ajs.innerHTML =
  7796. // 'console.log(' + _loading + ');\n' +
  7797. 'var _js = document.createElement("script");\n' +
  7798. '_js.type="text/javascript";\n' +
  7799. '_js.charset="UTF-8";\n' +
  7800. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7801. "_js.onload = function(){\n" +
  7802. ' var a = document.getElementsByTagName("img")\n' +
  7803. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7804. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7805. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7806. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7807. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7808. "beforeUpload_shishi(file," +
  7809. "'" +
  7810. _userid +
  7811. "'" +
  7812. ", " +
  7813. "'" +
  7814. _cid +
  7815. "'" +
  7816. ", " +
  7817. "'" +
  7818. _stage +
  7819. "'" +
  7820. ", " +
  7821. "'" +
  7822. _task +
  7823. "'" +
  7824. ", " +
  7825. "'" +
  7826. _tool +
  7827. "'" +
  7828. ", " +
  7829. "'" +
  7830. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7831. "'" +
  7832. ", " +
  7833. "'" +
  7834. aTool +
  7835. "'" +
  7836. ", " +
  7837. "`" +
  7838. text +
  7839. "`" +
  7840. ")\n" +
  7841. " });\n" +
  7842. "}\n" +
  7843. "document.head.appendChild(_js);\n";
  7844. _iframe.contentWindow.document.head.appendChild(_ajs);
  7845. }
  7846. }
  7847. //U.MD.D.I.openClick(str);
  7848. //如果有任务栏信息
  7849. // if (_taskbar) {
  7850. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7851. // }
  7852. }
  7853. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7854. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7855. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7856. _userinfo = US.userInfo, //登录用户信息
  7857. _userid = US.userInfo.userid //登录用户id
  7858. let _iframe;
  7859. let _cid = cid,
  7860. _stage = stage,
  7861. _task = task,
  7862. _tool = tool;
  7863. var _jie = $$("div", {
  7864. "style": {
  7865. "position": "absolute",
  7866. "bottom": "50px",
  7867. "right": "50px",
  7868. "zIndex": "9999",
  7869. "backgroundColor": "#2268bc",
  7870. "color": "#fff",
  7871. "padding": "12px 20px",
  7872. "cursor": "pointer",
  7873. "borderRadius": "4px",
  7874. },
  7875. "innerHTML": "上传模板"
  7876. })
  7877. let aTool = ''
  7878. let _loading = document.createElement('div')
  7879. _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;"
  7880. // _loading.id = "";
  7881. let _lchild = document.createElement('div')
  7882. let _limg = document.createElement('img')
  7883. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7884. _limg.style = "width: 26px;margin-right: 10px;"
  7885. _lchild.appendChild(_limg)
  7886. let _lspan = document.createElement('span')
  7887. _lspan.innerHTML = "上传中..."
  7888. _lchild.appendChild(_lspan)
  7889. _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%);"
  7890. _loading.appendChild(_lchild)
  7891. var _box = $$('div', {
  7892. "style": {
  7893. "position": "relative",
  7894. "width": "100%",
  7895. "height": "100%",
  7896. },
  7897. })
  7898. _box.appendChild(_loading)
  7899. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7900. switch (str) {
  7901. case "whiteboard":
  7902. aTool = 1;
  7903. _iframe = $$("iframe", {
  7904. "frameborder": "no",
  7905. "border": "0",
  7906. "scrolling ": "no",
  7907. "style": {
  7908. "cssText": "border:0;width:100%;height:100%"
  7909. },
  7910. "src": "https://beta.iwb.cocorobo.cn/"
  7911. })
  7912. _box.appendChild(_iframe);
  7913. _box.appendChild(_jie);
  7914. _formdiv = new U.UF.UI.form(
  7915. "电子白板",
  7916. _box, {
  7917. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7918. "style": {
  7919. "width": "90%",
  7920. "height": "90%",
  7921. "overflow": 'hidden'
  7922. },
  7923. "onresize": function () { }
  7924. }, {
  7925. closecallback: function () { }
  7926. }, {
  7927. "style": {
  7928. "height": "36px"
  7929. }
  7930. }).form; //创建窗体
  7931. _taskbar = {
  7932. "id": str + _formdiv.id,
  7933. "style": {
  7934. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7935. },
  7936. "name": "电子白板",
  7937. "forms": _formdiv,
  7938. "click": function () {
  7939. U.MD.D.I.openApplication(str, obj, info);
  7940. }
  7941. }
  7942. break;
  7943. case "mind":
  7944. aTool = 3;
  7945. _iframe = $$("iframe", {
  7946. "frameborder": "no",
  7947. "border": "0",
  7948. "scrolling ": "no",
  7949. "style": {
  7950. "cssText": "border:0;width:100%;height:100%"
  7951. },
  7952. "src": "/kityminder-editor/dist/index.html"
  7953. });
  7954. _box.appendChild(_iframe);
  7955. _box.appendChild(_jie);
  7956. _formdiv = new U.UF.UI.form(
  7957. "思维导图",
  7958. _box, { //"/jsmind/example/demo.html"
  7959. "id": "minds_Yu" + cid + stage + task + tool,
  7960. "style": {
  7961. "width": "90%",
  7962. "height": "90%",
  7963. "overflow": 'hidden'
  7964. },
  7965. "onresize": function () { }
  7966. }, {
  7967. closecallback: function () { }
  7968. }, {
  7969. "style": {
  7970. "height": "36px"
  7971. }
  7972. }).form; //创建窗体
  7973. _taskbar = {
  7974. "id": str + _formdiv.id,
  7975. "style": {
  7976. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7977. },
  7978. "name": "思维导图",
  7979. "forms": _formdiv,
  7980. "click": function () {
  7981. U.MD.D.I.openApplication(str, obj, info);
  7982. }
  7983. }
  7984. break;
  7985. case "doc":
  7986. aTool = 6;
  7987. _iframe = $$("iframe", {
  7988. "frameborder": "no",
  7989. "border": "0",
  7990. "scrolling ": "no",
  7991. "style": {
  7992. "cssText": "border:0;width:100%;height:100%"
  7993. },
  7994. "src": "/Office/Word/WordEditArea.htm"
  7995. })
  7996. _box.appendChild(_iframe);
  7997. _box.appendChild(_jie);
  7998. _formdiv = new U.UF.UI.form(
  7999. "协同文档",
  8000. _box, {
  8001. "id": "docs_Yu" + cid + stage + task + tool,
  8002. "style": {
  8003. "width": "90%",
  8004. "height": "90%",
  8005. "overflow": 'hidden'
  8006. },
  8007. "onresize": function () { }
  8008. }, {
  8009. closecallback: function () { }
  8010. }, {
  8011. "style": {
  8012. "height": "36px"
  8013. }
  8014. }).form; //创建窗体
  8015. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8016. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8017. })
  8018. _taskbar = {
  8019. "id": str + _formdiv.id,
  8020. "style": {
  8021. "backgroundImage": "url(/img/icon/doc.png)"
  8022. },
  8023. "name": "协同文档",
  8024. "forms": _formdiv,
  8025. "click": function () {
  8026. U.MD.D.I.openApplication(str, obj, info);
  8027. }
  8028. }
  8029. break;
  8030. case "CocoPi":
  8031. aTool = 57;
  8032. _iframe = $$("iframe", {
  8033. "allowpaymentrequest": "allowpaymentrequest",
  8034. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8035. "webkitallowfullscreen": "",
  8036. "mozallowfullscreen": "",
  8037. "frameborder": "no",
  8038. "border": "0",
  8039. "scrolling ": "no",
  8040. "style": {
  8041. "cssText": "border:0;width:100%;height:100%"
  8042. },
  8043. "src": "https://pi.cocorobo.cn/"
  8044. })
  8045. _box.appendChild(_iframe);
  8046. _box.appendChild(_jie);
  8047. _formdiv = new U.UF.UI.form(
  8048. "CocoPi",
  8049. _box, {
  8050. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8051. "style": {
  8052. "width": "90%",
  8053. "height": "90%",
  8054. "overflow": 'hidden'
  8055. },
  8056. "onresize": function () { }
  8057. }, {
  8058. closecallback: function () { }
  8059. }, {
  8060. "style": {
  8061. "height": "36px"
  8062. }
  8063. }).form; //创建窗体
  8064. _taskbar = {
  8065. "id": str + _formdiv.id,
  8066. "style": {
  8067. "backgroundImage": "url(/img/icon/cocopi.png)"
  8068. },
  8069. "name": "CocoPi",
  8070. "forms": _formdiv,
  8071. "click": function () {
  8072. U.MD.D.I.openApplication(str, obj, info);
  8073. }
  8074. }
  8075. break;
  8076. }
  8077. if (_iframe) {
  8078. if (str == 'doc') {
  8079. _iframe = _formdiv.querySelector('iframe')
  8080. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8081. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8082. })
  8083. if (onloadListener) {
  8084. _iframe.contentDocument.location.reload()
  8085. } else {
  8086. _iframe.contentDocument.location.reload()
  8087. }
  8088. } else if (str == 'mind') {
  8089. _iframe = _formdiv.querySelector('iframe')
  8090. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8091. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8092. })
  8093. if (onloadListener) {
  8094. _iframe.contentDocument.location.reload()
  8095. } else {
  8096. _iframe.contentDocument.location.reload()
  8097. }
  8098. } else if (str == 'whiteboard') {
  8099. _iframe = _formdiv.querySelector('iframe')
  8100. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8101. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8102. })
  8103. if (onloadListener) {
  8104. _iframe.contentDocument.location.reload()
  8105. } else {
  8106. _iframe.contentDocument.location.reload()
  8107. }
  8108. } else if (str == 'CocoPi') {
  8109. _iframe = _formdiv.querySelector('iframe')
  8110. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8111. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8112. })
  8113. if (onloadListener) {
  8114. _iframe.contentDocument.location.reload()
  8115. } else {
  8116. _iframe.contentDocument.location.reload()
  8117. }
  8118. } else {
  8119. _iframe.onload = () => { };
  8120. }
  8121. _jie.onclick = async () => {
  8122. let text = ''
  8123. let type = '2'
  8124. if (aTool == 1) {
  8125. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8126. type = '3'
  8127. } else if (aTool == 6) {
  8128. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8129. type = '1'
  8130. } else if (aTool == 3) {
  8131. text = await U.MD.D.I.getEditorContent(_iframe);
  8132. type = '2'
  8133. } else if (aTool == 57) {
  8134. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8135. type = '4'
  8136. }
  8137. _loading.style.display = 'flex'
  8138. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8139. }
  8140. }
  8141. //U.MD.D.I.openClick(str);
  8142. //如果有任务栏信息
  8143. // if (_taskbar) {
  8144. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8145. // }
  8146. }
  8147. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8148. var xmlhttp;
  8149. var Mac, Sn, DeviceId
  8150. if (window.XMLHttpRequest) {
  8151. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8152. xmlhttp = new XMLHttpRequest();
  8153. } else {
  8154. // IE6, IE5 浏览器执行代码
  8155. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8156. }
  8157. xmlhttp.onreadystatechange = function () {
  8158. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8159. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8160. // resolve(res.value[0][0].text);
  8161. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8162. }
  8163. }
  8164. }
  8165. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8166. xmlhttp.send();
  8167. }
  8168. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8169. var xmlhttp;
  8170. var Mac, Sn, DeviceId
  8171. if (window.XMLHttpRequest) {
  8172. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8173. xmlhttp = new XMLHttpRequest();
  8174. } else {
  8175. // IE6, IE5 浏览器执行代码
  8176. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8177. }
  8178. xmlhttp.onreadystatechange = function () {
  8179. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8180. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8181. // resolve(res.value[0][0].text);
  8182. if (type == '2') {
  8183. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8184. } else if (type == '3') {
  8185. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8186. } else if (type == '4') {
  8187. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8188. }
  8189. } else {
  8190. if (type == '2') {
  8191. iframe.contentWindow.editor.minder.importData('json', '')
  8192. } else if (type == '3') {
  8193. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8194. } else if (type == '4') {
  8195. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8196. }
  8197. }
  8198. }
  8199. }
  8200. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8201. xmlhttp.send();
  8202. }
  8203. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8204. var xmlhttp;
  8205. var Mac, Sn, DeviceId
  8206. if (window.XMLHttpRequest) {
  8207. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8208. xmlhttp = new XMLHttpRequest();
  8209. } else {
  8210. // IE6, IE5 浏览器执行代码
  8211. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8212. }
  8213. xmlhttp.onreadystatechange = function () {
  8214. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8215. if (xmlhttp.response) {
  8216. // resolve(res.value[0][0].text);
  8217. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8218. // $(fileInput).val('');
  8219. // });
  8220. span.innerHTML = '上传成功'
  8221. setTimeout(() => {
  8222. loading.style.display = 'none'
  8223. }, 1000);
  8224. }
  8225. }
  8226. }
  8227. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8228. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8229. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8230. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8231. // 设置请求头,表示请求体的编码格式
  8232. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8233. // 设置请求体,使用url-encoded格式的数据
  8234. }
  8235. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8236. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8237. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8238. _userinfo = US.userInfo, //登录用户信息
  8239. _userid = US.userInfo.userid //登录用户id
  8240. let _iframe;
  8241. let _cid = cid,
  8242. _stage = stage,
  8243. _task = task,
  8244. _tool = tool;
  8245. var _jie = $$("div", {
  8246. "style": {
  8247. "position": "absolute",
  8248. "bottom": "50px",
  8249. "right": "50px",
  8250. "zIndex": "9999",
  8251. "backgroundColor": "#2268bc",
  8252. "color": "#fff",
  8253. "padding": "12px 20px",
  8254. "cursor": "pointer",
  8255. "borderRadius": "4px",
  8256. },
  8257. "innerHTML": "提交作业"
  8258. })
  8259. let aTool = ''
  8260. let _loading = document.createElement('div')
  8261. _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;"
  8262. // _loading.id = "";
  8263. let _lchild = document.createElement('div')
  8264. let _limg = document.createElement('img')
  8265. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8266. _limg.style = "width: 26px;margin-right: 10px;"
  8267. _lchild.appendChild(_limg)
  8268. let _lspan = document.createElement('span')
  8269. _lspan.innerHTML = "上传中..."
  8270. _lchild.appendChild(_lspan)
  8271. _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%);"
  8272. _loading.appendChild(_lchild)
  8273. var _box = $$('div', {
  8274. "style": {
  8275. "position": "relative",
  8276. "width": "100%",
  8277. "height": "100%",
  8278. },
  8279. })
  8280. _box.appendChild(_loading)
  8281. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8282. switch (str) {
  8283. case "CocoPi":
  8284. aTool = 57;
  8285. _iframe = $$("iframe", {
  8286. "allowpaymentrequest": "allowpaymentrequest",
  8287. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8288. "webkitallowfullscreen": "",
  8289. "mozallowfullscreen": "",
  8290. "frameborder": "no",
  8291. "border": "0",
  8292. "scrolling ": "no",
  8293. "style": {
  8294. "cssText": "border:0;width:100%;height:100%"
  8295. },
  8296. "src": "https://pi.cocorobo.cn/"
  8297. })
  8298. _box.appendChild(_iframe);
  8299. _box.appendChild(_jie);
  8300. _formdiv = new U.UF.UI.form(
  8301. "CocoPi",
  8302. _box, {
  8303. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8304. "style": {
  8305. "width": "90%",
  8306. "height": "90%",
  8307. "overflow": 'hidden'
  8308. },
  8309. "onresize": function () { }
  8310. }, {
  8311. closecallback: function () { }
  8312. }, {
  8313. "style": {
  8314. "height": "36px"
  8315. }
  8316. }).form; //创建窗体
  8317. _taskbar = {
  8318. "id": str + _formdiv.id,
  8319. "style": {
  8320. "backgroundImage": "url(/img/icon/cocopi.png)"
  8321. },
  8322. "name": "CocoPi",
  8323. "forms": _formdiv,
  8324. "click": function () {
  8325. U.MD.D.I.openApplication(str, obj, info);
  8326. }
  8327. }
  8328. break;
  8329. }
  8330. if (_iframe) {
  8331. if (str == 'CocoPi') {
  8332. _iframe = _formdiv.querySelector('iframe')
  8333. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8334. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8335. })
  8336. if (onloadListener) {
  8337. _iframe.contentDocument.location.reload()
  8338. } else {
  8339. _iframe.contentDocument.location.reload()
  8340. }
  8341. }
  8342. _jie.onclick = async () => {
  8343. let text = ''
  8344. if (aTool == 57) {
  8345. text = _iframe.contentWindow.getLoadXmlStr()
  8346. }
  8347. _loading.style.display = 'flex'
  8348. console.log(_loading);
  8349. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8350. _loading.style.display = 'none'
  8351. let _div = document.createElement('div')
  8352. _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;"
  8353. let _inner = document.createElement('div')
  8354. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8355. _inner.innerHTML = "上传成功"
  8356. _div.appendChild(_inner)
  8357. _iframe.contentWindow.window.document.body.appendChild(_div)
  8358. _div.onclick = () => {
  8359. _iframe.contentWindow.window.document.body.removeChild(_div)
  8360. }
  8361. setTimeout(() => {
  8362. _iframe.contentWindow.window.document.body.removeChild(_div)
  8363. }, 1000);
  8364. }, [], { "type": "POST", "withCredentials": true });
  8365. }
  8366. }
  8367. }
  8368. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8369. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8370. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8371. _userid = student.userid, //登录用户id
  8372. _username = student.student //用户名字
  8373. let _iframe;
  8374. let _cid = cid,
  8375. _stage = stage,
  8376. _task = task,
  8377. _tool = tool;
  8378. var _jie = $$("div", {
  8379. "style": {
  8380. "position": "absolute",
  8381. "bottom": "50px",
  8382. "right": "50px",
  8383. "zIndex": "9999",
  8384. "backgroundColor": "#2268bc",
  8385. "color": "#fff",
  8386. "padding": "12px 20px",
  8387. "cursor": "pointer",
  8388. "borderRadius": "4px",
  8389. },
  8390. "innerHTML": "提交作业"
  8391. })
  8392. let aTool = ''
  8393. let _loading = document.createElement('div')
  8394. _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;"
  8395. // _loading.id = "";
  8396. let _lchild = document.createElement('div')
  8397. let _limg = document.createElement('img')
  8398. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8399. _limg.style = "width: 26px;margin-right: 10px;"
  8400. _lchild.appendChild(_limg)
  8401. let _lspan = document.createElement('span')
  8402. _lspan.innerHTML = "上传中..."
  8403. _lchild.appendChild(_lspan)
  8404. _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%);"
  8405. _loading.appendChild(_lchild)
  8406. var _box = $$('div', {
  8407. "style": {
  8408. "position": "relative",
  8409. "width": "100%",
  8410. "height": "100%",
  8411. },
  8412. })
  8413. _box.appendChild(_loading)
  8414. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8415. switch (str) {
  8416. case "CocoPi":
  8417. aTool = 57;
  8418. _iframe = $$("iframe", {
  8419. "allowpaymentrequest": "allowpaymentrequest",
  8420. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8421. "webkitallowfullscreen": "",
  8422. "mozallowfullscreen": "",
  8423. "frameborder": "no",
  8424. "border": "0",
  8425. "scrolling ": "no",
  8426. "style": {
  8427. "cssText": "border:0;width:100%;height:100%"
  8428. },
  8429. "src": "https://pi.cocorobo.cn/"
  8430. })
  8431. _box.appendChild(_iframe);
  8432. _box.appendChild(_jie);
  8433. _formdiv = new U.UF.UI.form(
  8434. "CocoPi-" + _username,
  8435. _box, {
  8436. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8437. "style": {
  8438. "width": "90%",
  8439. "height": "90%",
  8440. "overflow": 'hidden'
  8441. },
  8442. "onresize": function () { }
  8443. }, {
  8444. closecallback: function () { }
  8445. }, {
  8446. "style": {
  8447. "height": "36px"
  8448. }
  8449. }).form; //创建窗体
  8450. _taskbar = {
  8451. "id": str + _formdiv.id,
  8452. "style": {
  8453. "backgroundImage": "url(/img/icon/cocopi.png)"
  8454. },
  8455. "name": "CocoPi",
  8456. "forms": _formdiv,
  8457. "click": function () {
  8458. U.MD.D.I.openApplication(str, obj, info);
  8459. }
  8460. }
  8461. break;
  8462. }
  8463. if (_iframe) {
  8464. if (str == 'CocoPi') {
  8465. _iframe = _formdiv.querySelector('iframe')
  8466. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8467. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8468. })
  8469. if (onloadListener) {
  8470. _iframe.contentDocument.location.reload()
  8471. } else {
  8472. _iframe.contentDocument.location.reload()
  8473. }
  8474. }
  8475. _jie.onclick = async () => {
  8476. let text = ''
  8477. if (aTool == 57) {
  8478. text = _iframe.contentWindow.getLoadXmlStr()
  8479. }
  8480. _loading.style.display = 'flex'
  8481. console.log(_loading);
  8482. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8483. _loading.style.display = 'none'
  8484. let _div = document.createElement('div')
  8485. _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;"
  8486. let _inner = document.createElement('div')
  8487. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8488. _inner.innerHTML = "上传成功"
  8489. _div.appendChild(_inner)
  8490. _iframe.contentWindow.window.document.body.appendChild(_div)
  8491. _div.onclick = () => {
  8492. _iframe.contentWindow.window.document.body.removeChild(_div)
  8493. }
  8494. setTimeout(() => {
  8495. _iframe.contentWindow.window.document.body.removeChild(_div)
  8496. }, 1000);
  8497. }, [], { "type": "POST", "withCredentials": true });
  8498. }
  8499. }
  8500. }
  8501. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8502. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8503. if (res.value[0].length > 0) {
  8504. if (atool == 57) {
  8505. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8506. }
  8507. } else {
  8508. if (atool == 57) {
  8509. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8510. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8511. }
  8512. }
  8513. }, [], { "type": "POST", "withCredentials": true });
  8514. }