DeskTop.js 555 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  633. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  635. ];
  636. //教科院实小教师桌面图标的全局变量
  637. U.MD.D.I.siesStudentDeskIcon = [
  638. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  642. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  643. ];
  644. //福田
  645. U.MD.D.I.gdjgTeacherDeskIcon = [
  646. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  647. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  648. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  649. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  650. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  651. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  652. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  653. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  654. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  655. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  656. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  657. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  658. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  659. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  660. ];
  661. //gdjg
  662. U.MD.D.I.gdjgAdminDeskIcon = [
  663. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  664. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  665. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  666. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  667. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  668. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  669. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  670. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  671. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  672. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  673. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  674. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  675. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  676. ];
  677. //hk
  678. U.MD.D.I.hkteacherDeskIcon = [
  679. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  680. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  681. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  682. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  683. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  684. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  685. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  686. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  687. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  688. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  689. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  690. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  691. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  692. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  696. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  697. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  698. ];
  699. //hk
  700. U.MD.D.I.hkStudentDeskIcon = [
  701. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  705. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  706. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkaceteacherDeskIcon = [
  710. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  711. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  712. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  713. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  714. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  715. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  716. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  717. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  718. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  719. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  720. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  721. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  722. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  723. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  725. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  726. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  727. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  728. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  729. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  730. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  731. ];
  732. //hk
  733. U.MD.D.I.hkaceStudentDeskIcon = [
  734. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  740. ];
  741. //香海正覺蓮社佛教正覺中學
  742. U.MD.D.I.hkZJLSteacherDeskIcon = [
  743. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  744. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  745. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  746. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  747. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  748. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  749. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  750. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  751. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  752. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  753. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  754. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  755. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  756. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  759. ];
  760. //香海正覺蓮社佛教正覺中學
  761. U.MD.D.I.hkZJLSStudentDeskIcon = [
  762. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  764. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  765. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  766. ];
  767. //云海
  768. U.MD.D.I.yunhaiTeacherDeskIcon = [
  769. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  776. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  777. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  778. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  779. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  780. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  781. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  782. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  783. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  784. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  785. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. ];
  788. //福田
  789. U.MD.D.I.heyuanTeacherDeskIcon = [
  790. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  791. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  792. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  793. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  794. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  795. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  796. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  797. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  798. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  799. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  800. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  801. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  802. ];
  803. //福田
  804. U.MD.D.I.heyuanAdminDeskIcon = [
  805. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  806. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  812. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  813. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  814. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  815. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  816. ];
  817. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  818. U.MD.D.I.szherTeacherDeskIcon = [
  819. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  820. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  821. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  822. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  823. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  824. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  825. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  826. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  827. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  828. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  829. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  830. ];
  831. //dsei
  832. U.MD.D.I.dseiTeacherDeskIcon = [
  833. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  834. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  835. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  836. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  837. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  839. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  840. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  841. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  842. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  843. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  844. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  845. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  846. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  847. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  848. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  849. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  850. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  851. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  852. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  853. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  854. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  855. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  856. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  857. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  858. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  859. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  860. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  861. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  862. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  863. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  864. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  865. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  866. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  867. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  868. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  869. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  870. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  871. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  872. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  873. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  874. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  875. ];
  876. //dsei
  877. U.MD.D.I.dseiAdminDeskIcon = [
  878. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  879. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  880. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  881. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  882. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  883. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  884. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  885. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  886. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  887. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  888. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  889. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  890. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  891. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  892. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  893. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  894. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  895. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  896. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  897. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  898. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  899. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  900. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  901. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  902. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  903. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  904. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  905. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  906. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  907. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  908. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  909. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  910. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  911. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  912. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  913. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  914. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  915. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  917. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  918. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  919. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  920. ];
  921. //dsei
  922. U.MD.D.I.dseiStudentDeskIcon = [
  923. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  924. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  925. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  926. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  928. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  929. ];
  930. //未来教育基地
  931. U.MD.D.I.szjkyTeacherDeskIcon = [
  932. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  933. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  934. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  935. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  936. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  937. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  938. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  939. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  940. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  941. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  942. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  943. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  944. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  945. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  946. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  947. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  948. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  949. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  950. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  951. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  952. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  953. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  954. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  955. ];
  956. //未来教育基地
  957. U.MD.D.I.szjkyAdminDeskIcon = [
  958. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  959. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  960. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  961. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  962. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  963. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  964. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  965. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  966. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  967. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  968. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  969. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  970. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  972. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  973. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  974. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  975. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  976. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  977. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  979. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  980. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. ];
  1227. //盐田区幼儿园
  1228. U.MD.D.I.ytyStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. ];
  1233. //scnuai
  1234. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1235. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1236. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1237. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1238. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1239. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1240. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1241. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1242. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1243. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1244. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1246. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1247. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1248. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1250. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1251. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1252. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1253. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1254. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1255. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1256. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1257. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1258. ];
  1259. //scnuai
  1260. U.MD.D.I.scnuaiAdminDeskIcon = [
  1261. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1262. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1263. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1264. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1265. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1266. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1267. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1268. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1269. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1270. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1271. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1272. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1273. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1274. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1276. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1277. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1278. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1279. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1280. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1281. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1282. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1283. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1284. ];
  1285. //scnuai
  1286. U.MD.D.I.scnuaiStudentDeskIcon = [
  1287. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1291. ];
  1292. //#region 桌面初始化a
  1293. /**
  1294. * 初始化桌面的起始函数
  1295. *
  1296. */
  1297. U.MD.D.I.init = function () {
  1298. if ($("#U_MD_D_K")[0]) {
  1299. //初始化桌面图标
  1300. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1301. // var clickUrl = ':12588/requestIp.php';
  1302. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1303. // U.MD.D.I.Ip = data;
  1304. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1305. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1306. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1307. // })
  1308. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1309. // })
  1310. }
  1311. }
  1312. /**
  1313. * 模式切换
  1314. *
  1315. */
  1316. U.MD.D.I.ModeCheck = function (type) {
  1317. if (US.Config.type == type) {
  1318. return
  1319. }
  1320. US.Config.type = type
  1321. $('.U_PBL_Check .active')[0].className = ''
  1322. if (type == 1) {
  1323. $('.U_PBL_Check div')[0].className = 'active'
  1324. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1325. } else {
  1326. $('.U_PBL_Check div')[1].className = 'active'
  1327. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1328. }
  1329. //初始化桌面图标
  1330. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1331. if (type == 2) {
  1332. U.MD.D.I.openApplication("project")
  1333. }
  1334. }
  1335. /**
  1336. * 隐藏任务栏
  1337. *
  1338. * @param {element} 桌面元素
  1339. */
  1340. U.MD.D.I.hiddenTaskbar = function (el) {
  1341. //任务栏位置变小
  1342. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1343. //桌面的位置变大
  1344. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1345. }
  1346. /**
  1347. * 隐藏任务栏
  1348. *
  1349. * @param {element} 桌面元素
  1350. */
  1351. U.MD.D.I.hiddenTaskbarout = function (el) {
  1352. //任务栏位置变小
  1353. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1354. //任务栏位置变化
  1355. U.selectEl(el).css({ "bottom": "-60px" });
  1356. //桌面的位置变大
  1357. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1358. }
  1359. }
  1360. /**
  1361. * 初始化打印桌面图标
  1362. *
  1363. * @param {element} 桌面元素
  1364. */
  1365. U.MD.D.I.initDesktopIcons = function (el, type) {
  1366. var i, //用于循环
  1367. _content, //桌面图标元素
  1368. _iconcontent, //桌面图标元素
  1369. _frag = $$("frag"), //定义一个碎片元素
  1370. _type = US.userInfo.type,
  1371. _org = US.userInfo.org,
  1372. _oid = US.userInfo.organizeid,
  1373. _role = US.userInfo.role,
  1374. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1375. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1376. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1377. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1378. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1379. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1380. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1381. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1382. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1383. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1384. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1385. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1386. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1387. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1388. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1389. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1390. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1391. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1392. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1393. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1394. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1395. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1396. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1397. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1398. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1399. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1400. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1401. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1402. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1403. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1404. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1405. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1406. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1407. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1408. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1409. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1410. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1411. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1412. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1413. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1414. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1415. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1416. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1417. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1418. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1419. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1420. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1421. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1422. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1423. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1424. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1425. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1426. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1427. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1428. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1429. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1430. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1431. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1432. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1433. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1434. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1435. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1436. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1437. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1438. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1439. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1440. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1441. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1442. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1443. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1444. 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'];
  1445. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9'];
  1446. //清楚桌面图标
  1447. el.innerHTML = "";
  1448. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1449. _teacherDesktopIconInfo.push(
  1450. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1451. { "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)" } },
  1452. )
  1453. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1454. }
  1455. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1456. _teacherDesktopIconInfo.push(
  1457. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1458. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1459. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1460. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1461. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1462. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1463. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1464. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1465. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1466. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1467. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1468. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1469. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1470. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1471. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1472. )
  1473. }
  1474. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1475. _teacherDesktopIconInfo.push(
  1476. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1477. )
  1478. }
  1479. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1480. // _teacherDesktopIconInfo.push(
  1481. // )
  1482. // }
  1483. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1484. _teacherDesktopIconInfo.push(
  1485. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1486. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1487. )
  1488. }
  1489. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1490. _teacherDesktopIconInfo.push(
  1491. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1492. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1494. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1495. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1496. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1497. )
  1498. _studentDesktopIconInfo.push(
  1499. )
  1500. }
  1501. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1502. _teacherDesktopIconInfo.push(
  1503. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1504. )
  1505. _studentDesktopIconInfo.push(
  1506. )
  1507. }
  1508. //010606 组织
  1509. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1510. _teacherDesktopIconInfo.push(
  1511. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1512. )
  1513. _studentDesktopIconInfo.push(
  1514. )
  1515. }
  1516. //麒麟二中 和 民新小学
  1517. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1518. _teacherDesktopIconInfo.push(
  1519. )
  1520. }
  1521. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1522. _teacherDesktopIconInfo.push(
  1523. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1524. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1525. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1526. )
  1527. }
  1528. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1529. _teacherDesktopIconInfo.push(
  1530. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1531. )
  1532. }
  1533. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1534. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1535. _teacherDesktopIconInfo.push(
  1536. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1537. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1538. )
  1539. }
  1540. //麒麟二中
  1541. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1542. _studentDesktopIconInfo.push(
  1543. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1544. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1545. )
  1546. }
  1547. //万科双语
  1548. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1549. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1550. if (el.Name == '项目管理') {
  1551. el.Name = 'PBL项目'
  1552. }
  1553. return el
  1554. })
  1555. _studentDesktopIconInfo3.push(
  1556. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1557. )
  1558. }
  1559. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1560. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1561. return el.Name != '魔盒识字' && el.Name != '24点'
  1562. })
  1563. }
  1564. 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) {
  1565. _studentDesktopIconInfo.push(
  1566. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1567. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1568. )
  1569. }
  1570. //循环创建桌面图标
  1571. if (type == 1) {
  1572. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1573. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1574. _content = $$("div", {
  1575. className: "U_MD_D_KO",
  1576. "onmousedown": U.UF.C.closure(function (obj) {
  1577. //防止拖动图标即打开了桌面应用
  1578. U.MD.D.click(this, obj);
  1579. }, [_studentDesktopIconInfo[i]]),
  1580. "onclick": U.UF.C.closure(function (obj) {
  1581. //防止拖动图标即打开了桌面应用
  1582. U.MD.D.click(this, obj);
  1583. }, [_studentDesktopIconInfo[i]])
  1584. }, _frag); //
  1585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1588. }
  1589. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1590. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1591. _content = $$("div", {
  1592. className: "U_MD_D_KO",
  1593. "onmousedown": U.UF.C.closure(function (obj) {
  1594. //防止拖动图标即打开了桌面应用
  1595. U.MD.D.click(this, obj);
  1596. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1597. "onclick": U.UF.C.closure(function (obj) {
  1598. //防止拖动图标即打开了桌面应用
  1599. U.MD.D.click(this, obj);
  1600. }, [_hkZJLSStudentDeskIconInfo[i]])
  1601. }, _frag); //
  1602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1605. } //
  1606. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1607. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1608. _content = $$("div", {
  1609. className: "U_MD_D_KO",
  1610. "onmousedown": U.UF.C.closure(function (obj) {
  1611. //防止拖动图标即打开了桌面应用
  1612. U.MD.D.click(this, obj);
  1613. }, [_ytyStudentDeskIconInfo[i]]),
  1614. "onclick": U.UF.C.closure(function (obj) {
  1615. //防止拖动图标即打开了桌面应用
  1616. U.MD.D.click(this, obj);
  1617. }, [_ytyStudentDeskIconInfo[i]])
  1618. }, _frag); //
  1619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1622. } //
  1623. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1624. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1625. _content = $$("div", {
  1626. className: "U_MD_D_KO",
  1627. "onmousedown": U.UF.C.closure(function (obj) {
  1628. //防止拖动图标即打开了桌面应用
  1629. U.MD.D.click(this, obj);
  1630. }, [_jccssylStudentDeskIconInfo[i]]),
  1631. "onclick": U.UF.C.closure(function (obj) {
  1632. //防止拖动图标即打开了桌面应用
  1633. U.MD.D.click(this, obj);
  1634. }, [_jccssylStudentDeskIconInfo[i]])
  1635. }, _frag); //
  1636. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1637. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1638. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1639. }
  1640. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1641. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1642. _content = $$("div", {
  1643. className: "U_MD_D_KO",
  1644. "onmousedown": U.UF.C.closure(function (obj) {
  1645. //防止拖动图标即打开了桌面应用
  1646. U.MD.D.click(this, obj);
  1647. }, [_scnuaiStudentDeskIconInfo[i]]),
  1648. "onclick": U.UF.C.closure(function (obj) {
  1649. //防止拖动图标即打开了桌面应用
  1650. U.MD.D.click(this, obj);
  1651. }, [_scnuaiStudentDeskIconInfo[i]])
  1652. }, _frag); //
  1653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1656. }
  1657. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1658. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1659. _content = $$("div", {
  1660. className: "U_MD_D_KO",
  1661. "onmousedown": U.UF.C.closure(function (obj) {
  1662. //防止拖动图标即打开了桌面应用
  1663. U.MD.D.click(this, obj);
  1664. }, [_caleStudentDeskIconInfo[i]]),
  1665. "onclick": U.UF.C.closure(function (obj) {
  1666. //防止拖动图标即打开了桌面应用
  1667. U.MD.D.click(this, obj);
  1668. }, [_caleStudentDeskIconInfo[i]])
  1669. }, _frag); //
  1670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1673. }
  1674. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1675. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1676. _content = $$("div", {
  1677. className: "U_MD_D_KO",
  1678. "onmousedown": U.UF.C.closure(function (obj) {
  1679. //防止拖动图标即打开了桌面应用
  1680. U.MD.D.click(this, obj);
  1681. }, [_thuioeStudentDeskIconInfo[i]]),
  1682. "onclick": U.UF.C.closure(function (obj) {
  1683. //防止拖动图标即打开了桌面应用
  1684. U.MD.D.click(this, obj);
  1685. }, [_thuioeStudentDeskIconInfo[i]])
  1686. }, _frag); //
  1687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1690. }
  1691. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1692. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1693. _content = $$("div", {
  1694. className: "U_MD_D_KO",
  1695. "onmousedown": U.UF.C.closure(function (obj) {
  1696. //防止拖动图标即打开了桌面应用
  1697. U.MD.D.click(this, obj);
  1698. }, [_tpcStudentDeskIconInfo[i]]),
  1699. "onclick": U.UF.C.closure(function (obj) {
  1700. //防止拖动图标即打开了桌面应用
  1701. U.MD.D.click(this, obj);
  1702. }, [_tpcStudentDeskIconInfo[i]])
  1703. }, _frag); //
  1704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1707. } //
  1708. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1709. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1710. _content = $$("div", {
  1711. className: "U_MD_D_KO",
  1712. "onmousedown": U.UF.C.closure(function (obj) {
  1713. //防止拖动图标即打开了桌面应用
  1714. U.MD.D.click(this, obj);
  1715. }, [_chjyjStudentDeskIconInfo[i]]),
  1716. "onclick": U.UF.C.closure(function (obj) {
  1717. //防止拖动图标即打开了桌面应用
  1718. U.MD.D.click(this, obj);
  1719. }, [_chjyjStudentDeskIconInfo[i]])
  1720. }, _frag); //
  1721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1724. }
  1725. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1726. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1727. _content = $$("div", {
  1728. className: "U_MD_D_KO",
  1729. "onmousedown": U.UF.C.closure(function (obj) {
  1730. //防止拖动图标即打开了桌面应用
  1731. U.MD.D.click(this, obj);
  1732. }, [_szjkyStudentDeskIconInfo[i]]),
  1733. "onclick": U.UF.C.closure(function (obj) {
  1734. //防止拖动图标即打开了桌面应用
  1735. U.MD.D.click(this, obj);
  1736. }, [_szjkyStudentDeskIconInfo[i]])
  1737. }, _frag); //
  1738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1741. }
  1742. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1743. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1744. _content = $$("div", {
  1745. className: "U_MD_D_KO",
  1746. "onmousedown": U.UF.C.closure(function (obj) {
  1747. //防止拖动图标即打开了桌面应用
  1748. U.MD.D.click(this, obj);
  1749. }, [_dseiStudentDeskIconInfo[i]]),
  1750. "onclick": U.UF.C.closure(function (obj) {
  1751. //防止拖动图标即打开了桌面应用
  1752. U.MD.D.click(this, obj);
  1753. }, [_dseiStudentDeskIconInfo[i]])
  1754. }, _frag); //
  1755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1758. }
  1759. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1760. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1761. _content = $$("div", {
  1762. className: "U_MD_D_KO",
  1763. "onmousedown": U.UF.C.closure(function (obj) {
  1764. //防止拖动图标即打开了桌面应用
  1765. U.MD.D.click(this, obj);
  1766. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1767. "onclick": U.UF.C.closure(function (obj) {
  1768. //防止拖动图标即打开了桌面应用
  1769. U.MD.D.click(this, obj);
  1770. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1771. }, _frag); //
  1772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1775. }
  1776. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1777. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1778. _content = $$("div", {
  1779. className: "U_MD_D_KO",
  1780. "onmousedown": U.UF.C.closure(function (obj) {
  1781. //防止拖动图标即打开了桌面应用
  1782. U.MD.D.click(this, obj);
  1783. }, [_siesStudentDeskIconInfo[i]]),
  1784. "onclick": U.UF.C.closure(function (obj) {
  1785. //防止拖动图标即打开了桌面应用
  1786. U.MD.D.click(this, obj);
  1787. }, [_siesStudentDeskIconInfo[i]])
  1788. }, _frag); //
  1789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1792. }
  1793. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1794. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1795. _content = $$("div", {
  1796. className: "U_MD_D_KO",
  1797. "onmousedown": U.UF.C.closure(function (obj) {
  1798. //防止拖动图标即打开了桌面应用
  1799. U.MD.D.click(this, obj);
  1800. }, [_hkStudentDeskIconInfo[i]]),
  1801. "onclick": U.UF.C.closure(function (obj) {
  1802. //防止拖动图标即打开了桌面应用
  1803. U.MD.D.click(this, obj);
  1804. }, [_hkStudentDeskIconInfo[i]])
  1805. }, _frag); //
  1806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1809. }
  1810. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1811. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1812. _content = $$("div", {
  1813. className: "U_MD_D_KO",
  1814. "onmousedown": U.UF.C.closure(function (obj) {
  1815. //防止拖动图标即打开了桌面应用
  1816. U.MD.D.click(this, obj);
  1817. }, [_hkaceStudentDeskIconInfo[i]]),
  1818. "onclick": U.UF.C.closure(function (obj) {
  1819. //防止拖动图标即打开了桌面应用
  1820. U.MD.D.click(this, obj);
  1821. }, [_hkaceStudentDeskIconInfo[i]])
  1822. }, _frag); //
  1823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1826. }
  1827. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1828. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1829. _content = $$("div", {
  1830. className: "U_MD_D_KO",
  1831. "onmousedown": U.UF.C.closure(function (obj) {
  1832. //防止拖动图标即打开了桌面应用
  1833. U.MD.D.click(this, obj);
  1834. }, [_studentDesktopIconInfo[i]]),
  1835. "onclick": U.UF.C.closure(function (obj) {
  1836. //防止拖动图标即打开了桌面应用
  1837. U.MD.D.click(this, obj);
  1838. }, [_studentDesktopIconInfo[i]])
  1839. }, _frag); //
  1840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1843. }
  1844. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1845. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1846. _content = $$("div", {
  1847. className: "U_MD_D_KO",
  1848. "onmousedown": U.UF.C.closure(function (obj) {
  1849. //防止拖动图标即打开了桌面应用
  1850. U.MD.D.click(this, obj);
  1851. }, [_tcStudentDeskIconInfo[i]]),
  1852. "onclick": U.UF.C.closure(function (obj) {
  1853. //防止拖动图标即打开了桌面应用
  1854. U.MD.D.click(this, obj);
  1855. }, [_tcStudentDeskIconInfo[i]])
  1856. }, _frag); //
  1857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1860. }
  1861. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1862. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1863. _content = $$("div", {
  1864. className: "U_MD_D_KO",
  1865. "onmousedown": U.UF.C.closure(function (obj) {
  1866. //防止拖动图标即打开了桌面应用
  1867. U.MD.D.click(this, obj);
  1868. }, [_szscStudentDeskIconInfo[i]]),
  1869. "onclick": U.UF.C.closure(function (obj) {
  1870. //防止拖动图标即打开了桌面应用
  1871. U.MD.D.click(this, obj);
  1872. }, [_szscStudentDeskIconInfo[i]])
  1873. }, _frag); //
  1874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1877. }
  1878. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1879. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1880. _content = $$("div", {
  1881. className: "U_MD_D_KO",
  1882. "onmousedown": U.UF.C.closure(function (obj) {
  1883. //防止拖动图标即打开了桌面应用
  1884. U.MD.D.click(this, obj);
  1885. }, [_studentDesktopIconInfo3[i]]),
  1886. "onclick": U.UF.C.closure(function (obj) {
  1887. //防止拖动图标即打开了桌面应用
  1888. U.MD.D.click(this, obj);
  1889. }, [_studentDesktopIconInfo3[i]])
  1890. }, _frag); //
  1891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1894. }
  1895. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1896. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1897. _content = $$("div", {
  1898. className: "U_MD_D_KO",
  1899. "onmousedown": U.UF.C.closure(function (obj) {
  1900. //防止拖动图标即打开了桌面应用
  1901. U.MD.D.click(this, obj);
  1902. }, [_studentDesktopIconInfo2[i]]),
  1903. "onclick": U.UF.C.closure(function (obj) {
  1904. //防止拖动图标即打开了桌面应用
  1905. U.MD.D.click(this, obj);
  1906. }, [_studentDesktopIconInfo2[i]])
  1907. }, _frag); //
  1908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1911. }
  1912. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1913. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1914. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  1915. continue
  1916. }
  1917. _content = $$("div", {
  1918. className: "U_MD_D_KO",
  1919. "onmousedown": U.UF.C.closure(function (obj) {
  1920. //防止拖动图标即打开了桌面应用
  1921. U.MD.D.click(this, obj);
  1922. }, [_wanketeacherDesktopIconInfo[i]]),
  1923. "onclick": U.UF.C.closure(function (obj) {
  1924. //防止拖动图标即打开了桌面应用
  1925. U.MD.D.click(this, obj);
  1926. }, [_wanketeacherDesktopIconInfo[i]])
  1927. }, _frag); //
  1928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1931. }
  1932. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1933. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1934. _content = $$("div", {
  1935. className: "U_MD_D_KO",
  1936. "onmousedown": U.UF.C.closure(function (obj) {
  1937. //防止拖动图标即打开了桌面应用
  1938. U.MD.D.click(this, obj);
  1939. }, [_wankeAdminDesktopIconInfo[i]]),
  1940. "onclick": U.UF.C.closure(function (obj) {
  1941. //防止拖动图标即打开了桌面应用
  1942. U.MD.D.click(this, obj);
  1943. }, [_wankeAdminDesktopIconInfo[i]])
  1944. }, _frag); //
  1945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1948. }
  1949. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  1950. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  1951. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1952. continue
  1953. }
  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. }, [_scnuaiTeacherDeskIconInfo[i]]),
  1960. "onclick": U.UF.C.closure(function (obj) {
  1961. //防止拖动图标即打开了桌面应用
  1962. U.MD.D.click(this, obj);
  1963. }, [_scnuaiTeacherDeskIconInfo[i]])
  1964. }, _frag); //
  1965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  1967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  1968. }
  1969. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  1970. for (i = 0; i < _scnuaiAdminDeskIconInfo.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. }, [_scnuaiAdminDeskIconInfo[i]]),
  1977. "onclick": U.UF.C.closure(function (obj) {
  1978. //防止拖动图标即打开了桌面应用
  1979. U.MD.D.click(this, obj);
  1980. }, [_scnuaiAdminDeskIconInfo[i]])
  1981. }, _frag); //
  1982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  1984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  1985. }
  1986. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1987. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1988. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1989. continue
  1990. }
  1991. _content = $$("div", {
  1992. className: "U_MD_D_KO",
  1993. "onmousedown": U.UF.C.closure(function (obj) {
  1994. //防止拖动图标即打开了桌面应用
  1995. U.MD.D.click(this, obj);
  1996. }, [_jccssylTeacherDeskIconInfo[i]]),
  1997. "onclick": U.UF.C.closure(function (obj) {
  1998. //防止拖动图标即打开了桌面应用
  1999. U.MD.D.click(this, obj);
  2000. }, [_jccssylTeacherDeskIconInfo[i]])
  2001. }, _frag); //
  2002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2005. }
  2006. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2007. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2008. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2009. continue
  2010. }
  2011. _content = $$("div", {
  2012. className: "U_MD_D_KO",
  2013. "onmousedown": U.UF.C.closure(function (obj) {
  2014. //防止拖动图标即打开了桌面应用
  2015. U.MD.D.click(this, obj);
  2016. }, [_caleTeacherDeskIconInfo[i]]),
  2017. "onclick": U.UF.C.closure(function (obj) {
  2018. //防止拖动图标即打开了桌面应用
  2019. U.MD.D.click(this, obj);
  2020. }, [_caleTeacherDeskIconInfo[i]])
  2021. }, _frag); //
  2022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2025. }
  2026. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2027. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2028. _content = $$("div", {
  2029. className: "U_MD_D_KO",
  2030. "onmousedown": U.UF.C.closure(function (obj) {
  2031. //防止拖动图标即打开了桌面应用
  2032. U.MD.D.click(this, obj);
  2033. }, [_tpcOrganizerDeskIconInfo[i]]),
  2034. "onclick": U.UF.C.closure(function (obj) {
  2035. //防止拖动图标即打开了桌面应用
  2036. U.MD.D.click(this, obj);
  2037. }, [_tpcOrganizerDeskIconInfo[i]])
  2038. }, _frag); //
  2039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2042. }
  2043. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2044. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2045. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2046. continue
  2047. }
  2048. _content = $$("div", {
  2049. className: "U_MD_D_KO",
  2050. "onmousedown": U.UF.C.closure(function (obj) {
  2051. //防止拖动图标即打开了桌面应用
  2052. U.MD.D.click(this, obj);
  2053. }, [_tpcTeacherDeskIconInfo[i]]),
  2054. "onclick": U.UF.C.closure(function (obj) {
  2055. //防止拖动图标即打开了桌面应用
  2056. U.MD.D.click(this, obj);
  2057. }, [_tpcTeacherDeskIconInfo[i]])
  2058. }, _frag); //
  2059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2062. }
  2063. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2064. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2065. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2066. continue
  2067. }
  2068. _content = $$("div", {
  2069. className: "U_MD_D_KO",
  2070. "onmousedown": U.UF.C.closure(function (obj) {
  2071. //防止拖动图标即打开了桌面应用
  2072. U.MD.D.click(this, obj);
  2073. }, [_teacherDesktopIconInfo2[i]]),
  2074. "onclick": U.UF.C.closure(function (obj) {
  2075. //防止拖动图标即打开了桌面应用
  2076. U.MD.D.click(this, obj);
  2077. }, [_teacherDesktopIconInfo2[i]])
  2078. }, _frag); //
  2079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2082. }
  2083. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2084. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2085. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2086. continue
  2087. }
  2088. _content = $$("div", {
  2089. className: "U_MD_D_KO",
  2090. "onmousedown": U.UF.C.closure(function (obj) {
  2091. //防止拖动图标即打开了桌面应用
  2092. U.MD.D.click(this, obj);
  2093. }, [_thuioeTeacherDeskIconInfo[i]]),
  2094. "onclick": U.UF.C.closure(function (obj) {
  2095. //防止拖动图标即打开了桌面应用
  2096. U.MD.D.click(this, obj);
  2097. }, [_thuioeTeacherDeskIconInfo[i]])
  2098. }, _frag); //
  2099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2102. }
  2103. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2104. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2105. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2106. continue
  2107. }
  2108. _content = $$("div", {
  2109. className: "U_MD_D_KO",
  2110. "onmousedown": U.UF.C.closure(function (obj) {
  2111. //防止拖动图标即打开了桌面应用
  2112. U.MD.D.click(this, obj);
  2113. }, [_lotechTeacherDeskIconInfo[i]]),
  2114. "onclick": U.UF.C.closure(function (obj) {
  2115. //防止拖动图标即打开了桌面应用
  2116. U.MD.D.click(this, obj);
  2117. }, [_lotechTeacherDeskIconInfo[i]])
  2118. }, _frag); //
  2119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2122. }//
  2123. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2124. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2125. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2126. continue
  2127. }
  2128. _content = $$("div", {
  2129. className: "U_MD_D_KO",
  2130. "onmousedown": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2134. "onclick": U.UF.C.closure(function (obj) {
  2135. //防止拖动图标即打开了桌面应用
  2136. U.MD.D.click(this, obj);
  2137. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2138. }, _frag); //
  2139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2142. }
  2143. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2144. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2145. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2146. continue
  2147. }
  2148. _content = $$("div", {
  2149. className: "U_MD_D_KO",
  2150. "onmousedown": U.UF.C.closure(function (obj) {
  2151. //防止拖动图标即打开了桌面应用
  2152. U.MD.D.click(this, obj);
  2153. }, [_siesTeacherDeskIconInfo[i]]),
  2154. "onclick": U.UF.C.closure(function (obj) {
  2155. //防止拖动图标即打开了桌面应用
  2156. U.MD.D.click(this, obj);
  2157. }, [_siesTeacherDeskIconInfo[i]])
  2158. }, _frag); //
  2159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2162. }
  2163. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2164. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2165. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2166. continue
  2167. }
  2168. _content = $$("div", {
  2169. className: "U_MD_D_KO",
  2170. "onmousedown": U.UF.C.closure(function (obj) {
  2171. //防止拖动图标即打开了桌面应用
  2172. U.MD.D.click(this, obj);
  2173. }, [_longhuaTeacherDeskIconInfo[i]]),
  2174. "onclick": U.UF.C.closure(function (obj) {
  2175. //防止拖动图标即打开了桌面应用
  2176. U.MD.D.click(this, obj);
  2177. }, [_longhuaTeacherDeskIconInfo[i]])
  2178. }, _frag); //
  2179. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2182. }
  2183. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2184. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2185. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2186. continue
  2187. }
  2188. _content = $$("div", {
  2189. className: "U_MD_D_KO",
  2190. "onmousedown": U.UF.C.closure(function (obj) {
  2191. //防止拖动图标即打开了桌面应用
  2192. U.MD.D.click(this, obj);
  2193. }, [_ytyTeacherDeskIconInfo[i]]),
  2194. "onclick": U.UF.C.closure(function (obj) {
  2195. //防止拖动图标即打开了桌面应用
  2196. U.MD.D.click(this, obj);
  2197. }, [_ytyTeacherDeskIconInfo[i]])
  2198. }, _frag); //
  2199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2202. }
  2203. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2204. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2205. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2206. continue
  2207. }
  2208. _content = $$("div", {
  2209. className: "U_MD_D_KO",
  2210. "onmousedown": U.UF.C.closure(function (obj) {
  2211. //防止拖动图标即打开了桌面应用
  2212. U.MD.D.click(this, obj);
  2213. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2214. "onclick": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_yunhaiTeacherDeskIconInfo[i]])
  2218. }, _frag); //
  2219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2222. } //_hkStudentDeskIconInfo
  2223. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2224. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2225. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2226. continue
  2227. }
  2228. _content = $$("div", {
  2229. className: "U_MD_D_KO",
  2230. "onmousedown": U.UF.C.closure(function (obj) {
  2231. //防止拖动图标即打开了桌面应用
  2232. U.MD.D.click(this, obj);
  2233. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2234. "onclick": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2238. }, _frag); //
  2239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2242. }
  2243. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2244. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2245. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2246. continue
  2247. }
  2248. _content = $$("div", {
  2249. className: "U_MD_D_KO",
  2250. "onmousedown": U.UF.C.closure(function (obj) {
  2251. //防止拖动图标即打开了桌面应用
  2252. U.MD.D.click(this, obj);
  2253. }, [_hkTeacherDeskIconInfo[i]]),
  2254. "onclick": U.UF.C.closure(function (obj) {
  2255. //防止拖动图标即打开了桌面应用
  2256. U.MD.D.click(this, obj);
  2257. }, [_hkTeacherDeskIconInfo[i]])
  2258. }, _frag); //
  2259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2262. }
  2263. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2264. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2265. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2266. continue
  2267. }
  2268. _content = $$("div", {
  2269. className: "U_MD_D_KO",
  2270. "onmousedown": U.UF.C.closure(function (obj) {
  2271. //防止拖动图标即打开了桌面应用
  2272. U.MD.D.click(this, obj);
  2273. }, [_hkaceTeacherDeskIconInfo[i]]),
  2274. "onclick": U.UF.C.closure(function (obj) {
  2275. //防止拖动图标即打开了桌面应用
  2276. U.MD.D.click(this, obj);
  2277. }, [_hkaceTeacherDeskIconInfo[i]])
  2278. }, _frag); //
  2279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2282. }
  2283. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2284. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2285. _content = $$("div", {
  2286. className: "U_MD_D_KO",
  2287. "onmousedown": U.UF.C.closure(function (obj) {
  2288. //防止拖动图标即打开了桌面应用
  2289. U.MD.D.click(this, obj);
  2290. }, [_gdjgAdminDeskIconInfo[i]]),
  2291. "onclick": U.UF.C.closure(function (obj) {
  2292. //防止拖动图标即打开了桌面应用
  2293. U.MD.D.click(this, obj);
  2294. }, [_gdjgAdminDeskIconInfo[i]])
  2295. }, _frag); //
  2296. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2297. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2298. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2299. }
  2300. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2301. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2302. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2303. continue
  2304. }
  2305. _content = $$("div", {
  2306. className: "U_MD_D_KO",
  2307. "onmousedown": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_gdjgTeacherDeskIconInfo[i]]),
  2311. "onclick": U.UF.C.closure(function (obj) {
  2312. //防止拖动图标即打开了桌面应用
  2313. U.MD.D.click(this, obj);
  2314. }, [_gdjgTeacherDeskIconInfo[i]])
  2315. }, _frag); //
  2316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2319. }
  2320. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2321. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2322. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2323. continue
  2324. }
  2325. _content = $$("div", {
  2326. className: "U_MD_D_KO",
  2327. "onmousedown": U.UF.C.closure(function (obj) {
  2328. //防止拖动图标即打开了桌面应用
  2329. U.MD.D.click(this, obj);
  2330. }, [_szherTeacherDeskIconInfo[i]]),
  2331. "onclick": U.UF.C.closure(function (obj) {
  2332. //防止拖动图标即打开了桌面应用
  2333. U.MD.D.click(this, obj);
  2334. }, [_szherTeacherDeskIconInfo[i]])
  2335. }, _frag); //
  2336. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2337. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2338. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2339. }
  2340. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2341. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2342. _content = $$("div", {
  2343. className: "U_MD_D_KO",
  2344. "onmousedown": U.UF.C.closure(function (obj) {
  2345. //防止拖动图标即打开了桌面应用
  2346. U.MD.D.click(this, obj);
  2347. }, [_heyuannAdminDeskIconInfo[i]]),
  2348. "onclick": U.UF.C.closure(function (obj) {
  2349. //防止拖动图标即打开了桌面应用
  2350. U.MD.D.click(this, obj);
  2351. }, [_heyuannAdminDeskIconInfo[i]])
  2352. }, _frag); //
  2353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2356. }
  2357. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2358. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2359. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2360. continue
  2361. }
  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. }, [_heyuanTeacherDeskIconInfo[i]]),
  2368. "onclick": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_heyuanTeacherDeskIconInfo[i]])
  2372. }, _frag); //
  2373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2376. } //
  2377. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2378. for (i = 0; i < _dseiAdminDeskIconInfo.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. }, [_dseiAdminDeskIconInfo[i]]),
  2385. "onclick": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_dseiAdminDeskIconInfo[i]])
  2389. }, _frag); //
  2390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2393. }
  2394. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2395. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2396. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2397. continue
  2398. }
  2399. _content = $$("div", {
  2400. className: "U_MD_D_KO",
  2401. "onmousedown": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_dseiTeacherDeskIconInfo[i]]),
  2405. "onclick": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_dseiTeacherDeskIconInfo[i]])
  2409. }, _frag); //
  2410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2413. } //
  2414. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2415. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2416. _content = $$("div", {
  2417. className: "U_MD_D_KO",
  2418. "onmousedown": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_chjyjAdminDeskIconInfo[i]]),
  2422. "onclick": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_chjyjAdminDeskIconInfo[i]])
  2426. }, _frag); //
  2427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2430. }//
  2431. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2432. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2433. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2434. continue
  2435. }
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_chjyjTeacherDeskIconInfo[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_chjyjTeacherDeskIconInfo[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2450. }
  2451. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2452. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2453. _content = $$("div", {
  2454. className: "U_MD_D_KO",
  2455. "onmousedown": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_szjkyAdminDeskIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_szjkyAdminDeskIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2467. }//
  2468. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2469. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2470. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2471. continue
  2472. }
  2473. _content = $$("div", {
  2474. className: "U_MD_D_KO",
  2475. "onmousedown": U.UF.C.closure(function (obj) {
  2476. //防止拖动图标即打开了桌面应用
  2477. U.MD.D.click(this, obj);
  2478. }, [_szjkyTeacherDeskIconInfo[i]]),
  2479. "onclick": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_szjkyTeacherDeskIconInfo[i]])
  2483. }, _frag); //
  2484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2487. }
  2488. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2489. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2490. _content = $$("div", {
  2491. className: "U_MD_D_KO",
  2492. "onmousedown": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_futianAdminDeskIconInfo[i]]),
  2496. "onclick": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_futianAdminDeskIconInfo[i]])
  2500. }, _frag); //
  2501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2504. }
  2505. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2506. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2507. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2508. continue
  2509. }
  2510. _content = $$("div", {
  2511. className: "U_MD_D_KO",
  2512. "onmousedown": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_futianTeacherDeskIconInfo[i]]),
  2516. "onclick": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_futianTeacherDeskIconInfo[i]])
  2520. }, _frag); //
  2521. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2522. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2523. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2524. }
  2525. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2526. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2527. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2528. continue
  2529. }
  2530. _content = $$("div", {
  2531. className: "U_MD_D_KO",
  2532. "onmousedown": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_MingdeTeacherDeskIcon[i]]),
  2536. "onclick": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_MingdeTeacherDeskIcon[i]])
  2540. }, _frag); //
  2541. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2542. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2543. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2544. }
  2545. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2546. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2547. _content = $$("div", {
  2548. className: "U_MD_D_KO",
  2549. "onmousedown": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_lhsAdminDesktopIconInfo[i]]),
  2553. "onclick": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_lhsAdminDesktopIconInfo[i]])
  2557. }, _frag); //
  2558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2561. }
  2562. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2563. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2564. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2565. continue
  2566. }
  2567. _content = $$("div", {
  2568. className: "U_MD_D_KO",
  2569. "onmousedown": U.UF.C.closure(function (obj) {
  2570. //防止拖动图标即打开了桌面应用
  2571. U.MD.D.click(this, obj);
  2572. }, [_lhsteacherDesktopIconInfo[i]]),
  2573. "onclick": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_lhsteacherDesktopIconInfo[i]])
  2577. }, _frag); //
  2578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2581. }
  2582. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2583. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2584. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2585. continue
  2586. }
  2587. _content = $$("div", {
  2588. className: "U_MD_D_KO",
  2589. "onmousedown": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2593. "onclick": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_zhoujiateacherDesktopIconInfo[i]])
  2597. }, _frag); //
  2598. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2599. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2600. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2601. }
  2602. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2603. for (i = 0; i < _hanDeskIcon.length; i++) {
  2604. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2605. continue
  2606. }
  2607. _content = $$("div", {
  2608. className: "U_MD_D_KO",
  2609. "onmousedown": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_hanDeskIcon[i]]),
  2613. "onclick": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_hanDeskIcon[i]])
  2617. }, _frag); //
  2618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2621. }
  2622. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2623. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2624. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2625. continue
  2626. }
  2627. _content = $$("div", {
  2628. className: "U_MD_D_KO",
  2629. "onmousedown": U.UF.C.closure(function (obj) {
  2630. //防止拖动图标即打开了桌面应用
  2631. U.MD.D.click(this, obj);
  2632. }, [_orgStemDeskIcon[i]]),
  2633. "onclick": U.UF.C.closure(function (obj) {
  2634. //防止拖动图标即打开了桌面应用
  2635. U.MD.D.click(this, obj);
  2636. }, [_orgStemDeskIcon[i]])
  2637. }, _frag); //
  2638. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2639. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2640. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2641. }
  2642. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2643. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2644. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2645. continue
  2646. }
  2647. _content = $$("div", {
  2648. className: "U_MD_D_KO",
  2649. "onmousedown": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_szulsDeskIcon[i]]),
  2653. "onclick": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_szulsDeskIcon[i]])
  2657. }, _frag); //
  2658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2661. }
  2662. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2663. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2664. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2665. continue
  2666. }
  2667. _content = $$("div", {
  2668. className: "U_MD_D_KO",
  2669. "onmousedown": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_orgDesktopIconInfo[i]]),
  2673. "onclick": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_orgDesktopIconInfo[i]])
  2677. }, _frag); //
  2678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2681. }
  2682. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2683. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2684. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2685. continue
  2686. }
  2687. _content = $$("div", {
  2688. className: "U_MD_D_KO",
  2689. "onmousedown": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_schoolDesktopIconInfo[i]]),
  2693. "onclick": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_schoolDesktopIconInfo[i]])
  2697. }, _frag); //
  2698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2701. }
  2702. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2703. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2704. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2705. continue
  2706. }
  2707. _content = $$("div", {
  2708. className: "U_MD_D_KO",
  2709. "onmousedown": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_GMteacherDesktopIconInfo[i]]),
  2713. "onclick": U.UF.C.closure(function (obj) {
  2714. //防止拖动图标即打开了桌面应用
  2715. U.MD.D.click(this, obj);
  2716. }, [_GMteacherDesktopIconInfo[i]])
  2717. }, _frag); //
  2718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2721. }
  2722. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2723. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2724. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2725. continue
  2726. }
  2727. _content = $$("div", {
  2728. className: "U_MD_D_KO",
  2729. "onmousedown": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_SONGteacherDesktopIconInfo[i]]),
  2733. "onclick": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_SONGteacherDesktopIconInfo[i]])
  2737. }, _frag); //
  2738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2741. }
  2742. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2743. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2744. _content = $$("div", {
  2745. className: "U_MD_D_KO",
  2746. "onmousedown": U.UF.C.closure(function (obj) {
  2747. //防止拖动图标即打开了桌面应用
  2748. U.MD.D.click(this, obj);
  2749. }, [_GMstudentDesktopIconInfo[i]]),
  2750. "onclick": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_GMstudentDesktopIconInfo[i]])
  2754. }, _frag); //
  2755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2758. }
  2759. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2760. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2761. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2762. continue
  2763. }
  2764. _content = $$("div", {
  2765. className: "U_MD_D_KO",
  2766. "onmousedown": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_tcTeacherDeskIconInfo[i]]),
  2770. "onclick": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_tcTeacherDeskIconInfo[i]])
  2774. }, _frag); //
  2775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2778. }
  2779. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2780. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2781. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2782. continue
  2783. }
  2784. _content = $$("div", {
  2785. className: "U_MD_D_KO",
  2786. "onmousedown": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_tcOrganizerDeskIconInfo[i]]),
  2790. "onclick": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_tcOrganizerDeskIconInfo[i]])
  2794. }, _frag); //
  2795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2798. }
  2799. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2800. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2801. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2802. continue
  2803. }
  2804. _content = $$("div", {
  2805. className: "U_MD_D_KO",
  2806. "onmousedown": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_szscTeacherDeskIconInfo[i]]),
  2810. "onclick": U.UF.C.closure(function (obj) {
  2811. //防止拖动图标即打开了桌面应用
  2812. U.MD.D.click(this, obj);
  2813. }, [_szscTeacherDeskIconInfo[i]])
  2814. }, _frag); //
  2815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2818. }
  2819. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2820. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2821. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2822. continue
  2823. }
  2824. _content = $$("div", {
  2825. className: "U_MD_D_KO",
  2826. "onmousedown": U.UF.C.closure(function (obj) {
  2827. //防止拖动图标即打开了桌面应用
  2828. U.MD.D.click(this, obj);
  2829. }, [_szscOrganizerDeskIconInfo[i]]),
  2830. "onclick": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_szscOrganizerDeskIconInfo[i]])
  2834. }, _frag); //
  2835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2838. }
  2839. } else {
  2840. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2841. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher'){
  2842. continue
  2843. }
  2844. _content = $$("div", {
  2845. className: "U_MD_D_KO",
  2846. "onmousedown": U.UF.C.closure(function (obj) {
  2847. //防止拖动图标即打开了桌面应用
  2848. U.MD.D.click(this, obj);
  2849. }, [_teacherDesktopIconInfo[i]]),
  2850. "onclick": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_teacherDesktopIconInfo[i]])
  2854. }, _frag); //
  2855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2858. }
  2859. }
  2860. } else {
  2861. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2862. _content = $$("div", {
  2863. className: "U_MD_D_KO",
  2864. style: { 'width': '124px', 'height': '145px' },
  2865. "onmousedown": U.UF.C.closure(function (obj) {
  2866. //防止拖动图标即打开了桌面应用
  2867. U.MD.D.click(this, obj);
  2868. }, [_easyDesktopIconInfo[i]]),
  2869. "onclick": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_easyDesktopIconInfo[i]])
  2873. }, _frag); //
  2874. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2877. }
  2878. }
  2879. if (type == 1) {
  2880. //加载好后给图标定位
  2881. U.MD.D.iconPostion($(_frag).Child());
  2882. } else {
  2883. //加载好后给图标定位
  2884. U.MD.D.iconPostion2($(_frag).Child());
  2885. }
  2886. //把图标加载到页面
  2887. el.appendChild(_frag);
  2888. }
  2889. /**
  2890. * 显示任务栏
  2891. *
  2892. * @param {element} 桌面元素
  2893. */
  2894. U.MD.D.I.displayTaskbar = function (el) {
  2895. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2896. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2897. //任务栏位置变化
  2898. U.selectEl(el).css({ "bottom": "0px" });
  2899. //桌面位置变话
  2900. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2901. }
  2902. }
  2903. //#region 桌面图标拖动逻辑
  2904. /**
  2905. * 桌面排列图标
  2906. *
  2907. * @param {element} 桌面元素
  2908. * @param {object} 上下相距的距离
  2909. * @param {object} 左右相距的距离
  2910. * @return {object} 命名空间
  2911. */
  2912. U.MD.D.iconPostion = function (childs, top, left) {
  2913. var i; //用于循环处理
  2914. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2915. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2916. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2917. for (i = 0; i < childs.length; i++) {
  2918. //如果竖排top超过了范围处理
  2919. if (top + 95 > US.height - 10) {
  2920. //left超过了页面范围处理,则向上重叠打印处理
  2921. if ((left + 180) > US.width) {
  2922. top -= 110;
  2923. left -= 90;
  2924. }
  2925. //没有超过范围,那么left+90添加到下一个竖排打印
  2926. else {
  2927. left += 90;
  2928. top = 15;
  2929. };
  2930. }
  2931. //给图标的位置赋值
  2932. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2933. if (i < childs.length - 1) {
  2934. //页面图标每次向下加95
  2935. top += 95;
  2936. }
  2937. }
  2938. //返回最后调用的图标的位置
  2939. return [top, left];
  2940. }
  2941. /**
  2942. * 桌面排列图标
  2943. *
  2944. * @param {element} 桌面元素
  2945. * @param {object} 上下相距的距离
  2946. * @param {object} 左右相距的距离
  2947. * @return {object} 命名空间
  2948. */
  2949. U.MD.D.iconPostion2 = function (childs, top, left) {
  2950. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2951. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2952. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2953. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2954. for (i = 0; i < childs.length; i++) {
  2955. //如果竖排top超过了范围处理
  2956. if (left + 150 > US.width - 10) {
  2957. //left超过了页面范围处理,则向上重叠打印处理
  2958. if ((top + 180) > US.Height) {
  2959. top -= 150;
  2960. left -= 150;
  2961. }
  2962. //没有超过范围,那么left+90添加到下一个竖排打印
  2963. else {
  2964. top += 150;
  2965. left = ol;
  2966. };
  2967. }
  2968. //给图标的位置赋值
  2969. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2970. if (i < childs.length - 1) {
  2971. //页面图标每次向下加95
  2972. left += 150;
  2973. }
  2974. }
  2975. //返回最后调用的图标的位置
  2976. return [top, left];
  2977. }
  2978. /**
  2979. * 桌面点击事件逻辑
  2980. *
  2981. * @param {element} 桌面元素
  2982. * @param {object} 上下相距的距离
  2983. * @param {object} 左右相距的距离
  2984. * @return {object} 命名空间
  2985. */
  2986. U.MD.D.click = function (el, obj) {
  2987. var _buttonnumber = event.button; //点击的按钮的事件值
  2988. var _userinfo = US.userInfo;
  2989. U.UF.EV.stopBubble(); //阻止向上冒泡
  2990. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2991. if (_buttonnumber < 2) {
  2992. //如果是click事件的处理
  2993. if (event.type == "click") {
  2994. //如果元素在mousemove事件中没有移动则出发click事件
  2995. if (!U.MD.D.I.IsDrag) {
  2996. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2997. U.alert("请先登录您的账号!");
  2998. setTimeout(() => {
  2999. U.MD.U.L.login();
  3000. }, 2000);
  3001. } else {
  3002. //打开应用处理
  3003. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3004. }
  3005. }
  3006. }
  3007. //如果是mouse事件的处理
  3008. else {
  3009. if (US.Config.type == '1') {
  3010. //拖动处理,添加拖动和拖动结束事件
  3011. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3012. }
  3013. }
  3014. U.MD.D.I.IsDrag = false;
  3015. }
  3016. }
  3017. /**
  3018. * 拖动的处理
  3019. *
  3020. */
  3021. U.MD.D.iconMove = function () {
  3022. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3023. U.MD.D.I.IsDrag = true;
  3024. }
  3025. /**
  3026. * 拖动结束后,这里是定位处理,以网状的形式定位
  3027. *
  3028. * @param {element} 拖动的元素
  3029. * @return {object} 命名空间
  3030. */
  3031. U.MD.D.iconUp = function (el) {
  3032. var _top = 15,
  3033. _left = 20,
  3034. _margin,
  3035. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3036. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3037. if (_positioninfo["OT"] > 15) {
  3038. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3039. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3040. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3041. }
  3042. if (_positioninfo["OL"] > 20) {
  3043. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3044. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3045. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3046. }
  3047. //while循环判断么一个重叠的元素
  3048. do {
  3049. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3050. _top = _positioninfo[0] + 95; //得到定位后的top
  3051. _left = _positioninfo[1]; //得到定位后的left
  3052. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3053. }
  3054. /**
  3055. * 判断拖动后图标是否重叠
  3056. *
  3057. * @param {element} 拖动的元素
  3058. * @param {element} 桌面所有的元素
  3059. * @param {array} 拖动元素的位置
  3060. ----------[0] 上 top
  3061. ----------[1] 左 left
  3062. * @return {object} 命名空间
  3063. */
  3064. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3065. //循环所有的图标
  3066. for (var i = 0; i < childs.length; i++) {
  3067. //判断有没有和该图标诶子重叠的元素
  3068. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3069. return childs[i]; //如果有返回
  3070. }
  3071. }
  3072. }
  3073. //#endregion
  3074. //#endregion
  3075. //#region 桌面应用
  3076. /**
  3077. * 打开应用
  3078. *
  3079. * @param {string} 类型
  3080. -----------------Disk 网盘系统
  3081. -----------------PDisk 学习系统网盘
  3082. -----------------Poto 图片
  3083. -----------------Video 视频
  3084. -----------------Music 音乐
  3085. -----------------Word word
  3086. -----------------Excel excel
  3087. -----------------Txt 记事本
  3088. -----------------PB 学习系统
  3089. -----------------Blog 朋友圈系统
  3090. -----------------FTP ftp系统
  3091. -----------------Group 好友群
  3092. -----------------SY 首页系统
  3093. -----------------Set 个人设置
  3094. -----------------XSet 系统设置
  3095. -----------------App 我们所有的app
  3096. -----------------BC c.1473.cn 平台
  3097. -----------------CWeb d.1473.cn 变成平台
  3098. -----------------其他的外联系统 我们统一用iframe打开
  3099. * @param {array} 类型
  3100. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3101. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3102. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3103. 如果第一个参数为其他,则无第二个参数
  3104. * @returns {array}
  3105. */
  3106. window.addEventListener('message', function (e) { // 监听 message 事件
  3107. // alert(e.data.type);
  3108. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3109. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3110. //3是展示全部阶段 2学生 1老师 4专家
  3111. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3112. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3113. //3是展示全部阶段 2学生 1老师 4专家
  3114. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3115. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3116. //3是展示全部阶段 2学生 1老师 4专家
  3117. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3118. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3119. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3120. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3121. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3122. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3123. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3124. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3125. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3126. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3127. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3128. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3129. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3130. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3131. //3是展示全部阶段 2学生 1老师 4专家
  3132. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3133. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3134. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3135. U.MD.D.I.selectUser();
  3136. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3137. var _formel = document.getElementById("study");
  3138. U.UF.F.windowZooming(_formel);
  3139. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3140. var _formel = document.getElementById("studyDetail");
  3141. U.UF.F.windowZooming(_formel);
  3142. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3143. var _formel = document.getElementById("studyDetail");
  3144. U.UF.F.windowZooming(_formel);
  3145. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3146. var _formel = document.getElementById("studentStudy");
  3147. U.UF.F.windowZooming(_formel);
  3148. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3149. // var _formel = document.getElementById("study");
  3150. //如果最大化了,那么就把他缩小
  3151. // if (_formel.ismaximize) {
  3152. // return;
  3153. // }
  3154. // U.UF.F.windowZooming(_formel);
  3155. // U.UF.F.topWindow(_formel);
  3156. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3157. // var _formel = document.getElementById("studyDetail");
  3158. //如果最大化了,那么就把他缩小
  3159. // if (_formel.ismaximize) {
  3160. // return;
  3161. // }
  3162. // U.UF.F.windowZooming(_formel);
  3163. // U.UF.F.topWindow(_formel);
  3164. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3165. // var _formel = document.getElementById("studentStudy");
  3166. // if (_formel.ismaximize) {
  3167. // return;
  3168. // }
  3169. // U.UF.F.windowZooming(_formel);
  3170. // U.UF.F.topWindow(_formel);
  3171. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3172. var _formel = document.getElementById("study");
  3173. // if (_formel.ismaximize) {
  3174. // return;
  3175. // }
  3176. // U.UF.F.windowZooming(_formel);
  3177. U.UF.F.topWindow(_formel);
  3178. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3179. var _formel = document.getElementById("studentIndex");
  3180. U.UF.F.windowZooming(_formel);
  3181. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3182. var _formel = document.getElementById("studyDetailS");
  3183. U.UF.F.windowZooming(_formel);
  3184. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3185. var _formel = document.getElementById("studioIndex");
  3186. U.UF.F.windowZooming(_formel);
  3187. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3188. var _formel = document.getElementById("studyDetailStudio");
  3189. U.UF.F.windowZooming(_formel);
  3190. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3191. var _formel = document.getElementById("studyDetailStudio");
  3192. U.UF.F.windowZooming(_formel);
  3193. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3194. var _formel = document.getElementById("studyDetailNT");
  3195. U.UF.F.windowZooming(_formel);
  3196. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3197. var _formel = document.getElementById("studyDetailS");
  3198. U.UF.F.windowZooming(_formel);
  3199. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3200. var _formel = document.getElementById("studyDetailS");
  3201. U.UF.F.topWindow(_formel);
  3202. } else if (e.data.tools && e.data.tools == "1") {
  3203. // U.MD.D.I.openApplication("whiteboard")
  3204. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3205. } else if (e.data.tools && e.data.tools == "2") {
  3206. U.MD.D.I.openApplication("note")
  3207. } else if (e.data.tools && e.data.tools == "3") {
  3208. // U.MD.D.I.openApplication("mind")
  3209. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3210. } else if (e.data.tools && e.data.tools == "4") {
  3211. U.MD.D.I.openApplication("investigation")
  3212. } else if (e.data.tools && e.data.tools == "6") {
  3213. // U.MD.D.I.openApplication("doc")
  3214. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3215. } else if (e.data.tools && e.data.tools == "7") {
  3216. // U.MD.D.I.openApplication("mindNetwork")
  3217. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3218. } else if (e.data.tools && e.data.tools == "8") {
  3219. U.MD.D.I.openApplication("library")
  3220. } else if (e.data.tools && e.data.tools == "17") {
  3221. U.MD.D.I.openApplication("stuLibrary")
  3222. } else if (e.data.tools && e.data.tools == "18") {
  3223. U.MD.D.I.openApplication("train")
  3224. } else if (e.data.tools && e.data.tools == "21") {
  3225. U.MD.D.I.openApplication("program")
  3226. } else if (e.data.tools && e.data.tools == "22") {
  3227. U.MD.D.I.openApplication("AIprogram2")
  3228. } else if (e.data.tools && e.data.tools == "23") {
  3229. U.MD.D.I.openApplication("Pythonprogram")
  3230. } else if (e.data.tools && e.data.tools == "24") {
  3231. U.MD.D.I.openApplication("AIprogram")
  3232. } else if (e.data.tools && e.data.tools == "25") {
  3233. U.MD.D.I.openApplication("sys")
  3234. } else if (e.data.tools && e.data.tools == "26") {
  3235. // U.MD.D.I.openApplication("courseDesign")
  3236. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3237. } else if (e.data.tools && e.data.tools == "31") {
  3238. U.MD.D.I.openApplication("netWorkPanel")
  3239. } else if (e.data.tools && e.data.tools == "32") {
  3240. U.MD.D.I.openApplication("codeEdit")
  3241. } else if (e.data.tools && e.data.tools == "57") {
  3242. U.MD.D.I.openApplication("CocoPi")
  3243. } else if (e.data.tools && e.data.tools == "63") {
  3244. U.MD.D.I.openApplication("Wood")
  3245. } else if (e.data.tools && e.data.tools == "58") {
  3246. U.MD.D.I.openApplication("car")
  3247. } else if (e.data.tools && e.data.tools == "59") {
  3248. U.MD.D.I.openApplication("lineSearch")
  3249. } else if (e.data.tools && e.data.tools == "60") {
  3250. U.MD.D.I.openApplication("deepLearning")
  3251. } else if (e.data.tools && e.data.tools == "61") {
  3252. U.MD.D.I.openApplication("allHistory")
  3253. } else if (e.data.tools && e.data.tools == "28") {
  3254. U.MD.D.I.openApplication("translation")
  3255. } else if (e.data.tools && e.data.tools == "37") {
  3256. U.MD.D.I.openApplication("mohe")
  3257. } else if (e.data.tools && e.data.tools == "38") {
  3258. U.MD.D.I.openApplication("24game")
  3259. } else if (e.data.tools && e.data.tools == "39") {
  3260. U.MD.D.I.openApplication("GeoGebra")
  3261. } else if (e.data.tools && e.data.tools == "43") {
  3262. U.MD.D.I.openApplication("studentEvaluate")
  3263. } else if (e.data.tools && e.data.tools == "44") {
  3264. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3265. } else if (e.data.tools && e.data.tools == "46") {
  3266. U.MD.D.I.openApplication("project")
  3267. } else if (e.data.tools && e.data.tools == "71") {
  3268. U.MD.D.I.openApplication("aigptCourse")
  3269. } else if (e.data.tools && e.data.tools == "1s") {
  3270. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3271. } else if (e.data.tools && e.data.tools == "3s") {
  3272. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3273. } else if (e.data.tools && e.data.tools == "6s") {
  3274. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3275. } else if (e.data.tools && e.data.tools == "1studio") {
  3276. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3277. } else if (e.data.tools && e.data.tools == "3studio") {
  3278. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3279. } else if (e.data.tools && e.data.tools == "6studio") {
  3280. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3281. } else if (e.data.tools && e.data.tools == "3y") {
  3282. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3283. } else if (e.data.tools && e.data.tools == "1y") {
  3284. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3285. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3286. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3287. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3288. U.MD.D.I.openApplication("AIAnalyse")
  3289. } else if (e.data.tools && e.data.tools == "1teacher") {
  3290. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3291. } else if (e.data.tools && e.data.tools == "3teacher") {
  3292. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3293. } else if (e.data.tools && e.data.tools == "7teacher") {
  3294. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3295. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3296. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3297. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3298. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3299. } else if (e.data.tools && e.data.tools == "1E") {
  3300. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3301. } else if (e.data.tools && e.data.tools == "3E") {
  3302. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3303. } else if (e.data.tools && e.data.tools == "57y") {
  3304. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3305. } else if (e.data.tools && e.data.tools == "57u") {
  3306. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3307. } else if (e.data.tools && e.data.tools == "57teacher") {
  3308. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3309. } else if (e.data.tools && e.data.tools == "64") {
  3310. U.MD.D.I.openApplication("AIChat")
  3311. } else if (e.data.tools && e.data.tools == "66") {
  3312. U.MD.D.I.openApplication("formulaEdi")
  3313. } else if (e.data.tools && e.data.tools == "67") {
  3314. U.MD.D.I.openApplication("molStr")
  3315. } else if (e.data.tools && e.data.tools == "68") {
  3316. U.MD.D.I.openApplication("timeAxis")
  3317. } else if (e.data.tools && e.data.tools == "openCourse") {
  3318. let _data = {
  3319. typea: e.data.typea || '',
  3320. typeb: e.data.typeb || '',
  3321. typed: e.data.typed || '',
  3322. }
  3323. U.MD.D.I.openInApplication("index", _data)
  3324. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3325. let _data = {
  3326. classid: e.data.classid || '',
  3327. }
  3328. U.MD.D.I.openInApplication("dataClass", _data)
  3329. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3330. let _data = {
  3331. cid: e.data.cid || '',
  3332. gid: e.data.gid || '',
  3333. }
  3334. U.MD.D.I.openInApplication("opencCscl", _data)
  3335. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3336. U.MD.D.I.openApplication("dataBoardTest")
  3337. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3338. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3339. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3340. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3341. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3342. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3343. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3344. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3345. }else if (e.data.tools && e.data.tools == "loginSz") {
  3346. U.MD.D.I.openInApplication("loginSz")
  3347. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3348. if($('#classroom_observation_board')[0]){
  3349. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3350. }
  3351. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3352. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3353. if($('#classroom_observation_ob_comment')[0]){
  3354. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3355. }
  3356. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3357. }
  3358. });
  3359. U.MD.D.I.selectUser = function () {
  3360. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3361. if (res.value[0].length > 0) {
  3362. US.userInfo = res.value[0][0];
  3363. $(".userName")[0].innerHTML = US.userInfo.username;
  3364. }
  3365. }, [], { "type": "GET", "withCredentials": true });
  3366. }
  3367. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3368. var _userinfo = US.userInfo, //登录用户信息
  3369. _userid = US.userInfo.userid, //登录用户id
  3370. _oid = _userinfo.organizeid,
  3371. _type = US.userInfo.type,
  3372. _org = US.userInfo.org,
  3373. _role = US.userInfo.role,
  3374. _classId = US.userInfo.classid;
  3375. if (_type == 4) {
  3376. tType = 4
  3377. }
  3378. switch (str) {
  3379. case "studyDetailNT": //无终端模式
  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-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3388. "id": "studyDetailNT",
  3389. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3390. "onresize": function () { }
  3391. }, {
  3392. closecallback: function () { }
  3393. }, { "style": { "height": "36px" } }).form; //创建窗体
  3394. _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); } }
  3395. break;
  3396. }
  3397. case "studyDetail":
  3398. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3399. setTimeout(() => {
  3400. U.MD.U.L.login();
  3401. }, 2000);
  3402. } else {
  3403. _formdiv = new U.UF.UI.form(
  3404. "课程详情",
  3405. $$("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 }), {
  3406. "id": "studyDetail",
  3407. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3408. "onresize": function () { }
  3409. }, {
  3410. closecallback: function () { }
  3411. }, { "style": { "height": "36px" } }).form; //创建窗体
  3412. _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); } }
  3413. break;
  3414. }
  3415. case "studyDetailTrain":
  3416. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3417. setTimeout(() => {
  3418. U.MD.U.L.login();
  3419. }, 2000);
  3420. } else {
  3421. _formdiv = new U.UF.UI.form(
  3422. "培训详情",
  3423. $$("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 }), {
  3424. "id": "studyDetailTrain",
  3425. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3426. "onresize": function () { }
  3427. }, {
  3428. closecallback: function () { }
  3429. }, { "style": { "height": "36px" } }).form; //创建窗体
  3430. _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); } }
  3431. break;
  3432. }
  3433. case "studyDetailS":
  3434. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3435. setTimeout(() => {
  3436. U.MD.U.L.login();
  3437. }, 2000);
  3438. } else {
  3439. _formdiv = new U.UF.UI.form(
  3440. "项目详情",
  3441. $$("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 }), {
  3442. "id": "studyDetailS",
  3443. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3444. "onresize": function () { }
  3445. }, {
  3446. closecallback: function () { }
  3447. }, { "style": { "height": "36px" } }).form; //创建窗体
  3448. _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); } }
  3449. break;
  3450. }
  3451. case "studyDetailStudio":
  3452. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3453. setTimeout(() => {
  3454. U.MD.U.L.login();
  3455. }, 2000);
  3456. } else {
  3457. _formdiv = new U.UF.UI.form(
  3458. "工作详情",
  3459. $$("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 }), {
  3460. "id": "studyDetailStudio",
  3461. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3462. "onresize": function () { }
  3463. }, {
  3464. closecallback: function () { }
  3465. }, { "style": { "height": "36px" } }).form; //创建窗体
  3466. _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); } }
  3467. break;
  3468. }
  3469. case "studyDetailS5":
  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": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3478. "id": "studyDetailS",
  3479. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3480. "onresize": function () { }
  3481. }, {
  3482. closecallback: function () { }
  3483. }, { "style": { "height": "36px" } }).form; //创建窗体
  3484. _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); } }
  3485. break;
  3486. }
  3487. case "studyDetailGM":
  3488. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3489. setTimeout(() => {
  3490. U.MD.U.L.login();
  3491. }, 2000);
  3492. } else {
  3493. _formdiv = new U.UF.UI.form(
  3494. "课程详情",
  3495. $$("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 }), {
  3496. "id": "studyDetail",
  3497. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3498. "onresize": function () { }
  3499. }, {
  3500. closecallback: function () { }
  3501. }, { "style": { "height": "36px" } }).form; //创建窗体
  3502. _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); } }
  3503. break;
  3504. }
  3505. case "hanUrl":
  3506. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3507. setTimeout(() => {
  3508. U.MD.U.L.login();
  3509. }, 2000);
  3510. } else {
  3511. _formdiv = new U.UF.UI.form(
  3512. "汉字宫",
  3513. $$("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" }), {
  3514. "id": "hanUrl",
  3515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3516. "onresize": function () { }
  3517. }, {
  3518. closecallback: function () { }
  3519. }, { "style": { "height": "36px" } }).form; //创建窗体
  3520. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3521. break;
  3522. }
  3523. case "index":
  3524. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3525. setTimeout(() => {
  3526. U.MD.U.L.login();
  3527. }, 2000);
  3528. } else {
  3529. _formdiv = new U.UF.UI.form(
  3530. "课程中心",
  3531. $$("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 }), {
  3532. "id": "study",
  3533. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3534. "onresize": function () { }
  3535. }, {
  3536. closecallback: function () { }
  3537. }, { "style": { "height": "36px" } }).form; //创建窗体
  3538. _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); } }
  3539. break;
  3540. }
  3541. case "dataClass":
  3542. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3543. setTimeout(() => {
  3544. U.MD.U.L.login();
  3545. }, 2000);
  3546. } else {
  3547. _formdiv = new U.UF.UI.form(
  3548. "数据报告",
  3549. $$("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 }), {
  3550. "id": "dataClass",
  3551. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3552. "onresize": function () { }
  3553. }, {
  3554. closecallback: function () { }
  3555. }, { "style": { "height": "36px" } }).form; //创建窗体
  3556. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3557. break;
  3558. }
  3559. case "opencCscl":
  3560. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3561. setTimeout(() => {
  3562. U.MD.U.L.login();
  3563. }, 2000);
  3564. } else {
  3565. _formdiv = new U.UF.UI.form(
  3566. "协同建构",
  3567. $$("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 }), {
  3568. "id": "futureClass",
  3569. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3570. "onresize": function () { }
  3571. }, {
  3572. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3573. }, { "style": { "height": "36px" } }).form; //创建窗体
  3574. _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); } }
  3575. break;
  3576. }
  3577. case "openCourseUpdate":
  3578. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3579. setTimeout(() => {
  3580. U.MD.U.L.login();
  3581. }, 2000);
  3582. } else {
  3583. _formdiv = new U.UF.UI.form(
  3584. "课程管理",
  3585. $$("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 }), {
  3586. "id": "openCourseUpdate",
  3587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3588. "onresize": function () { }
  3589. }, {
  3590. closecallback: function () { }
  3591. }, { "style": { "height": "36px" } }).form; //创建窗体
  3592. break;
  3593. }
  3594. case "openNewCourseUpdate":
  3595. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3596. setTimeout(() => {
  3597. U.MD.U.L.login();
  3598. }, 2000);
  3599. } else {
  3600. _formdiv = new U.UF.UI.form(
  3601. "课程管理",
  3602. $$("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 }), {
  3603. "id": "openCourseUpdate",
  3604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3605. "onresize": function () { }
  3606. }, {
  3607. closecallback: function () { }
  3608. }, { "style": { "height": "36px" } }).form; //创建窗体
  3609. break;
  3610. }
  3611. case "openCourseEUpdate":
  3612. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3613. setTimeout(() => {
  3614. U.MD.U.L.login();
  3615. }, 2000);
  3616. } else {
  3617. _formdiv = new U.UF.UI.form(
  3618. "课程管理",
  3619. $$("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 }), {
  3620. "id": "openCourseUpdate",
  3621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3622. "onresize": function () { }
  3623. }, {
  3624. closecallback: function () { }
  3625. }, { "style": { "height": "36px" } }).form; //创建窗体
  3626. break;
  3627. }
  3628. case "openCourseNewUpdate":
  3629. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3630. setTimeout(() => {
  3631. U.MD.U.L.login();
  3632. }, 2000);
  3633. } else {
  3634. _formdiv = new U.UF.UI.form(
  3635. "课程管理",
  3636. $$("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 }), {
  3637. "id": "openCourseUpdate",
  3638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3639. "onresize": function () { }
  3640. }, {
  3641. closecallback: function () { }
  3642. }, { "style": { "height": "36px" } }).form; //创建窗体
  3643. break;
  3644. }
  3645. case "inviteLoginSz":
  3646. _formdiv = new U.UF.UI.form(
  3647. "随机码登录",
  3648. $$("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 }), {
  3649. "id": "loginSz",
  3650. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3651. "onresize": function () { }
  3652. }, {
  3653. closecallback: function () { }
  3654. }, { "style": { "height": "36px" } }).form; //创建窗体
  3655. break;
  3656. case "loginSz":
  3657. _formdiv = new U.UF.UI.form(
  3658. "教师登录",
  3659. $$("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" }), {
  3660. "id": "loginSz",
  3661. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3662. "onresize": function () { }
  3663. }, {
  3664. closecallback: function () { }
  3665. }, { "style": { "height": "36px" } }).form; //创建窗体
  3666. break;
  3667. case "teacher":
  3668. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3669. setTimeout(() => {
  3670. U.MD.U.L.login();
  3671. }, 2000);
  3672. } else {
  3673. _formdiv = new U.UF.UI.form(
  3674. "教师管理",
  3675. $$("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 }), {
  3676. "id": "teacher",
  3677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3678. "onresize": function () { }
  3679. }, {
  3680. closecallback: function () { }
  3681. }, { "style": { "height": "36px" } }).form; //创建窗体
  3682. break;
  3683. }
  3684. case "dataBoardSZArea":
  3685. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3686. setTimeout(() => {
  3687. U.MD.U.L.login();
  3688. }, 2000);
  3689. } else {
  3690. _formdiv = new U.UF.UI.form(
  3691. "综合数据看板",
  3692. $$("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 }), {
  3693. "id": "dataBoardSZArea",
  3694. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3695. "onresize": function () { }
  3696. }, {
  3697. closecallback: function () { }
  3698. }, { "style": { "height": "36px" } }).form; //创建窗体
  3699. break;
  3700. }
  3701. case "dataBoardSZCity":
  3702. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3703. setTimeout(() => {
  3704. U.MD.U.L.login();
  3705. }, 2000);
  3706. } else {
  3707. _formdiv = new U.UF.UI.form(
  3708. "综合数据看板",
  3709. $$("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 }), {
  3710. "id": "dataBoardSZCity",
  3711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3712. "onresize": function () { }
  3713. }, {
  3714. closecallback: function () { }
  3715. }, { "style": { "height": "36px" } }).form; //创建窗体
  3716. break;
  3717. }
  3718. case "classroom_observation_board":
  3719. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3720. setTimeout(() => {
  3721. U.MD.U.L.login();
  3722. }, 2000);
  3723. } else {
  3724. _formdiv = new U.UF.UI.form(
  3725. "课堂观察",
  3726. $$("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 }), {
  3727. "id": "classroom_observation_board",
  3728. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3729. "onresize": function () { }
  3730. }, {
  3731. closecallback: function () { }
  3732. }, { "style": { "height": "36px" } }).form; //创建窗体
  3733. break;
  3734. }
  3735. case "classroom_observation_ob_comment":
  3736. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3737. setTimeout(() => {
  3738. U.MD.U.L.login();
  3739. }, 2000);
  3740. } else {
  3741. _formdiv = new U.UF.UI.form(
  3742. "课堂审核",
  3743. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  3744. "id": "classroom_observation_ob_comment",
  3745. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3746. "onresize": function () { }
  3747. }, {
  3748. closecallback: function () { }
  3749. }, { "style": { "height": "36px" } }).form; //创建窗体
  3750. break;
  3751. }
  3752. }
  3753. }
  3754. U.MD.D.I.openApplication = function (str, obj, info) {
  3755. obj = obj || {};
  3756. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3757. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3758. _userinfo = US.userInfo, //登录用户信息
  3759. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3760. _oid = obj.organizeid || _userinfo.organizeid,
  3761. _type = US.userInfo.type,
  3762. _org = US.userInfo.org,
  3763. _role = US.userInfo.role,
  3764. _classId = US.userInfo.classid,
  3765. _TscreenType = 1
  3766. _screenType = 2,
  3767. _SscreenType = 3;
  3768. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3769. return;
  3770. }
  3771. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3772. switch (str) {
  3773. case "studnetProject": //好友打开
  3774. _formdiv = new U.UF.UI.form(
  3775. "我的项目",
  3776. $$("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 }), {
  3777. "id": "studnetProject",
  3778. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3779. "onresize": function () { }
  3780. }, {
  3781. closecallback: function () { }
  3782. }, { "style": { "height": "36px" } }).form; //创建窗体
  3783. _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); } }
  3784. break;
  3785. case "studentEvaluate": //好友打开
  3786. _formdiv = new U.UF.UI.form(
  3787. "我的评价",
  3788. $$("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 }), {
  3789. "id": "studentEvaluate",
  3790. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3791. "onresize": function () { }
  3792. }, {
  3793. closecallback: function () { }
  3794. }, { "style": { "height": "36px" } }).form; //创建窗体
  3795. _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); } }
  3796. break;
  3797. case "my":
  3798. _formdiv = new U.UF.UI.form(
  3799. "我的资料",
  3800. $$("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 }), {
  3801. "id": "my",
  3802. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3803. "onresize": function () { }
  3804. }, {
  3805. closecallback: function () { }
  3806. }, { "style": { "height": "36px" } }).form; //创建窗体
  3807. _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); } }
  3808. break;
  3809. case "program":
  3810. _formdiv = new U.UF.UI.form(
  3811. "编程平台",
  3812. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3813. "id": "program",
  3814. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3815. "onresize": function () { }
  3816. }, {
  3817. closecallback: function () { }
  3818. }, { "style": { "height": "36px" } }).form; //创建窗体
  3819. _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); } }
  3820. break;
  3821. case "library":
  3822. _formdiv = new U.UF.UI.form(
  3823. "素材库",
  3824. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  3825. "id": "library",
  3826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3827. "onresize": function () { }
  3828. }, {
  3829. closecallback: function () { }
  3830. }, { "style": { "height": "36px" } }).form; //创建窗体
  3831. _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); } }
  3832. break;
  3833. case "whiteboard":
  3834. _formdiv = new U.UF.UI.form(
  3835. "电子白板",
  3836. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3837. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3844. break;
  3845. case "investigation":
  3846. _formdiv = new U.UF.UI.form(
  3847. "问卷调查",
  3848. $$("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 }), {
  3849. "id": "investigation",
  3850. "style": { "width": "90%", "height": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3856. break;
  3857. case "note":
  3858. _formdiv = new U.UF.UI.form(
  3859. "便签分类",
  3860. $$("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 }), {
  3861. "id": "note",
  3862. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3868. break;
  3869. // case "score":
  3870. // _formdiv = new U.UF.UI.form(
  3871. // "量规评分",
  3872. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3873. // "id": "score",
  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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  3880. // break;
  3881. case "mind":
  3882. _formdiv = new U.UF.UI.form(
  3883. "思维导图",
  3884. $$("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"
  3885. "id": "mind",
  3886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3887. "onresize": function () { }
  3888. }, {
  3889. closecallback: function () { }
  3890. }, { "style": { "height": "36px" } }).form; //创建窗体
  3891. _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); } }
  3892. break;
  3893. case "doc":
  3894. // U.MD.D.I.isRoom();
  3895. _formdiv = new U.UF.UI.form(
  3896. "协同文档",
  3897. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3898. "id": "doc",
  3899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3900. "onresize": function () { }
  3901. }, {
  3902. closecallback: function () { }
  3903. }, { "style": { "height": "36px" } }).form; //创建窗体
  3904. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3905. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3906. // })
  3907. _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); } }
  3908. break;
  3909. case "studentStudy":
  3910. _formdiv = new U.UF.UI.form(
  3911. "课程中心",
  3912. $$("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
  3913. "id": "studentStudy",
  3914. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3915. "onresize": function () { }
  3916. }, {
  3917. closecallback: function () { }
  3918. }, { "style": { "height": "36px" } }).form; //创建窗体
  3919. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3920. break;
  3921. case "train": //好友打开
  3922. _formdiv = new U.UF.UI.form(
  3923. "训练平台",
  3924. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3925. "id": "train",
  3926. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3927. "onresize": function () { }
  3928. }, {
  3929. closecallback: function () { }
  3930. }, { "style": { "height": "36px" } }).form; //创建窗体
  3931. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3932. break;
  3933. case "mindNetwork": //好友打开
  3934. _formdiv = new U.UF.UI.form(
  3935. "思维网格",
  3936. $$("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 }), {
  3937. "id": "mindNetwork",
  3938. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3939. "onresize": function () { }
  3940. }, {
  3941. closecallback: function () { }
  3942. }, { "style": { "height": "36px" } }).form; //创建窗体
  3943. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3944. break;
  3945. case "studentClassRoom": //好友打开
  3946. _formdiv = new U.UF.UI.form(
  3947. "实时课堂",
  3948. $$("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 }), {
  3949. "id": "studentClassRoom",
  3950. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3951. "onresize": function () { }
  3952. }, {
  3953. closecallback: function () { }
  3954. }, { "style": { "height": "36px" } }).form; //创建窗体
  3955. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3956. setTimeout(() => {
  3957. U.UF.F.windowZooming(_formdiv)
  3958. }, 0);
  3959. break;
  3960. }
  3961. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3962. switch (str) {
  3963. case "studnetProject": //好友打开
  3964. _formdiv = new U.UF.UI.form(
  3965. "我的项目",
  3966. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  3967. "id": "studnetProject",
  3968. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3969. "onresize": function () { }
  3970. }, {
  3971. closecallback: function () { }
  3972. }, { "style": { "height": "36px" } }).form; //创建窗体
  3973. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3974. break;
  3975. case "studentEvaluate": //好友打开
  3976. _formdiv = new U.UF.UI.form(
  3977. "我的评价",
  3978. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3979. "id": "studentEvaluate",
  3980. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3981. "onresize": function () { }
  3982. }, {
  3983. closecallback: function () { }
  3984. }, { "style": { "height": "36px" } }).form; //创建窗体
  3985. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3986. break;
  3987. case "my":
  3988. _formdiv = new U.UF.UI.form(
  3989. "我的资料",
  3990. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  3991. "id": "my",
  3992. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3993. "onresize": function () { }
  3994. }, {
  3995. closecallback: function () { }
  3996. }, { "style": { "height": "36px" } }).form; //创建窗体
  3997. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3998. break;
  3999. case "program":
  4000. _formdiv = new U.UF.UI.form(
  4001. "编程平台",
  4002. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4003. "id": "program",
  4004. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4005. "onresize": function () { }
  4006. }, {
  4007. closecallback: function () { }
  4008. }, { "style": { "height": "36px" } }).form; //创建窗体
  4009. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4010. break;
  4011. case "library":
  4012. _formdiv = new U.UF.UI.form(
  4013. "素材库",
  4014. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4015. "id": "library",
  4016. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4017. "onresize": function () { }
  4018. }, {
  4019. closecallback: function () { }
  4020. }, { "style": { "height": "36px" } }).form; //创建窗体
  4021. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4022. break;
  4023. case "whiteboard":
  4024. _formdiv = new U.UF.UI.form(
  4025. "电子白板",
  4026. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4027. "id": "whiteboard",
  4028. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4029. "onresize": function () { }
  4030. }, {
  4031. closecallback: function () { }
  4032. }, { "style": { "height": "36px" } }).form; //创建窗体
  4033. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4034. break;
  4035. case "investigation":
  4036. _formdiv = new U.UF.UI.form(
  4037. "问卷调查",
  4038. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  4039. "id": "investigation",
  4040. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4041. "onresize": function () { }
  4042. }, {
  4043. closecallback: function () { }
  4044. }, { "style": { "height": "36px" } }).form; //创建窗体
  4045. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4046. break;
  4047. case "note":
  4048. _formdiv = new U.UF.UI.form(
  4049. "便签分类",
  4050. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  4051. "id": "note",
  4052. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4053. "onresize": function () { }
  4054. }, {
  4055. closecallback: function () { }
  4056. }, { "style": { "height": "36px" } }).form; //创建窗体
  4057. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4058. break;
  4059. // case "score":
  4060. // _formdiv = new U.UF.UI.form(
  4061. // "量规评分",
  4062. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4063. // "id": "score",
  4064. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4065. // "onresize": function() {}
  4066. // }, {
  4067. // closecallback: function() {}
  4068. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4069. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4070. // break;
  4071. case "mind":
  4072. _formdiv = new U.UF.UI.form(
  4073. "思维导图",
  4074. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4075. "id": "mind",
  4076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4077. "onresize": function () { }
  4078. }, {
  4079. closecallback: function () { }
  4080. }, { "style": { "height": "36px" } }).form; //创建窗体
  4081. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4082. break;
  4083. case "doc":
  4084. // U.MD.D.I.isRoom();
  4085. _formdiv = new U.UF.UI.form(
  4086. "协同文档",
  4087. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4088. "id": "doc",
  4089. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4090. "onresize": function () { }
  4091. }, {
  4092. closecallback: function () { }
  4093. }, { "style": { "height": "36px" } }).form; //创建窗体
  4094. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4095. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4096. })
  4097. _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); } }
  4098. break;
  4099. case "train": //好友打开
  4100. _formdiv = new U.UF.UI.form(
  4101. "训练平台",
  4102. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4103. "id": "train",
  4104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4105. "onresize": function () { }
  4106. }, {
  4107. closecallback: function () { }
  4108. }, { "style": { "height": "36px" } }).form; //创建窗体
  4109. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4110. break;
  4111. case "studentStudy":
  4112. _formdiv = new U.UF.UI.form(
  4113. "课程中心",
  4114. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  4115. "id": "studentStudy",
  4116. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4117. "onresize": function () { }
  4118. }, {
  4119. closecallback: function () { }
  4120. }, { "style": { "height": "36px" } }).form; //创建窗体
  4121. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4122. break;
  4123. case "mindNetwork": //好友打开
  4124. _formdiv = new U.UF.UI.form(
  4125. "思维网格",
  4126. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  4127. "id": "mindNetwork",
  4128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4129. "onresize": function () { }
  4130. }, {
  4131. closecallback: function () { }
  4132. }, { "style": { "height": "36px" } }).form; //创建窗体
  4133. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4134. break;
  4135. case "studentClassRoom": //好友打开
  4136. _formdiv = new U.UF.UI.form(
  4137. "实时课堂",
  4138. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/liveRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4139. "id": "studentClassRoom",
  4140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4141. "onresize": function () { }
  4142. }, {
  4143. closecallback: function () { }
  4144. }, { "style": { "height": "36px" } }).form; //创建窗体
  4145. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4146. setTimeout(() => {
  4147. U.UF.F.windowZooming(_formdiv)
  4148. }, 0);
  4149. break;
  4150. }
  4151. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4152. //选择应用处理
  4153. switch (str) {
  4154. case "project": //好友打开
  4155. _formdiv = new U.UF.UI.form(
  4156. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4157. $$("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 }), {
  4158. "id": "project",
  4159. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4160. "onresize": function () { }
  4161. }, {
  4162. closecallback: function () { }
  4163. }, { "style": { "height": "36px" } }).form; //创建窗体
  4164. _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); } }
  4165. break;
  4166. case "student":
  4167. _formdiv = new U.UF.UI.form(
  4168. "学生管理",
  4169. $$("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 }), {
  4170. "id": "student",
  4171. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4172. "onresize": function () { }
  4173. }, {
  4174. closecallback: function () { }
  4175. }, { "style": { "height": "36px" } }).form; //创建窗体
  4176. _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); } }
  4177. break;
  4178. case "evaluate":
  4179. _formdiv = new U.UF.UI.form(
  4180. "学生评价",
  4181. $$("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 }), {
  4182. "id": "evaluate",
  4183. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4184. "onresize": function () { }
  4185. }, {
  4186. closecallback: function () { }
  4187. }, { "style": { "height": "36px" } }).form; //创建窗体
  4188. _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); } }
  4189. break;
  4190. case "sys":
  4191. _formdiv = new U.UF.UI.form(
  4192. "目标管理",
  4193. $$("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 }), {
  4194. "id": "sys",
  4195. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4196. "onresize": function () { }
  4197. }, {
  4198. closecallback: function () { }
  4199. }, { "style": { "height": "36px" } }).form; //创建窗体
  4200. _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); } }
  4201. break;
  4202. case "courseDesign":
  4203. _formdiv = new U.UF.UI.form(
  4204. "项目设计",
  4205. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4206. "id": "courseDesign",
  4207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4208. "onresize": function () { }
  4209. }, {
  4210. closecallback: function () { }
  4211. }, { "style": { "height": "36px" } }).form; //创建窗体
  4212. _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); } }
  4213. break;
  4214. case "program":
  4215. _formdiv = new U.UF.UI.form(
  4216. "编程平台",
  4217. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4218. "id": "program",
  4219. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4220. "onresize": function () { }
  4221. }, {
  4222. closecallback: function () { }
  4223. }, { "style": { "height": "36px" } }).form; //创建窗体
  4224. _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); } }
  4225. break;
  4226. case "class":
  4227. _formdiv = new U.UF.UI.form(
  4228. "班级管理",
  4229. $$("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 }), {
  4230. "id": "class",
  4231. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4232. "onresize": function () { }
  4233. }, {
  4234. closecallback: function () { }
  4235. }, { "style": { "height": "36px" } }).form; //创建窗体
  4236. _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); } }
  4237. break;
  4238. case "Grade":
  4239. _formdiv = new U.UF.UI.form(
  4240. "年级管理",
  4241. $$("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 }), {
  4242. "id": "Grade",
  4243. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4244. "onresize": function () { }
  4245. }, {
  4246. closecallback: function () { }
  4247. }, { "style": { "height": "36px" } }).form; //创建窗体
  4248. _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); } }
  4249. break;
  4250. case "teacherOffice":
  4251. _formdiv = new U.UF.UI.form(
  4252. "教研室",
  4253. $$("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 }), {
  4254. "id": "teacherOffice",
  4255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4256. "onresize": function () { }
  4257. }, {
  4258. closecallback: function () { }
  4259. }, { "style": { "height": "36px" } }).form; //创建窗体
  4260. _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); } }
  4261. break;
  4262. case "my":
  4263. _formdiv = new U.UF.UI.form(
  4264. "我的资料",
  4265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4266. "id": "my",
  4267. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4268. "onresize": function () { }
  4269. }, {
  4270. closecallback: function () { }
  4271. }, { "style": { "height": "36px" } }).form; //创建窗体
  4272. _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); } }
  4273. break;
  4274. case "notice":
  4275. _formdiv = new U.UF.UI.form(
  4276. "通知公告",
  4277. $$("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 }), {
  4278. "id": "notice",
  4279. "style": { "width": "90%", "height": "90%", "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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4285. break;
  4286. case "library":
  4287. _formdiv = new U.UF.UI.form(
  4288. "素材库",
  4289. $$("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 }), {
  4290. "id": "library",
  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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4297. break;
  4298. case "whiteboard":
  4299. _formdiv = new U.UF.UI.form(
  4300. "电子白板",
  4301. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4302. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4309. break;
  4310. case "investigation":
  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/#/ask?userid=" + _userid + "&org=" + _org }), {
  4314. "id": "investigation",
  4315. "style": { "width": "90%", "height": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4321. break;
  4322. case "note":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  4326. "id": "note",
  4327. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4333. break;
  4334. // case "score":
  4335. // _formdiv = new U.UF.UI.form(
  4336. // "量规评分",
  4337. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4338. // "id": "score",
  4339. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4340. // "onresize": function() {}
  4341. // }, {
  4342. // closecallback: function() {}
  4343. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4344. // _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); } }
  4345. // break;
  4346. case "mind":
  4347. _formdiv = new U.UF.UI.form(
  4348. "思维导图",
  4349. $$("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"
  4350. "id": "mind",
  4351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4352. "onresize": function () { }
  4353. }, {
  4354. closecallback: function () { }
  4355. }, { "style": { "height": "36px" } }).form; //创建窗体
  4356. _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); } }
  4357. break;
  4358. case "doc":
  4359. // U.MD.D.I.isRoom();
  4360. _formdiv = new U.UF.UI.form(
  4361. "协同文档",
  4362. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4363. "id": "doc",
  4364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4365. "onresize": function () { }
  4366. }, {
  4367. closecallback: function () { }
  4368. }, { "style": { "height": "36px" } }).form; //创建窗体
  4369. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4370. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4371. })
  4372. _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); } }
  4373. break;
  4374. case "study":
  4375. _formdiv = new U.UF.UI.form(
  4376. "课程中心",
  4377. $$("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
  4378. "id": "study",
  4379. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4380. "onresize": function () { }
  4381. }, {
  4382. closecallback: function () { }
  4383. }, { "style": { "height": "36px" } }).form; //创建窗体
  4384. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4385. break;
  4386. case "mindNetwork": //好友打开
  4387. _formdiv = new U.UF.UI.form(
  4388. "思维网格",
  4389. $$("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 }), {
  4390. "id": "mindNetwork",
  4391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4392. "onresize": function () { }
  4393. }, {
  4394. closecallback: function () { }
  4395. }, { "style": { "height": "36px" } }).form; //创建窗体
  4396. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4397. break;
  4398. case "train": //好友打开
  4399. _formdiv = new U.UF.UI.form(
  4400. "训练平台",
  4401. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4402. "id": "mindNetwork",
  4403. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4404. "onresize": function () { }
  4405. }, {
  4406. closecallback: function () { }
  4407. }, { "style": { "height": "36px" } }).form; //创建窗体
  4408. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4409. break;
  4410. case "teacherClassRoom": //好友打开
  4411. _formdiv = new U.UF.UI.form(
  4412. "实时课堂",
  4413. $$("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 }), {
  4414. "id": "teacherClassRoom",
  4415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4416. "onresize": function () { }
  4417. }, {
  4418. closecallback: function () { }
  4419. }, { "style": { "height": "36px" } }).form; //创建窗体
  4420. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4421. setTimeout(() => {
  4422. U.UF.F.windowZooming(_formdiv)
  4423. }, 0);
  4424. break;
  4425. }
  4426. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4427. switch (str) {
  4428. case "project": //好友打开
  4429. _formdiv = new U.UF.UI.form(
  4430. "课程管理",
  4431. $$("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 }), {
  4432. "id": "project",
  4433. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4434. "onresize": function () { }
  4435. }, {
  4436. closecallback: function () { }
  4437. }, { "style": { "height": "36px" } }).form; //创建窗体
  4438. _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); } }
  4439. break;
  4440. case "evaluate":
  4441. _formdiv = new U.UF.UI.form(
  4442. "学生评价",
  4443. $$("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 }), {
  4444. "id": "evaluate",
  4445. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4446. "onresize": function () { }
  4447. }, {
  4448. closecallback: function () { }
  4449. }, { "style": { "height": "36px" } }).form; //创建窗体
  4450. _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); } }
  4451. break;
  4452. case "notice":
  4453. _formdiv = new U.UF.UI.form(
  4454. "通知公告",
  4455. $$("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 }), {
  4456. "id": "notice",
  4457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4458. "onresize": function () { }
  4459. }, {
  4460. closecallback: function () { }
  4461. }, { "style": { "height": "36px" } }).form; //创建窗体
  4462. _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); } }
  4463. break;
  4464. case "stuLibrary":
  4465. _formdiv = new U.UF.UI.form(
  4466. "学习资料",
  4467. $$("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 }), {
  4468. "id": "stuLibrary",
  4469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4470. "onresize": function () { }
  4471. }, {
  4472. closecallback: function () { }
  4473. }, { "style": { "height": "36px" } }).form; //创建窗体
  4474. _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); } }
  4475. break;
  4476. case "program":
  4477. _formdiv = new U.UF.UI.form(
  4478. "编程平台",
  4479. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4480. "id": "program",
  4481. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4482. "onresize": function () { }
  4483. }, {
  4484. closecallback: function () { }
  4485. }, { "style": { "height": "36px" } }).form; //创建窗体
  4486. _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); } }
  4487. break;
  4488. case "whiteboard":
  4489. _formdiv = new U.UF.UI.form(
  4490. "电子白板",
  4491. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4492. "id": "whiteboard",
  4493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4494. "onresize": function () { }
  4495. }, {
  4496. closecallback: function () { }
  4497. }, { "style": { "height": "36px" } }).form; //创建窗体
  4498. _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); } }
  4499. break;
  4500. case "investigation":
  4501. _formdiv = new U.UF.UI.form(
  4502. "问卷调查",
  4503. $$("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 }), {
  4504. "id": "investigation",
  4505. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4506. "onresize": function () { }
  4507. }, {
  4508. closecallback: function () { }
  4509. }, { "style": { "height": "36px" } }).form; //创建窗体
  4510. _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); } }
  4511. break;
  4512. case "mind":
  4513. _formdiv = new U.UF.UI.form(
  4514. "思维导图",
  4515. $$("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"
  4516. "id": "mind",
  4517. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4518. "onresize": function () { }
  4519. }, {
  4520. closecallback: function () { }
  4521. }, { "style": { "height": "36px" } }).form; //创建窗体
  4522. _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); } }
  4523. break;
  4524. case "doc":
  4525. // U.MD.D.I.isRoom();
  4526. _formdiv = new U.UF.UI.form(
  4527. "协同文档",
  4528. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4529. "id": "doc",
  4530. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4531. "onresize": function () { }
  4532. }, {
  4533. closecallback: function () { }
  4534. }, { "style": { "height": "36px" } }).form; //创建窗体
  4535. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4536. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4537. })
  4538. _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); } }
  4539. break;
  4540. case "study":
  4541. _formdiv = new U.UF.UI.form(
  4542. "课程中心",
  4543. $$("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
  4544. "id": "study",
  4545. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4546. "onresize": function () { }
  4547. }, {
  4548. closecallback: function () { }
  4549. }, { "style": { "height": "36px" } }).form; //创建窗体
  4550. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4551. break;
  4552. case "mindNetwork": //好友打开
  4553. _formdiv = new U.UF.UI.form(
  4554. "思维网格",
  4555. $$("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 }), {
  4556. "id": "mindNetwork",
  4557. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4558. "onresize": function () { }
  4559. }, {
  4560. closecallback: function () { }
  4561. }, { "style": { "height": "36px" } }).form; //创建窗体
  4562. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4563. break;
  4564. case "train": //好友打开
  4565. _formdiv = new U.UF.UI.form(
  4566. "训练平台",
  4567. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4568. "id": "train",
  4569. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4570. "onresize": function () { }
  4571. }, {
  4572. closecallback: function () { }
  4573. }, { "style": { "height": "36px" } }).form; //创建窗体
  4574. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4575. break;
  4576. case "sys":
  4577. _formdiv = new U.UF.UI.form(
  4578. "目标管理",
  4579. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4580. "id": "sys",
  4581. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4582. "onresize": function () { }
  4583. }, {
  4584. closecallback: function () { }
  4585. }, { "style": { "height": "36px" } }).form; //创建窗体
  4586. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4587. break;
  4588. case "courseDesign":
  4589. _formdiv = new U.UF.UI.form(
  4590. "项目设计",
  4591. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4592. "id": "courseDesign",
  4593. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4594. "onresize": function () { }
  4595. }, {
  4596. closecallback: function () { }
  4597. }, { "style": { "height": "36px" } }).form; //创建窗体
  4598. _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); } }
  4599. break;
  4600. }
  4601. } else if (!_type) {
  4602. switch (str) {
  4603. case "my":
  4604. _formdiv = new U.UF.UI.form(
  4605. "我的资料",
  4606. $$("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 }), {
  4607. "id": "my",
  4608. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4609. "onresize": function () { }
  4610. }, {
  4611. closecallback: function () { }
  4612. }, { "style": { "height": "36px" } }).form; //创建窗体
  4613. _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); } }
  4614. break;
  4615. }
  4616. }
  4617. switch (str) {
  4618. // AIprogram2 AI体验 aihub.cocorobo.cn
  4619. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4620. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4621. case "formulaEdi": //公式编辑
  4622. _formdiv = new U.UF.UI.form(
  4623. "公式编辑",
  4624. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4625. "id": "formulaEdi",
  4626. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4627. "onresize": function () { }
  4628. }, {
  4629. closecallback: function () { }
  4630. }, { "style": { "height": "36px" } }).form; //创建窗体
  4631. _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); } }
  4632. break;
  4633. case "molStr": //分子结构
  4634. _formdiv = new U.UF.UI.form(
  4635. "分子结构",
  4636. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4637. "id": "molStr",
  4638. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4639. "onresize": function () { }
  4640. }, {
  4641. closecallback: function () { }
  4642. }, { "style": { "height": "36px" } }).form; //创建窗体
  4643. _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); } }
  4644. break;
  4645. case "timeAxis": //时间轴
  4646. _formdiv = new U.UF.UI.form(
  4647. "时间轴",
  4648. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4649. "id": "timeAxis",
  4650. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4651. "onresize": function () { }
  4652. }, {
  4653. closecallback: function () { }
  4654. }, { "style": { "height": "36px" } }).form; //创建窗体
  4655. _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); } }
  4656. break;
  4657. case "AIprogram2": //AI体验
  4658. _formdiv = new U.UF.UI.form(
  4659. "AI体验",
  4660. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4661. "id": "AIprogram2",
  4662. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4663. "onresize": function () { }
  4664. }, {
  4665. closecallback: function () { }
  4666. }, { "style": { "height": "36px" } }).form; //创建窗体
  4667. _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); } }
  4668. break;
  4669. case "Pythonprogram": //python编程
  4670. _formdiv = new U.UF.UI.form(
  4671. "Python编程",
  4672. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4673. "id": "Pythonprogram",
  4674. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4675. "onresize": function () { }
  4676. }, {
  4677. closecallback: function () { }
  4678. }, { "style": { "height": "36px" } }).form; //创建窗体
  4679. _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); } }
  4680. break;
  4681. case "AIprogram": //ai编程
  4682. _formdiv = new U.UF.UI.form(
  4683. "AI编程平台",
  4684. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4685. "id": "AIprogram",
  4686. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4687. "onresize": function () { }
  4688. }, {
  4689. closecallback: function () { }
  4690. }, { "style": { "height": "36px" } }).form; //创建窗体
  4691. _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); } }
  4692. break;
  4693. case "CocoPi": //CocoPi
  4694. _formdiv = new U.UF.UI.form(
  4695. "CocoPi",
  4696. $$("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" }), {
  4697. "id": "CocoPi",
  4698. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4699. "onresize": function () { }
  4700. }, {
  4701. closecallback: function () { }
  4702. }, { "style": { "height": "36px" } }).form; //创建窗体
  4703. _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); } }
  4704. break;
  4705. case "Wood": //Wood
  4706. _formdiv = new U.UF.UI.form(
  4707. "海龟编程",
  4708. $$("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/" }), {
  4709. "id": "Wood",
  4710. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4711. "onresize": function () { }
  4712. }, {
  4713. closecallback: function () { }
  4714. }, { "style": { "height": "36px" } }).form; //创建窗体
  4715. _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); } }
  4716. break;
  4717. case "car": //模拟驾驶
  4718. _formdiv = new U.UF.UI.form(
  4719. "模拟驾驶",
  4720. $$("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/" }), {
  4721. "id": "car",
  4722. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4723. "onresize": function () { }
  4724. }, {
  4725. closecallback: function () { }
  4726. }, { "style": { "height": "36px" } }).form; //创建窗体
  4727. _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); } }
  4728. break;
  4729. case "lineSearch": //路径搜索
  4730. _formdiv = new U.UF.UI.form(
  4731. "路径搜索",
  4732. $$("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/" }), {
  4733. "id": "lineSearch",
  4734. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4735. "onresize": function () { }
  4736. }, {
  4737. closecallback: function () { }
  4738. }, { "style": { "height": "36px" } }).form; //创建窗体
  4739. _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); } }
  4740. break;
  4741. case "deepLearning": //深度学习
  4742. _formdiv = new U.UF.UI.form(
  4743. "深度学习",
  4744. $$("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/#" }), {
  4745. "id": "deepLearning",
  4746. "style": { "width": "70%", "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/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4752. break;
  4753. case "allHistory": //深度学习
  4754. _formdiv = new U.UF.UI.form(
  4755. "全历史",
  4756. $$("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/" }), {
  4757. "id": "allHistory",
  4758. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4759. "onresize": function () { }
  4760. }, {
  4761. closecallback: function () { }
  4762. }, { "style": { "height": "36px" } }).form; //创建窗体
  4763. _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); } }
  4764. break;
  4765. case "chatPDF": //ai编程
  4766. _formdiv = new U.UF.UI.form(
  4767. "chatPDF",
  4768. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4769. "id": "chatPDF",
  4770. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4771. "onresize": function () { }
  4772. }, {
  4773. closecallback: function () { }
  4774. }, { "style": { "height": "36px" } }).form; //创建窗体
  4775. _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); } }
  4776. break;
  4777. case "resources": //国家教育
  4778. _formdiv = new U.UF.UI.form(
  4779. "国家教育",
  4780. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4781. "id": "resources",
  4782. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4783. "onresize": function () { }
  4784. }, {
  4785. closecallback: function () { }
  4786. }, { "style": { "height": "36px" } }).form; //创建窗体
  4787. _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); } }
  4788. break;
  4789. case "codeEdit": //源码编辑
  4790. _formdiv = new U.UF.UI.form(
  4791. "源码编辑",
  4792. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4793. "id": "codeEdit",
  4794. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4795. "onresize": function () { }
  4796. }, {
  4797. closecallback: function () { }
  4798. }, { "style": { "height": "36px" } }).form; //创建窗体
  4799. _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); } }
  4800. break; //
  4801. case "MindMap": //MindMap
  4802. _formdiv = new U.UF.UI.form(
  4803. "MindMap",
  4804. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4805. "id": "MindMap",
  4806. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4807. "onresize": function () { }
  4808. }, {
  4809. closecallback: function () { }
  4810. }, { "style": { "height": "36px" } }).form; //创建窗体
  4811. _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); } }
  4812. break;
  4813. case "netWorkPanel": //netWorkPanel
  4814. _formdiv = new U.UF.UI.form(
  4815. "netWorkPanel",
  4816. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4817. "id": "netWorkPanel",
  4818. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4819. "onresize": function () { }
  4820. }, {
  4821. closecallback: function () { }
  4822. }, { "style": { "height": "36px" } }).form; //创建窗体
  4823. _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); } }
  4824. break;
  4825. case "GeoGebra": //GeoGebra
  4826. _formdiv = new U.UF.UI.form(
  4827. "GeoGebra",
  4828. $$("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" }), {
  4829. "id": "GeoGebra",
  4830. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4831. "onresize": function () { }
  4832. }, {
  4833. closecallback: function () { }
  4834. }, { "style": { "height": "36px" } }).form; //创建窗体
  4835. _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); } }
  4836. break;
  4837. case "translation": //翻译
  4838. _formdiv = new U.UF.UI.form(
  4839. "翻译",
  4840. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4841. "id": "translation",
  4842. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4843. "onresize": function () { }
  4844. }, {
  4845. closecallback: function () { }
  4846. }, { "style": { "height": "36px" } }).form; //创建窗体
  4847. _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); } }
  4848. break;
  4849. case "mohe": //魔盒
  4850. _formdiv = new U.UF.UI.form(
  4851. "魔盒识字",
  4852. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4853. "id": "mohe",
  4854. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4855. "onresize": function () { }
  4856. }, {
  4857. closecallback: function () { }
  4858. }, { "style": { "height": "36px" } }).form; //创建窗体
  4859. _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); } }
  4860. break;
  4861. case "24game": //24点
  4862. _formdiv = new U.UF.UI.form(
  4863. "24点",
  4864. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4865. "id": "24game",
  4866. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4867. "onresize": function () { }
  4868. }, {
  4869. closecallback: function () { }
  4870. }, { "style": { "height": "36px" } }).form; //创建窗体
  4871. _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); } }
  4872. break;
  4873. case "case":
  4874. _formdiv = new U.UF.UI.form(
  4875. "课程进展",
  4876. $$("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 }), {
  4877. "id": "case",
  4878. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4879. "onresize": function () { }
  4880. }, {
  4881. closecallback: function () { }
  4882. }, { "style": { "height": "36px" } }).form; //创建窗体
  4883. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4884. break;
  4885. case "snf":
  4886. _formdiv = new U.UF.UI.form(
  4887. "赛诺梵",
  4888. $$("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" }), {
  4889. "id": "snf",
  4890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4891. "onresize": function () { }
  4892. }, {
  4893. closecallback: function () { }
  4894. }, { "style": { "height": "36px" } }).form; //创建窗体
  4895. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4896. break;
  4897. case "hanFamily":
  4898. _formdiv = new U.UF.UI.form(
  4899. "汉字家族",
  4900. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4901. "id": "hanFamily",
  4902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4903. "onresize": function () { }
  4904. }, {
  4905. closecallback: function () { }
  4906. }, { "style": { "height": "36px" } }).form; //创建窗体
  4907. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4908. break;
  4909. case "hanClassics":
  4910. _formdiv = new U.UF.UI.form(
  4911. "国学经典",
  4912. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4913. "id": "hanClassics",
  4914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4915. "onresize": function () { }
  4916. }, {
  4917. closecallback: function () { }
  4918. }, { "style": { "height": "36px" } }).form; //创建窗体
  4919. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4920. break;
  4921. case "hanTraining":
  4922. _formdiv = new U.UF.UI.form(
  4923. "笔画训练",
  4924. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4925. "id": "hanTraining",
  4926. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4927. "onresize": function () { }
  4928. }, {
  4929. closecallback: function () { }
  4930. }, { "style": { "height": "36px" } }).form; //创建窗体
  4931. _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); } }
  4932. break;
  4933. case "hanClass":
  4934. _formdiv = new U.UF.UI.form(
  4935. "书法课堂",
  4936. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4937. "id": "hanClass",
  4938. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4939. "onresize": function () { }
  4940. }, {
  4941. closecallback: function () { }
  4942. }, { "style": { "height": "36px" } }).form; //创建窗体
  4943. _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); } }
  4944. break;
  4945. case "han":
  4946. _formdiv = new U.UF.UI.form(
  4947. "汉字宫",
  4948. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4949. "id": "han",
  4950. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4951. "onresize": function () { }
  4952. }, {
  4953. closecallback: function () { }
  4954. }, { "style": { "height": "36px" } }).form; //创建窗体
  4955. _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); } }
  4956. break;
  4957. case "projectGM": //课程管理
  4958. _formdiv = new U.UF.UI.form(
  4959. "课程管理",
  4960. $$("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 }), {
  4961. "id": "projectGM",
  4962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4963. "onresize": function () { }
  4964. }, {
  4965. closecallback: function () { }
  4966. }, { "style": { "height": "36px" } }).form; //创建窗体
  4967. _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); } }
  4968. break;
  4969. case "studyGM": //课程中心
  4970. _formdiv = new U.UF.UI.form(
  4971. "课程中心",
  4972. $$("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
  4973. "id": "study",
  4974. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4975. "onresize": function () { }
  4976. }, {
  4977. closecallback: function () { }
  4978. }, { "style": { "height": "36px" } }).form; //创建窗体
  4979. _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); } }
  4980. break;
  4981. // studentGM
  4982. case "studentGM": //学生管理
  4983. _formdiv = new U.UF.UI.form(
  4984. "学生管理",
  4985. $$("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 }), {
  4986. "id": "studentGM",
  4987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4988. "onresize": function () { }
  4989. }, {
  4990. closecallback: function () { }
  4991. }, { "style": { "height": "36px" } }).form; //创建窗体
  4992. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4993. break;
  4994. case "evaluateGM": //学生评价
  4995. _formdiv = new U.UF.UI.form(
  4996. "学生评价",
  4997. $$("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 }), {
  4998. "id": "evaluateGM",
  4999. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5000. "onresize": function () { }
  5001. }, {
  5002. closecallback: function () { }
  5003. }, { "style": { "height": "36px" } }).form; //创建窗体
  5004. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5005. break;
  5006. // classGM
  5007. case "classGM": //班级管理
  5008. _formdiv = new U.UF.UI.form(
  5009. "班级管理",
  5010. $$("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 }), {
  5011. "id": "classGM",
  5012. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5013. "onresize": function () { }
  5014. }, {
  5015. closecallback: function () { }
  5016. }, { "style": { "height": "36px" } }).form; //创建窗体
  5017. _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); } }
  5018. break;
  5019. // dataGM
  5020. case "dataGM":
  5021. _formdiv = new U.UF.UI.form(
  5022. "我的资料",
  5023. $$("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 }), {
  5024. "id": "dataGM",
  5025. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5026. "onresize": function () { }
  5027. }, {
  5028. closecallback: function () { }
  5029. }, { "style": { "height": "36px" } }).form; //创建窗体
  5030. _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); } }
  5031. break;
  5032. // caseGM
  5033. case "caseGM": //课程进展
  5034. _formdiv = new U.UF.UI.form(
  5035. "课程进展",
  5036. $$("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 }), {
  5037. "id": "caseGM",
  5038. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5039. "onresize": function () { }
  5040. }, {
  5041. closecallback: function () { }
  5042. }, { "style": { "height": "36px" } }).form; //创建窗体
  5043. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5044. break;
  5045. // meterialGM
  5046. case "meterialGM": //素材库
  5047. _formdiv = new U.UF.UI.form(
  5048. "素材库",
  5049. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  5050. "id": "meterialGM",
  5051. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5052. "onresize": function () { }
  5053. }, {
  5054. closecallback: function () { }
  5055. }, { "style": { "height": "36px" } }).form; //创建窗体
  5056. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5057. break;
  5058. // evaluateSGM
  5059. case "evaluateSGM": //我的评价
  5060. _formdiv = new U.UF.UI.form(
  5061. "我的评价",
  5062. $$("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 }), {
  5063. "id": "evaluateSGM",
  5064. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5065. "onresize": function () { }
  5066. }, {
  5067. closecallback: function () { }
  5068. }, { "style": { "height": "36px" } }).form; //创建窗体
  5069. _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); } }
  5070. break;
  5071. case "jupyter": //jupyter
  5072. _formdiv = new U.UF.UI.form(
  5073. "jupyter",
  5074. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5075. "id": "jupyter",
  5076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5077. "onresize": function () { }
  5078. }, {
  5079. closecallback: function () { }
  5080. }, { "style": { "height": "36px" } }).form; //创建窗体
  5081. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5082. break;
  5083. case "number": //数字实验室
  5084. _formdiv = new U.UF.UI.form(
  5085. "数字实验室",
  5086. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5087. "id": "number",
  5088. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5089. "onresize": function () { }
  5090. }, {
  5091. closecallback: function () { }
  5092. }, { "style": { "height": "36px" } }).form; //创建窗体
  5093. _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); } }
  5094. break;
  5095. case "studentCourse": //项目管理 学生
  5096. _formdiv = new U.UF.UI.form(
  5097. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5098. $$("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 }), {
  5099. "id": "studentCourse",
  5100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5101. "onresize": function () { }
  5102. }, {
  5103. closecallback: function () { }
  5104. }, { "style": { "height": "36px" } }).form; //创建窗体
  5105. _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); } }
  5106. break;
  5107. case "studentCourseS": //项目管理 老师
  5108. _formdiv = new U.UF.UI.form(
  5109. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5110. $$("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 }), {
  5111. "id": "studentCourseS",
  5112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //创建窗体
  5117. _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); } }
  5118. break;
  5119. case "studentIndex": //项目中心
  5120. _formdiv = new U.UF.UI.form(
  5121. "项目中心",
  5122. $$("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 }), {
  5123. "id": "studentIndex",
  5124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5125. "onresize": function () { }
  5126. }, {
  5127. closecallback: function () { }
  5128. }, { "style": { "height": "36px" } }).form; //创建窗体
  5129. _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); } }
  5130. break;
  5131. case "CaseDesignS":
  5132. _formdiv = new U.UF.UI.form(
  5133. "项目进展",
  5134. $$("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 }), {
  5135. "id": "case",
  5136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5137. "onresize": function () { }
  5138. }, {
  5139. closecallback: function () { }
  5140. }, { "style": { "height": "36px" } }).form; //创建窗体
  5141. _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); } }
  5142. break;
  5143. case "tcStudent": //腾讯学生管理
  5144. _formdiv = new U.UF.UI.form(
  5145. "学生管理",
  5146. $$("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 }), {
  5147. "id": "tcStudent",
  5148. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5149. "onresize": function () { }
  5150. }, {
  5151. closecallback: function () { }
  5152. }, { "style": { "height": "36px" } }).form; //创建窗体
  5153. _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); } }
  5154. break;
  5155. case "tcSchool": //腾讯学校管理
  5156. _formdiv = new U.UF.UI.form(
  5157. "学校管理",
  5158. $$("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 }), {
  5159. "id": "tcSchool",
  5160. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //创建窗体
  5165. _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); } }
  5166. break;
  5167. case "tcTeacher": //腾讯学校管理
  5168. _formdiv = new U.UF.UI.form(
  5169. "教师管理",
  5170. $$("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 }), {
  5171. "id": "tcTeacher",
  5172. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5173. "onresize": function () { }
  5174. }, {
  5175. closecallback: function () { }
  5176. }, { "style": { "height": "36px" } }).form; //创建窗体
  5177. _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); } }
  5178. break;
  5179. case "tcData": //腾讯我的资料
  5180. _formdiv = new U.UF.UI.form(
  5181. "我的资料",
  5182. $$("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 }), {
  5183. "id": "tcData",
  5184. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5185. "onresize": function () { }
  5186. }, {
  5187. closecallback: function () { }
  5188. }, { "style": { "height": "36px" } }).form; //创建窗体
  5189. _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); } }
  5190. break;
  5191. case "tcNotice": //腾讯消息通知
  5192. _formdiv = new U.UF.UI.form(
  5193. "消息通知",
  5194. $$("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 }), {
  5195. "id": "tcNotice",
  5196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5197. "onresize": function () { }
  5198. }, {
  5199. closecallback: function () { }
  5200. }, { "style": { "height": "36px" } }).form; //创建窗体
  5201. _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); } }
  5202. break;
  5203. case "myReport": //好友打开
  5204. _formdiv = new U.UF.UI.form(
  5205. "我的评价",
  5206. $$("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 }), {
  5207. "id": "myReport",
  5208. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5209. "onresize": function () { }
  5210. }, {
  5211. closecallback: function () { }
  5212. }, { "style": { "height": "36px" } }).form; //创建窗体
  5213. _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); } }
  5214. break;
  5215. case "learnAna": //好友打开
  5216. _formdiv = new U.UF.UI.form(
  5217. "学习分析",
  5218. $$("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 }), {
  5219. "id": "learnAna",
  5220. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5221. "onresize": function () { }
  5222. }, {
  5223. closecallback: function () { }
  5224. }, { "style": { "height": "36px" } }).form; //创建窗体
  5225. _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); } }
  5226. break;
  5227. case "AIChat": //AI共创
  5228. _formdiv = new U.UF.UI.form(
  5229. "AI共创",
  5230. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5231. "id": "AIChat",
  5232. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5233. "onresize": function () { }
  5234. }, {
  5235. istop: true,
  5236. closecallback: function () { $("#aichat_icon").remove(); },
  5237. narrowcallback: function () {
  5238. if (!$("#aichat_icon")[0]) {
  5239. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5240. }
  5241. },
  5242. }, { "style": { "height": "36px" } }).form; //创建窗体
  5243. _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); } }
  5244. break;
  5245. case "ainew": //AI共创
  5246. _formdiv = new U.UF.UI.form(
  5247. "AI协同",
  5248. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5249. "id": "ainew",
  5250. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5251. "onresize": function () { }
  5252. }, {
  5253. closecallback: function () { }
  5254. }, { "style": { "height": "36px" } }).form; //创建窗体
  5255. _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); } }
  5256. break;
  5257. case "gpt4": //gpt4
  5258. _formdiv = new U.UF.UI.form(
  5259. "AI助手",
  5260. $$("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 }), {
  5261. "id": "gpt4",
  5262. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5263. "onresize": function () { }
  5264. }, {
  5265. closecallback: function () { }
  5266. }, { "style": { "height": "36px" } }).form; //创建窗体
  5267. _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); } }
  5268. break;
  5269. case "aigpt": //gpt4
  5270. _formdiv = new U.UF.UI.form(
  5271. "AI助手+",
  5272. $$("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 }), {
  5273. "id": "aigpt",
  5274. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5275. "onresize": function () { }
  5276. }, {
  5277. closecallback: function () { }
  5278. }, { "style": { "height": "36px" } }).form; //创建窗体
  5279. _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); } }
  5280. break;
  5281. case "futureClass": //AI共创
  5282. _formdiv = new U.UF.UI.form(
  5283. "协同建构",
  5284. $$("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
  5285. "id": "synergyCourse",
  5286. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5287. "onresize": function () { }
  5288. }, {
  5289. closecallback: function () {
  5290. $("iframe", _formdiv)[0].contentWindow.loginout();
  5291. }
  5292. }, { "style": { "height": "36px" } }).form; //创建窗体
  5293. _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); } }
  5294. break;
  5295. case "aiagent": //ai agent
  5296. _formdiv = new U.UF.UI.form(
  5297. "AI Agent",
  5298. $$("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" }), {
  5299. "id": "AIAgent",
  5300. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5301. "onresize": function () { }
  5302. }, {
  5303. closecallback: function () { }
  5304. }, { "style": { "height": "36px" } }).form; //创建窗体
  5305. _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); } }
  5306. break;
  5307. case "dataBoard": //数据看板
  5308. _formdiv = new U.UF.UI.form(
  5309. "数据看板",
  5310. $$("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 }), {
  5311. "id": "dataBoard",
  5312. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5313. "onresize": function () { }
  5314. }, {
  5315. closecallback: function () { }
  5316. }, { "style": { "height": "36px" } }).form; //创建窗体
  5317. _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); } }
  5318. break;
  5319. case "dataBoardSies": //数据融合
  5320. _formdiv = new U.UF.UI.form(
  5321. "数据融合",
  5322. $$("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 }), {
  5323. "id": "dataBoardSies",
  5324. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5325. "onresize": function () { }
  5326. }, {
  5327. closecallback: function () { }
  5328. }, { "style": { "height": "36px" } }).form; //创建窗体
  5329. _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); } }
  5330. break;
  5331. case "dataBoardNew": //数据看板
  5332. _formdiv = new U.UF.UI.form(
  5333. "综合看板",
  5334. $$("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 }), {
  5335. "id": "dataBoardNew",
  5336. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5337. "onresize": function () { }
  5338. }, {
  5339. closecallback: function () { }
  5340. }, { "style": { "height": "36px" } }).form; //创建窗体
  5341. _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); } }
  5342. break;
  5343. case "dataBoardTest": //数据看板
  5344. _formdiv = new U.UF.UI.form(
  5345. "评测看板",
  5346. $$("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 }), {
  5347. "id": "dataBoardTest",
  5348. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5349. "onresize": function () { }
  5350. }, {
  5351. closecallback: function () { }
  5352. }, { "style": { "height": "36px" } }).form; //创建窗体
  5353. _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); } }
  5354. break;
  5355. case "AIAnalyse": //AI共创
  5356. _formdiv = new U.UF.UI.form(
  5357. "AI分析",
  5358. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5359. "id": "AIAnalyse",
  5360. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5361. "onresize": function () { }
  5362. }, {
  5363. closecallback: function () { }
  5364. }, { "style": { "height": "36px" } }).form; //创建窗体
  5365. _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); } }
  5366. break;
  5367. case "studioCourse": //AI共创
  5368. _formdiv = new U.UF.UI.form(
  5369. "工作管理",
  5370. $$("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 }), {
  5371. "id": "studioCourse",
  5372. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5373. "onresize": function () { }
  5374. }, {
  5375. closecallback: function () { }
  5376. }, { "style": { "height": "36px" } }).form; //创建窗体
  5377. _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); } }
  5378. break;
  5379. case "studioIndex": //AI共创
  5380. _formdiv = new U.UF.UI.form(
  5381. "工作中心",
  5382. $$("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 }), {
  5383. "id": "studioIndex",
  5384. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5385. "onresize": function () { }
  5386. }, {
  5387. closecallback: function () { }
  5388. }, { "style": { "height": "36px" } }).form; //创建窗体
  5389. _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); } }
  5390. break;
  5391. case "source":
  5392. _formdiv = new U.UF.UI.form(
  5393. "教学资源",
  5394. $$("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 }), {
  5395. "id": "source",
  5396. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5397. "onresize": function () { }
  5398. }, {
  5399. closecallback: function () { }
  5400. }, { "style": { "height": "36px" } }).form; //创建窗体
  5401. _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); } }
  5402. break;
  5403. case "testTeacher":
  5404. _formdiv = new U.UF.UI.form(
  5405. "教师管理",
  5406. $$("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 }), {
  5407. "id": "testTeacher",
  5408. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5409. "onresize": function () { }
  5410. }, {
  5411. closecallback: function () { }
  5412. }, { "style": { "height": "36px" } }).form; //创建窗体
  5413. _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); } }
  5414. break;
  5415. case "testStudent":
  5416. _formdiv = new U.UF.UI.form(
  5417. "教师中心",
  5418. $$("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 }), {
  5419. "id": "testStudent",
  5420. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5421. "onresize": function () { }
  5422. }, {
  5423. closecallback: function () { }
  5424. }, { "style": { "height": "36px" } }).form; //创建窗体
  5425. _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); } }
  5426. break;
  5427. case "testTeacherSies":
  5428. _formdiv = new U.UF.UI.form(
  5429. "教师管理",
  5430. $$("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 }), {
  5431. "id": "testTeacherSies",
  5432. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5433. "onresize": function () { }
  5434. }, {
  5435. closecallback: function () { }
  5436. }, { "style": { "height": "36px" } }).form; //创建窗体
  5437. _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); } }
  5438. break;
  5439. case "testStudentSies":
  5440. _formdiv = new U.UF.UI.form(
  5441. "教师中心",
  5442. $$("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 }), {
  5443. "id": "testStudentSies",
  5444. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. _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); } }
  5450. break;
  5451. case "ytpbl": //消息通知
  5452. _formdiv = new U.UF.UI.form(
  5453. "案例征集",
  5454. $$("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 }), {
  5455. "id": "ytpbl",
  5456. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //创建窗体
  5461. _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); } }
  5462. // 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");
  5463. break;
  5464. case "aiCourseResource": //人工智能窗体
  5465. _formdiv = new U.UF.UI.form(
  5466. false,
  5467. $$("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 }), {
  5468. "id": "aiCourseResource",
  5469. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5470. "onresize": function () { },
  5471. "isdrag": false,
  5472. }, {
  5473. closecallback: function () { }
  5474. }, { "style": { "height": "36px" } }).form; //创建窗体
  5475. _taskbar = ''
  5476. break;
  5477. case "szdjgCocooroboX": //图形化编程
  5478. _formdiv = new U.UF.UI.form(
  5479. "图形化编程",
  5480. $$("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" }), {
  5481. "id": "szdjgCocooroboX",
  5482. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5483. "onresize": function () { }
  5484. }, {
  5485. closecallback: function () { }
  5486. }, { "style": { "height": "36px" } }).form; //创建窗体
  5487. _taskbar = ''
  5488. break;
  5489. case "szdjgPython": //python编程
  5490. _formdiv = new U.UF.UI.form(
  5491. "Python编程",
  5492. $$("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" }), {
  5493. "id": "szdjgPython",
  5494. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5495. "onresize": function () { }
  5496. }, {
  5497. closecallback: function () { }
  5498. }, { "style": { "height": "36px" } }).form; //创建窗体
  5499. _taskbar = ''
  5500. break;
  5501. case "Record":
  5502. _formdiv = new U.UF.UI.form(
  5503. "观察记录",
  5504. $$("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 }), {
  5505. "id": "Record",
  5506. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5507. "onresize": function () { }
  5508. }, {
  5509. closecallback: function () { }
  5510. }, { "style": { "height": "36px" } }).form; //创建窗体
  5511. _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); } }
  5512. break;
  5513. case "aigptCourse":
  5514. _formdiv = new U.UF.UI.form(
  5515. "AI智能体",
  5516. $$("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' }), {
  5517. "id": "aigptCourse",
  5518. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5519. "onresize": function () { }
  5520. }, {
  5521. closecallback: function () { }
  5522. }, { "style": { "height": "36px" } }).form; //创建窗体
  5523. _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); } }
  5524. break;
  5525. case "classroomObservation":
  5526. _formdiv = new U.UF.UI.form(
  5527. "课堂观察",
  5528. $$("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 }), {
  5529. "id": "classroomObservation",
  5530. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5531. "onresize": function () { }
  5532. }, {
  5533. closecallback: function () { }
  5534. }, { "style": { "height": "36px" } }).form; //创建窗体
  5535. _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); } }
  5536. break;
  5537. case "pblCourse":
  5538. _formdiv = new U.UF.UI.form(
  5539. "学生PBL",
  5540. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5541. "id": "pblCourse",
  5542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5543. "onresize": function () { }
  5544. }, {
  5545. closecallback: function () { }
  5546. }, { "style": { "height": "36px" } }).form; //创建窗体
  5547. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5548. break;
  5549. }
  5550. //U.MD.D.I.openClick(str);
  5551. //如果有任务栏信息
  5552. if (_taskbar) {
  5553. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5554. }
  5555. }
  5556. // U.MD.D.I.openClick = function(str){
  5557. // var click = '';
  5558. // switch(str){
  5559. // case 'friend':
  5560. // click = '我的好友';
  5561. // break;
  5562. // case 'domain':
  5563. // click = '域名管理';
  5564. // break;
  5565. // case 'disk':
  5566. // click = '我的云盘';
  5567. // break;
  5568. // case 'word':
  5569. // click = 'Word';
  5570. // break;
  5571. // case 'excel':
  5572. // click = 'Execl';
  5573. // break;
  5574. // case 'txt':
  5575. // click = '文本文件';
  5576. // break;
  5577. // case 'lookupFriend':
  5578. // click = '查找好友';
  5579. // break;
  5580. // case 'ftp':
  5581. // click = 'FTP';
  5582. // break;
  5583. // case 'group':
  5584. // click = '群组';
  5585. // break;
  5586. // case 'set':
  5587. // click = '我的设置';
  5588. // break;
  5589. // case 'systemSet':
  5590. // click = '系统设置';
  5591. // break;
  5592. // case 'boomYun':
  5593. // click = '互联办公';
  5594. // break;
  5595. // case 'xz':
  5596. // click = '云端下载';
  5597. // break;
  5598. // case 'client':
  5599. // click = '有思浏览器';
  5600. // break;
  5601. // case 'backEndProgramming':
  5602. // click = '在线后台编程';
  5603. // break;
  5604. // case 'frontEndProgramming':
  5605. // click = '在线前端编程';
  5606. // break;
  5607. // default: break;
  5608. // }
  5609. // if(U.MD.D.I.Ip && click){
  5610. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5611. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5612. // })
  5613. // }
  5614. // }
  5615. /**
  5616. *函数作用:ajax简易函数,使用post格式
  5617. *@param url {data} 后台地址
  5618. *@param data {data} 参数json
  5619. *@param fn {data} 回调函数
  5620. *
  5621. */
  5622. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5623. // var xhr = new XMLHttpRequest();
  5624. // xhr.open("GET",url,true);
  5625. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5626. // xhr.onreadystatechange = function(){
  5627. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5628. // fn.call(this,xhr.responseText);
  5629. // }
  5630. // };
  5631. // xhr.send();
  5632. // }
  5633. /*判断是否是内网IP*/
  5634. // U.MD.D.I.isInnerIPFn = function(str){
  5635. // var curPageUrl = str;
  5636. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5637. // curPageUrl =curPageUrl.replace(reg1,'');
  5638. // // console.log('curPageUrl-1 '+curPageUrl);
  5639. // var reg2 = /\:+/g;//替换冒号为一点
  5640. // curPageUrl =curPageUrl.replace(reg2,'.');
  5641. // // console.log('curPageUrl-2 '+curPageUrl);
  5642. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5643. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5644. // if(curPageUrl[2] != '16'){
  5645. // return ipAddress;
  5646. // }else{
  5647. // return false;
  5648. // }
  5649. // }
  5650. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5651. // //compatibility for firefox and chrome
  5652. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5653. // var pc = new myPeerConnection({
  5654. // iceServers: []
  5655. // }),
  5656. // noop = function() {},
  5657. // localIPs = {},
  5658. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5659. // key;
  5660. // function iterateIP(ip) {
  5661. // if (!localIPs[ip]) onNewIP(ip);
  5662. // localIPs[ip] = true;
  5663. // }
  5664. // //create a bogus data channel
  5665. // pc.createDataChannel("");
  5666. // // create offer and set local description
  5667. // pc.createOffer().then(function(sdp) {
  5668. // sdp.sdp.split('\n').forEach(function(line) {
  5669. // if (line.indexOf('candidate') < 0) return;
  5670. // line.match(ipRegex).forEach(iterateIP);
  5671. // });
  5672. // pc.setLocalDescription(sdp, noop, noop);
  5673. // }).catch(function(reason) {
  5674. // // An error occurred, so handle the failure to connect
  5675. // });
  5676. // //sten for candidate events
  5677. // pc.onicecandidate = function(ice) {
  5678. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5679. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5680. // };
  5681. // }
  5682. // U.MD.D.I.getUserIpBool = function(callback){
  5683. // U.MD.D.I.getUserIP(function(ip){
  5684. // alert("Got IP! :" + ip);
  5685. // });
  5686. //}
  5687. //#endregion
  5688. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5689. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5690. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5691. _userinfo = US.userInfo, //登录用户信息
  5692. _userid = US.userInfo.userid //登录用户id
  5693. let _iframe;
  5694. let _cid = cid,
  5695. _stage = stage,
  5696. _task = task,
  5697. _tool = tool;
  5698. var _jie = $$("div", {
  5699. "style": {
  5700. "position": "absolute",
  5701. "bottom": "50px",
  5702. "right": "50px",
  5703. "zIndex": "9999",
  5704. "backgroundColor": "#2268bc",
  5705. "color": "#fff",
  5706. "padding": "12px 20px",
  5707. "cursor": "pointer",
  5708. "borderRadius": "4px",
  5709. },
  5710. "innerHTML": "提交作业"
  5711. })
  5712. let aTool = ''
  5713. let _loading = document.createElement('div')
  5714. _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;"
  5715. // _loading.id = "";
  5716. let _lchild = document.createElement('div')
  5717. let _limg = document.createElement('img')
  5718. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5719. _limg.style = "width: 26px;margin-right: 10px;"
  5720. _lchild.appendChild(_limg)
  5721. let _lspan = document.createElement('span')
  5722. _lspan.innerHTML = "上传中..."
  5723. _lchild.appendChild(_lspan)
  5724. _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%);"
  5725. _loading.appendChild(_lchild)
  5726. var _box = $$('div', {
  5727. "style": {
  5728. "position": "relative",
  5729. "width": "100%",
  5730. "height": "100%",
  5731. },
  5732. })
  5733. _box.appendChild(_loading)
  5734. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5735. switch (str) {
  5736. case "whiteboard":
  5737. aTool = 1;
  5738. _iframe = $$("iframe", {
  5739. "frameborder": "no",
  5740. "border": "0",
  5741. "scrolling ": "no",
  5742. "style": {
  5743. "cssText": "border:0;width:100%;height:100%"
  5744. },
  5745. "src": "https://beta.iwb.cocorobo.cn/"
  5746. })
  5747. _box.appendChild(_iframe);
  5748. _box.appendChild(_jie);
  5749. _formdiv = new U.UF.UI.form(
  5750. "电子白板",
  5751. _box, {
  5752. "id": "whiteboard" + cid + stage + task + tool,
  5753. "style": {
  5754. "width": "90%",
  5755. "height": "90%",
  5756. "overflow": 'hidden'
  5757. },
  5758. "onresize": function () { }
  5759. }, {
  5760. closecallback: function () { }
  5761. }, {
  5762. "style": {
  5763. "height": "36px"
  5764. }
  5765. }).form; //创建窗体
  5766. _taskbar = {
  5767. "id": str + _formdiv.id,
  5768. "style": {
  5769. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5770. },
  5771. "name": "电子白板",
  5772. "forms": _formdiv,
  5773. "click": function () {
  5774. U.MD.D.I.openApplication(str, obj, info);
  5775. }
  5776. }
  5777. break;
  5778. case "mind":
  5779. aTool = 3;
  5780. _iframe = $$("iframe", {
  5781. "frameborder": "no",
  5782. "border": "0",
  5783. "scrolling ": "no",
  5784. "style": {
  5785. "cssText": "border:0;width:100%;height:100%"
  5786. },
  5787. "src": "/kityminder-editor/dist/index.html"
  5788. })
  5789. _box.appendChild(_iframe);
  5790. _box.appendChild(_jie);
  5791. _formdiv = new U.UF.UI.form(
  5792. "思维导图",
  5793. _box, { //"/jsmind/example/demo.html"
  5794. "id": "mind" + cid + stage + task + tool,
  5795. "style": {
  5796. "width": "90%",
  5797. "height": "90%",
  5798. "overflow": 'hidden'
  5799. },
  5800. "onresize": function () { }
  5801. }, {
  5802. closecallback: function () { }
  5803. }, {
  5804. "style": {
  5805. "height": "36px"
  5806. }
  5807. }).form; //创建窗体
  5808. _taskbar = {
  5809. "id": str + _formdiv.id,
  5810. "style": {
  5811. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5812. },
  5813. "name": "思维导图",
  5814. "forms": _formdiv,
  5815. "click": function () {
  5816. U.MD.D.I.openApplication(str, obj, info);
  5817. }
  5818. }
  5819. break;
  5820. case "MindMap":
  5821. aTool = 3;
  5822. _iframe = $$("iframe", {
  5823. "frameborder": "no",
  5824. "border": "0",
  5825. "scrolling ": "no",
  5826. "style": {
  5827. "cssText": "border:0;width:100%;height:100%"
  5828. },
  5829. "src": "//cloud.cocorobo.cn/mind/"
  5830. })
  5831. _box.appendChild(_iframe);
  5832. _box.appendChild(_jie);
  5833. _formdiv = new U.UF.UI.form(
  5834. "思维导图",
  5835. _box, { //"/jsmind/example/demo.html"
  5836. "id": "mind" + cid + stage + task + tool,
  5837. "style": {
  5838. "width": "90%",
  5839. "height": "90%",
  5840. "overflow": 'hidden'
  5841. },
  5842. "onresize": function () { }
  5843. }, {
  5844. closecallback: function () { }
  5845. }, {
  5846. "style": {
  5847. "height": "36px"
  5848. }
  5849. }).form; //创建窗体
  5850. _taskbar = {
  5851. "id": str + _formdiv.id,
  5852. "style": {
  5853. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5854. },
  5855. "name": "思维导图",
  5856. "forms": _formdiv,
  5857. "click": function () {
  5858. U.MD.D.I.openApplication(str, obj, info);
  5859. }
  5860. }
  5861. break;
  5862. case "doc":
  5863. aTool = 6;
  5864. _iframe = $$("iframe", {
  5865. "frameborder": "no",
  5866. "border": "0",
  5867. "scrolling ": "no",
  5868. "style": {
  5869. "cssText": "border:0;width:100%;height:100%"
  5870. },
  5871. "src": "/Office/Word/WordEditArea.htm"
  5872. })
  5873. _box.appendChild(_iframe);
  5874. _box.appendChild(_jie);
  5875. _formdiv = new U.UF.UI.form(
  5876. "协同文档",
  5877. _box, {
  5878. "id": "doc" + cid + stage + task + tool,
  5879. "style": {
  5880. "width": "90%",
  5881. "height": "90%",
  5882. "overflow": 'hidden'
  5883. },
  5884. "onresize": function () { }
  5885. }, {
  5886. closecallback: function () { }
  5887. }, {
  5888. "style": {
  5889. "height": "36px"
  5890. }
  5891. }).form; //创建窗体
  5892. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5893. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5894. })
  5895. _taskbar = {
  5896. "id": str + _formdiv.id,
  5897. "style": {
  5898. "backgroundImage": "url(/img/icon/doc.png)"
  5899. },
  5900. "name": "协同文档",
  5901. "forms": _formdiv,
  5902. "click": function () {
  5903. U.MD.D.I.openApplication(str, obj, info);
  5904. }
  5905. }
  5906. break;
  5907. case "mindNetwork": //好友打开
  5908. aTool = 7;
  5909. _iframe = $$("iframe", {
  5910. "webkitallowfullscreen": "",
  5911. "mozallowfullscreen": "",
  5912. "allowfullscreen": "",
  5913. "frameborder": "no",
  5914. "border": "0",
  5915. "scrolling ": "no",
  5916. "style": {
  5917. "cssText": "border:0; width:100%; height:100%;"
  5918. },
  5919. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5920. })
  5921. _box.appendChild(_iframe);
  5922. _box.appendChild(_jie);
  5923. _formdiv = new U.UF.UI.form(
  5924. "思维网格",
  5925. _box, {
  5926. "id": "mindNetwork" + cid + stage + task + tool,
  5927. "style": {
  5928. "width": "90%",
  5929. "height": "90%",
  5930. "overflow": 'hidden'
  5931. },
  5932. "onresize": function () { }
  5933. }, {
  5934. closecallback: function () { }
  5935. }, {
  5936. "style": {
  5937. "height": "36px"
  5938. }
  5939. }).form; //创建窗体
  5940. _taskbar = {
  5941. "id": str + _formdiv.id,
  5942. "style": {
  5943. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5944. },
  5945. "name": "思维网格",
  5946. "forms": _formdiv,
  5947. "click": function () {
  5948. U.MD.D.I.openApplication(str, obj, info);
  5949. }
  5950. }
  5951. break;
  5952. case "courseDesign":
  5953. _iframe = $$("iframe", {
  5954. "webkitallowfullscreen": "",
  5955. "mozallowfullscreen": "",
  5956. "allowfullscreen": "",
  5957. "frameborder": "no",
  5958. "border": "0",
  5959. "scrolling ": "no",
  5960. "style": {
  5961. "cssText": "border:0; width:100%; height:100%;"
  5962. },
  5963. "src": "/course-design-vue"
  5964. })
  5965. _box.appendChild(_iframe);
  5966. _box.appendChild(_jie);
  5967. _formdiv = new U.UF.UI.form(
  5968. "项目设计",
  5969. _box, {
  5970. "id": "courseDesign" + cid + stage + task + tool,
  5971. "style": {
  5972. "width": "90%",
  5973. "height": "90%",
  5974. "overflow": 'hidden'
  5975. },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, {
  5980. "style": {
  5981. "height": "36px"
  5982. }
  5983. }).form; //创建窗体
  5984. _taskbar = {
  5985. "id": str + _formdiv.id,
  5986. "style": {
  5987. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5988. },
  5989. "name": "项目设计",
  5990. "forms": _formdiv,
  5991. "click": function () {
  5992. U.MD.D.I.openApplication(str, obj, info);
  5993. }
  5994. }
  5995. break;
  5996. }
  5997. const script1 = document.createElement("script");
  5998. script1.type = "text/javascript";
  5999. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6000. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6001. const script2 = document.createElement("script");
  6002. script2.type = "text/javascript";
  6003. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6004. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6005. const script3 = document.createElement("script");
  6006. script3.type = "text/javascript";
  6007. script3.charset = "UTF-8";
  6008. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6009. const script4 = document.createElement("script");
  6010. script4.type = "text/javascript";
  6011. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6012. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6013. if (_iframe) {
  6014. if (str == 'doc') {
  6015. _iframe = _formdiv.querySelector('iframe')
  6016. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6017. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6018. _iframe.contentWindow.document.body.appendChild(script1);
  6019. _iframe.contentWindow.document.body.appendChild(script2);
  6020. // _iframe.contentWindow.document.body.appendChild(script3);
  6021. _iframe.contentWindow.document.body.appendChild(script4);
  6022. })
  6023. if (onloadListener) {
  6024. _iframe.contentDocument.location.reload()
  6025. } else {
  6026. _iframe.contentDocument.location.reload()
  6027. }
  6028. } else if (str == 'courseDesign') {
  6029. U.UF.DL.iframeLoad(_iframe, function () {
  6030. // _iframe.contentWindow.U.MD.O.W.load();
  6031. // _iframe.contentWindow.document.body.appendChild(script1);
  6032. _iframe.contentWindow.document.body.appendChild(script2);
  6033. _iframe.contentWindow.document.body.appendChild(script4);
  6034. })
  6035. } else if (str == 'mind') {
  6036. _iframe = _formdiv.querySelector('iframe')
  6037. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6038. //
  6039. _iframe.contentWindow.document.body.appendChild(script1);
  6040. _iframe.contentWindow.document.body.appendChild(script2);
  6041. _iframe.contentWindow.document.body.appendChild(script4);
  6042. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6043. })
  6044. if (onloadListener) {
  6045. _iframe.contentDocument.location.reload()
  6046. } else {
  6047. _iframe.contentDocument.location.reload()
  6048. }
  6049. } else if (str == 'whiteboard') {
  6050. _iframe = _formdiv.querySelector('iframe')
  6051. let onloadListener = _iframe.onload = () => {
  6052. _iframe.contentWindow.document.body.appendChild(script1);
  6053. _iframe.contentWindow.document.body.appendChild(script2);
  6054. _iframe.contentWindow.document.body.appendChild(script4);
  6055. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6056. };
  6057. // if (onloadListener) {
  6058. // try {
  6059. // _iframe.src += "?cocorobo="+new Date().getTime()
  6060. // _iframe.contentWindow.document.location.reload()
  6061. // } catch (error) {
  6062. // }
  6063. // } else {
  6064. // _iframe.contentDocument.location.reload()
  6065. // }
  6066. } else {
  6067. _iframe.onload = () => {
  6068. _iframe.contentWindow.document.body.appendChild(script1);
  6069. _iframe.contentWindow.document.body.appendChild(script2);
  6070. // _iframe.contentWindow.document.body.appendChild(script3);
  6071. _iframe.contentWindow.document.body.appendChild(script4);
  6072. };
  6073. }
  6074. _jie.onclick = async () => {
  6075. let text = ''
  6076. if (aTool == 1) {
  6077. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6078. } else if (aTool == 6) {
  6079. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6080. } else if (aTool == 3) {
  6081. text = await U.MD.D.I.getEditorContent(_iframe);
  6082. }
  6083. _loading.style.display = 'flex'
  6084. console.log(_loading);
  6085. var _ajs = _iframe.contentWindow.document.createElement("script");
  6086. _ajs.type = "text/javascript";
  6087. _ajs.innerHTML =
  6088. // 'console.log(' + _loading + ');\n' +
  6089. 'var _js = document.createElement("script");\n' +
  6090. '_js.type="text/javascript";\n' +
  6091. '_js.charset="UTF-8";\n' +
  6092. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6093. "_js.onload = function(){\n" +
  6094. ' var a = document.getElementsByTagName("img")\n' +
  6095. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6096. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6097. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6098. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6099. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6100. "beforeUpload_shishi(file," +
  6101. "'" +
  6102. _userid +
  6103. "'" +
  6104. ", " +
  6105. "'" +
  6106. _cid +
  6107. "'" +
  6108. ", " +
  6109. "'" +
  6110. _stage +
  6111. "'" +
  6112. ", " +
  6113. "'" +
  6114. _task +
  6115. "'" +
  6116. ", " +
  6117. "'" +
  6118. _tool +
  6119. "'" +
  6120. ", " +
  6121. "'" +
  6122. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6123. "'" +
  6124. ", " +
  6125. "'" +
  6126. aTool +
  6127. "'" +
  6128. ", " +
  6129. "`" +
  6130. text +
  6131. "`" +
  6132. ")\n" +
  6133. " });\n" +
  6134. "}\n" +
  6135. "document.head.appendChild(_js);\n";
  6136. _iframe.contentWindow.document.head.appendChild(_ajs);
  6137. }
  6138. }
  6139. //U.MD.D.I.openClick(str);
  6140. //如果有任务栏信息
  6141. // if (_taskbar) {
  6142. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6143. // }
  6144. }
  6145. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6146. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6147. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6148. _userinfo = US.userInfo, //登录用户信息
  6149. _userid = US.userInfo.userid //登录用户id
  6150. let _iframe;
  6151. let _cid = cid,
  6152. _stage = stage,
  6153. _task = task,
  6154. _tool = tool;
  6155. var _jie = $$("div", {
  6156. "style": {
  6157. "position": "absolute",
  6158. "bottom": "50px",
  6159. "right": "50px",
  6160. "zIndex": "9999",
  6161. "backgroundColor": "#2268bc",
  6162. "color": "#fff",
  6163. "padding": "12px 20px",
  6164. "cursor": "pointer",
  6165. "borderRadius": "4px",
  6166. },
  6167. "innerHTML": "提交作业"
  6168. })
  6169. let aTool = ''
  6170. let _loading = document.createElement('div')
  6171. _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;"
  6172. // _loading.id = "";
  6173. let _lchild = document.createElement('div')
  6174. let _limg = document.createElement('img')
  6175. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6176. _limg.style = "width: 26px;margin-right: 10px;"
  6177. _lchild.appendChild(_limg)
  6178. let _lspan = document.createElement('span')
  6179. _lspan.innerHTML = "上传中..."
  6180. _lchild.appendChild(_lspan)
  6181. _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%);"
  6182. _loading.appendChild(_lchild)
  6183. let _box = $$('div', {
  6184. "style": {
  6185. "position": "relative",
  6186. "width": "100%",
  6187. "height": "100%",
  6188. },
  6189. })
  6190. _box.appendChild(_loading)
  6191. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6192. switch (str) {
  6193. case "whiteboard":
  6194. aTool = 1;
  6195. _iframe = $$("iframe", {
  6196. "frameborder": "no",
  6197. "border": "0",
  6198. "scrolling ": "no",
  6199. "style": {
  6200. "cssText": "border:0;width:100%;height:100%"
  6201. },
  6202. "src": "https://beta.iwb.cocorobo.cn/"
  6203. })
  6204. _box.appendChild(_iframe);
  6205. _box.appendChild(_jie);
  6206. _formdiv = new U.UF.UI.form(
  6207. "电子白板",
  6208. _box, {
  6209. "id": "whiteboard" + cid + stage + task + tool,
  6210. "style": {
  6211. "width": "90%",
  6212. "height": "90%",
  6213. "overflow": 'hidden'
  6214. },
  6215. "onresize": function () { }
  6216. }, {
  6217. closecallback: function () { }
  6218. }, {
  6219. "style": {
  6220. "height": "36px"
  6221. }
  6222. }).form; //创建窗体
  6223. _taskbar = {
  6224. "id": str + _formdiv.id,
  6225. "style": {
  6226. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6227. },
  6228. "name": "电子白板",
  6229. "forms": _formdiv,
  6230. "click": function () {
  6231. U.MD.D.I.openApplication(str, obj, info);
  6232. }
  6233. }
  6234. break;
  6235. case "mind":
  6236. aTool = 3;
  6237. _iframe = $$("iframe", {
  6238. "frameborder": "no",
  6239. "border": "0",
  6240. "scrolling ": "no",
  6241. "style": {
  6242. "cssText": "border:0;width:100%;height:100%"
  6243. },
  6244. "src": "/kityminder-editor/dist/index.html"
  6245. })
  6246. _box.appendChild(_iframe);
  6247. _box.appendChild(_jie);
  6248. _formdiv = new U.UF.UI.form(
  6249. "思维导图",
  6250. _box, { //"/jsmind/example/demo.html"
  6251. "id": "mind" + cid + stage + task + tool,
  6252. "style": {
  6253. "width": "90%",
  6254. "height": "90%",
  6255. "overflow": 'hidden'
  6256. },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, {
  6261. "style": {
  6262. "height": "36px"
  6263. }
  6264. }).form; //创建窗体
  6265. _taskbar = {
  6266. "id": str + _formdiv.id,
  6267. "style": {
  6268. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6269. },
  6270. "name": "思维导图",
  6271. "forms": _formdiv,
  6272. "click": function () {
  6273. U.MD.D.I.openApplication(str, obj, info);
  6274. }
  6275. }
  6276. break;
  6277. case "MindMap":
  6278. aTool = 3;
  6279. _iframe = $$("iframe", {
  6280. "frameborder": "no",
  6281. "border": "0",
  6282. "scrolling ": "no",
  6283. "style": {
  6284. "cssText": "border:0;width:100%;height:100%"
  6285. },
  6286. "src": "//cloud.cocorobo.cn/mind/"
  6287. })
  6288. _box.appendChild(_iframe);
  6289. _box.appendChild(_jie);
  6290. _formdiv = new U.UF.UI.form(
  6291. "思维导图",
  6292. _box, { //"/jsmind/example/demo.html"
  6293. "id": "mind" + cid + stage + task + tool,
  6294. "style": {
  6295. "width": "90%",
  6296. "height": "90%",
  6297. "overflow": 'hidden'
  6298. },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, {
  6303. "style": {
  6304. "height": "36px"
  6305. }
  6306. }).form; //创建窗体
  6307. _taskbar = {
  6308. "id": str + _formdiv.id,
  6309. "style": {
  6310. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6311. },
  6312. "name": "思维导图",
  6313. "forms": _formdiv,
  6314. "click": function () {
  6315. U.MD.D.I.openApplication(str, obj, info);
  6316. }
  6317. }
  6318. break;
  6319. case "doc":
  6320. aTool = 6;
  6321. _iframe = $$("iframe", {
  6322. "frameborder": "no",
  6323. "border": "0",
  6324. "scrolling ": "no",
  6325. "style": {
  6326. "cssText": "border:0;width:100%;height:100%"
  6327. },
  6328. "src": "/Office/Word/WordEditArea.htm"
  6329. })
  6330. _box.appendChild(_iframe);
  6331. _box.appendChild(_jie);
  6332. _formdiv = new U.UF.UI.form(
  6333. "协同文档",
  6334. _box, {
  6335. "id": "doc" + cid + stage + task + tool,
  6336. "style": {
  6337. "width": "90%",
  6338. "height": "90%",
  6339. "overflow": 'hidden'
  6340. },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, {
  6345. "style": {
  6346. "height": "36px"
  6347. }
  6348. }).form; //创建窗体
  6349. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6350. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6351. })
  6352. _taskbar = {
  6353. "id": str + _formdiv.id,
  6354. "style": {
  6355. "backgroundImage": "url(/img/icon/doc.png)"
  6356. },
  6357. "name": "协同文档",
  6358. "forms": _formdiv,
  6359. "click": function () {
  6360. U.MD.D.I.openApplication(str, obj, info);
  6361. }
  6362. }
  6363. break;
  6364. case "mindNetwork": //好友打开
  6365. aTool = 7;
  6366. _iframe = $$("iframe", {
  6367. "webkitallowfullscreen": "",
  6368. "mozallowfullscreen": "",
  6369. "allowfullscreen": "",
  6370. "frameborder": "no",
  6371. "border": "0",
  6372. "scrolling ": "no",
  6373. "style": {
  6374. "cssText": "border:0; width:100%; height:100%;"
  6375. },
  6376. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6377. })
  6378. _box.appendChild(_iframe);
  6379. _box.appendChild(_jie);
  6380. _formdiv = new U.UF.UI.form(
  6381. "思维网格",
  6382. _box, {
  6383. "id": "mindNetwork" + cid + stage + task + tool,
  6384. "style": {
  6385. "width": "90%",
  6386. "height": "90%",
  6387. "overflow": 'hidden'
  6388. },
  6389. "onresize": function () { }
  6390. }, {
  6391. closecallback: function () { }
  6392. }, {
  6393. "style": {
  6394. "height": "36px"
  6395. }
  6396. }).form; //创建窗体
  6397. _taskbar = {
  6398. "id": str + _formdiv.id,
  6399. "style": {
  6400. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6401. },
  6402. "name": "思维网格",
  6403. "forms": _formdiv,
  6404. "click": function () {
  6405. U.MD.D.I.openApplication(str, obj, info);
  6406. }
  6407. }
  6408. break;
  6409. case "courseDesign":
  6410. _iframe = $$("iframe", {
  6411. "webkitallowfullscreen": "",
  6412. "mozallowfullscreen": "",
  6413. "allowfullscreen": "",
  6414. "frameborder": "no",
  6415. "border": "0",
  6416. "scrolling ": "no",
  6417. "style": {
  6418. "cssText": "border:0; width:100%; height:100%;"
  6419. },
  6420. "src": "/course-design-vue"
  6421. })
  6422. _box.appendChild(_iframe);
  6423. _box.appendChild(_jie);
  6424. _formdiv = new U.UF.UI.form(
  6425. "项目设计",
  6426. _box, {
  6427. "id": "courseDesign" + cid + stage + task + tool,
  6428. "style": {
  6429. "width": "90%",
  6430. "height": "90%",
  6431. "overflow": 'hidden'
  6432. },
  6433. "onresize": function () { }
  6434. }, {
  6435. closecallback: function () { }
  6436. }, {
  6437. "style": {
  6438. "height": "36px"
  6439. }
  6440. }).form; //创建窗体
  6441. _taskbar = {
  6442. "id": str + _formdiv.id,
  6443. "style": {
  6444. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6445. },
  6446. "name": "项目设计",
  6447. "forms": _formdiv,
  6448. "click": function () {
  6449. U.MD.D.I.openApplication(str, obj, info);
  6450. }
  6451. }
  6452. break;
  6453. }
  6454. const script1 = document.createElement("script");
  6455. script1.type = "text/javascript";
  6456. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6457. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6458. const script2 = document.createElement("script");
  6459. script2.type = "text/javascript";
  6460. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6461. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6462. const script3 = document.createElement("script");
  6463. script3.type = "text/javascript";
  6464. script3.charset = "UTF-8";
  6465. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6466. const script4 = document.createElement("script");
  6467. script4.type = "text/javascript";
  6468. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6469. script4.src = window.origin + "/js/Common/jietu2E.js";
  6470. if (_iframe) {
  6471. if (str == 'doc') {
  6472. _iframe = _formdiv.querySelector('iframe')
  6473. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6474. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6475. _iframe.contentWindow.document.body.appendChild(script1);
  6476. _iframe.contentWindow.document.body.appendChild(script2);
  6477. // _iframe.contentWindow.document.body.appendChild(script3);
  6478. _iframe.contentWindow.document.body.appendChild(script4);
  6479. })
  6480. if (onloadListener) {
  6481. _iframe.contentDocument.location.reload()
  6482. } else {
  6483. _iframe.contentDocument.location.reload()
  6484. }
  6485. } else if (str == 'courseDesign') {
  6486. U.UF.DL.iframeLoad(_iframe, function () {
  6487. // _iframe.contentWindow.U.MD.O.W.load();
  6488. // _iframe.contentWindow.document.body.appendChild(script1);
  6489. _iframe.contentWindow.document.body.appendChild(script2);
  6490. _iframe.contentWindow.document.body.appendChild(script4);
  6491. })
  6492. } else if (str == 'mind') {
  6493. _iframe = _formdiv.querySelector('iframe')
  6494. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6495. //
  6496. _iframe.contentWindow.document.body.appendChild(script1);
  6497. _iframe.contentWindow.document.body.appendChild(script2);
  6498. _iframe.contentWindow.document.body.appendChild(script4);
  6499. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6500. })
  6501. if (onloadListener) {
  6502. _iframe.contentDocument.location.reload()
  6503. } else {
  6504. _iframe.contentDocument.location.reload()
  6505. }
  6506. } else if (str == 'whiteboard') {
  6507. _iframe = _formdiv.querySelector('iframe')
  6508. let onloadListener = _iframe.onload = () => {
  6509. _iframe.contentWindow.document.body.appendChild(script1);
  6510. _iframe.contentWindow.document.body.appendChild(script2);
  6511. _iframe.contentWindow.document.body.appendChild(script4);
  6512. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6513. };
  6514. // if (onloadListener) {
  6515. // try {
  6516. // _iframe.src += "?cocorobo="+new Date().getTime()
  6517. // _iframe.contentWindow.document.location.reload()
  6518. // } catch (error) {
  6519. // }
  6520. // } else {
  6521. // _iframe.contentDocument.location.reload()
  6522. // }
  6523. } else {
  6524. _iframe.onload = () => {
  6525. _iframe.contentWindow.document.body.appendChild(script1);
  6526. _iframe.contentWindow.document.body.appendChild(script2);
  6527. // _iframe.contentWindow.document.body.appendChild(script3);
  6528. _iframe.contentWindow.document.body.appendChild(script4);
  6529. };
  6530. }
  6531. _jie.onclick = async () => {
  6532. let text = ''
  6533. if (aTool == 1) {
  6534. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6535. } else if (aTool == 6) {
  6536. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6537. } else if (aTool == 3) {
  6538. text = await U.MD.D.I.getEditorContent(_iframe);
  6539. }
  6540. _loading.style.display = 'flex'
  6541. console.log(_loading);
  6542. var _ajs = _iframe.contentWindow.document.createElement("script");
  6543. _ajs.type = "text/javascript";
  6544. _ajs.innerHTML =
  6545. // 'console.log(' + _loading + ');\n' +
  6546. 'var _js = document.createElement("script");\n' +
  6547. '_js.type="text/javascript";\n' +
  6548. '_js.charset="UTF-8";\n' +
  6549. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6550. "_js.onload = function(){\n" +
  6551. ' var a = document.getElementsByTagName("img")\n' +
  6552. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6553. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6554. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6555. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6556. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6557. "beforeUpload_shishi(file," +
  6558. "'" +
  6559. _userid +
  6560. "'" +
  6561. ", " +
  6562. "'" +
  6563. _cid +
  6564. "'" +
  6565. ", " +
  6566. "'" +
  6567. _stage +
  6568. "'" +
  6569. ", " +
  6570. "'" +
  6571. _task +
  6572. "'" +
  6573. ", " +
  6574. "'" +
  6575. _tool +
  6576. "'" +
  6577. ", " +
  6578. "'" +
  6579. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6580. "'" +
  6581. ", " +
  6582. "'" +
  6583. aTool +
  6584. "'" +
  6585. ", " +
  6586. "`" +
  6587. text +
  6588. "`" +
  6589. ")\n" +
  6590. " });\n" +
  6591. "}\n" +
  6592. "document.head.appendChild(_js);\n";
  6593. _iframe.contentWindow.document.head.appendChild(_ajs);
  6594. }
  6595. }
  6596. //U.MD.D.I.openClick(str);
  6597. //如果有任务栏信息
  6598. // if (_taskbar) {
  6599. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6600. // }
  6601. }
  6602. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6603. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6604. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6605. _userid = student.userid, //登录用户id
  6606. _username = student.student //用户名字
  6607. let _iframe;
  6608. let _cid = cid,
  6609. _stage = stage,
  6610. _task = task,
  6611. _tool = tool;
  6612. var _jie = $$("div", {
  6613. "style": {
  6614. "position": "absolute",
  6615. "bottom": "50px",
  6616. "right": "50px",
  6617. "zIndex": "9999",
  6618. "backgroundColor": "#2268bc",
  6619. "color": "#fff",
  6620. "padding": "12px 20px",
  6621. "cursor": "pointer",
  6622. "borderRadius": "4px",
  6623. },
  6624. "innerHTML": "提交作业"
  6625. })
  6626. let aTool = ''
  6627. let _loading = document.createElement('div')
  6628. _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;"
  6629. // _loading.id = "";
  6630. let _lchild = document.createElement('div')
  6631. let _limg = document.createElement('img')
  6632. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6633. _limg.style = "width: 26px;margin-right: 10px;"
  6634. _lchild.appendChild(_limg)
  6635. let _lspan = document.createElement('span')
  6636. _lspan.innerHTML = "上传中..."
  6637. _lchild.appendChild(_lspan)
  6638. _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%);"
  6639. _loading.appendChild(_lchild)
  6640. var _box = $$('div', {
  6641. "style": {
  6642. "position": "relative",
  6643. "width": "100%",
  6644. "height": "100%",
  6645. },
  6646. })
  6647. _box.appendChild(_loading)
  6648. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6649. switch (str) {
  6650. case "whiteboard":
  6651. aTool = 1;
  6652. _iframe = $$("iframe", {
  6653. "frameborder": "no",
  6654. "border": "0",
  6655. "scrolling ": "no",
  6656. "style": {
  6657. "cssText": "border:0;width:100%;height:100%"
  6658. },
  6659. "src": "https://beta.iwb.cocorobo.cn/"
  6660. })
  6661. _box.appendChild(_iframe);
  6662. _box.appendChild(_jie);
  6663. _formdiv = new U.UF.UI.form(
  6664. "电子白板-" + _username,
  6665. _box, {
  6666. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6667. "style": {
  6668. "width": "90%",
  6669. "height": "90%",
  6670. "overflow": 'hidden'
  6671. },
  6672. "onresize": function () { }
  6673. }, {
  6674. closecallback: function () { }
  6675. }, {
  6676. "style": {
  6677. "height": "36px"
  6678. }
  6679. }).form; //创建窗体
  6680. _taskbar = {
  6681. "id": str + _formdiv.id,
  6682. "style": {
  6683. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6684. },
  6685. "name": "电子白板",
  6686. "forms": _formdiv,
  6687. "click": function () {
  6688. U.MD.D.I.openApplication(str, obj, info);
  6689. }
  6690. }
  6691. break;
  6692. case "mind":
  6693. aTool = 3;
  6694. _iframe = $$("iframe", {
  6695. "frameborder": "no",
  6696. "border": "0",
  6697. "scrolling ": "no",
  6698. "style": {
  6699. "cssText": "border:0;width:100%;height:100%"
  6700. },
  6701. "src": "/kityminder-editor/dist/index.html"
  6702. })
  6703. _box.appendChild(_iframe);
  6704. _box.appendChild(_jie);
  6705. _formdiv = new U.UF.UI.form(
  6706. "思维导图-" + _username,
  6707. _box, { //"/jsmind/example/demo.html"
  6708. "id": "mind" + cid + stage + task + tool + _userid,
  6709. "style": {
  6710. "width": "90%",
  6711. "height": "90%",
  6712. "overflow": 'hidden'
  6713. },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, {
  6718. "style": {
  6719. "height": "36px"
  6720. }
  6721. }).form; //创建窗体
  6722. _taskbar = {
  6723. "id": str + _formdiv.id,
  6724. "style": {
  6725. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6726. },
  6727. "name": "思维导图",
  6728. "forms": _formdiv,
  6729. "click": function () {
  6730. U.MD.D.I.openApplication(str, obj, info);
  6731. }
  6732. }
  6733. break;
  6734. case "MindMap":
  6735. aTool = 3;
  6736. _iframe = $$("iframe", {
  6737. "frameborder": "no",
  6738. "border": "0",
  6739. "scrolling ": "no",
  6740. "style": {
  6741. "cssText": "border:0;width:100%;height:100%"
  6742. },
  6743. "src": "//cloud.cocorobo.cn/mind/"
  6744. })
  6745. _box.appendChild(_iframe);
  6746. _box.appendChild(_jie);
  6747. _formdiv = new U.UF.UI.form(
  6748. "思维导图-" + _username,
  6749. _box, { //"/jsmind/example/demo.html"
  6750. "id": "mind" + cid + stage + task + tool + _userid,
  6751. "style": {
  6752. "width": "90%",
  6753. "height": "90%",
  6754. "overflow": 'hidden'
  6755. },
  6756. "onresize": function () { }
  6757. }, {
  6758. closecallback: function () { }
  6759. }, {
  6760. "style": {
  6761. "height": "36px"
  6762. }
  6763. }).form; //创建窗体
  6764. _taskbar = {
  6765. "id": str + _formdiv.id,
  6766. "style": {
  6767. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6768. },
  6769. "name": "思维导图",
  6770. "forms": _formdiv,
  6771. "click": function () {
  6772. U.MD.D.I.openApplication(str, obj, info);
  6773. }
  6774. }
  6775. break;
  6776. case "doc":
  6777. aTool = 6;
  6778. _iframe = $$("iframe", {
  6779. "frameborder": "no",
  6780. "border": "0",
  6781. "scrolling ": "no",
  6782. "style": {
  6783. "cssText": "border:0;width:100%;height:100%"
  6784. },
  6785. "src": "/Office/Word/WordEditArea.htm"
  6786. })
  6787. _box.appendChild(_iframe);
  6788. _box.appendChild(_jie);
  6789. _formdiv = new U.UF.UI.form(
  6790. "协同文档-" + _username,
  6791. _box, {
  6792. "id": "doc" + cid + stage + task + tool + _userid,
  6793. "style": {
  6794. "width": "90%",
  6795. "height": "90%",
  6796. "overflow": 'hidden'
  6797. },
  6798. "onresize": function () { }
  6799. }, {
  6800. closecallback: function () { }
  6801. }, {
  6802. "style": {
  6803. "height": "36px"
  6804. }
  6805. }).form; //创建窗体
  6806. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6807. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6808. })
  6809. _taskbar = {
  6810. "id": str + _formdiv.id,
  6811. "style": {
  6812. "backgroundImage": "url(/img/icon/doc.png)"
  6813. },
  6814. "name": "协同文档",
  6815. "forms": _formdiv,
  6816. "click": function () {
  6817. U.MD.D.I.openApplication(str, obj, info);
  6818. }
  6819. }
  6820. break;
  6821. case "mindNetwork": //好友打开
  6822. aTool = 7;
  6823. _iframe = $$("iframe", {
  6824. "webkitallowfullscreen": "",
  6825. "mozallowfullscreen": "",
  6826. "allowfullscreen": "",
  6827. "frameborder": "no",
  6828. "border": "0",
  6829. "scrolling ": "no",
  6830. "style": {
  6831. "cssText": "border:0; width:100%; height:100%;"
  6832. },
  6833. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6834. })
  6835. _box.appendChild(_iframe);
  6836. _box.appendChild(_jie);
  6837. _formdiv = new U.UF.UI.form(
  6838. "思维网格-" + _username,
  6839. _box, {
  6840. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6841. "style": {
  6842. "width": "90%",
  6843. "height": "90%",
  6844. "overflow": 'hidden'
  6845. },
  6846. "onresize": function () { }
  6847. }, {
  6848. closecallback: function () { }
  6849. }, {
  6850. "style": {
  6851. "height": "36px"
  6852. }
  6853. }).form; //创建窗体
  6854. _taskbar = {
  6855. "id": str + _formdiv.id,
  6856. "style": {
  6857. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6858. },
  6859. "name": "思维网格",
  6860. "forms": _formdiv,
  6861. "click": function () {
  6862. U.MD.D.I.openApplication(str, obj, info);
  6863. }
  6864. }
  6865. break;
  6866. case "courseDesign":
  6867. _iframe = $$("iframe", {
  6868. "webkitallowfullscreen": "",
  6869. "mozallowfullscreen": "",
  6870. "allowfullscreen": "",
  6871. "frameborder": "no",
  6872. "border": "0",
  6873. "scrolling ": "no",
  6874. "style": {
  6875. "cssText": "border:0; width:100%; height:100%;"
  6876. },
  6877. "src": "/course-design-vue"
  6878. })
  6879. _box.appendChild(_iframe);
  6880. _box.appendChild(_jie);
  6881. _formdiv = new U.UF.UI.form(
  6882. "项目设计-" + _username,
  6883. _box, {
  6884. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6885. "style": {
  6886. "width": "90%",
  6887. "height": "90%",
  6888. "overflow": 'hidden'
  6889. },
  6890. "onresize": function () { }
  6891. }, {
  6892. closecallback: function () { }
  6893. }, {
  6894. "style": {
  6895. "height": "36px"
  6896. }
  6897. }).form; //创建窗体
  6898. _taskbar = {
  6899. "id": str + _formdiv.id,
  6900. "style": {
  6901. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6902. },
  6903. "name": "项目设计",
  6904. "forms": _formdiv,
  6905. "click": function () {
  6906. U.MD.D.I.openApplication(str, obj, info);
  6907. }
  6908. }
  6909. break;
  6910. }
  6911. const script1 = document.createElement("script");
  6912. script1.type = "text/javascript";
  6913. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6914. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6915. const script2 = document.createElement("script");
  6916. script2.type = "text/javascript";
  6917. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6918. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6919. const script3 = document.createElement("script");
  6920. script3.type = "text/javascript";
  6921. script3.charset = "UTF-8";
  6922. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6923. const script4 = document.createElement("script");
  6924. script4.type = "text/javascript";
  6925. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6926. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6927. if (_iframe) {
  6928. if (str == 'doc') {
  6929. _iframe = _formdiv.querySelector('iframe')
  6930. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6931. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6932. _iframe.contentWindow.document.body.appendChild(script1);
  6933. _iframe.contentWindow.document.body.appendChild(script2);
  6934. // _iframe.contentWindow.document.body.appendChild(script3);
  6935. _iframe.contentWindow.document.body.appendChild(script4);
  6936. })
  6937. if (onloadListener) {
  6938. _iframe.contentDocument.location.reload()
  6939. } else {
  6940. _iframe.contentDocument.location.reload()
  6941. }
  6942. } else if (str == 'courseDesign') {
  6943. U.UF.DL.iframeLoad(_iframe, function () {
  6944. // _iframe.contentWindow.U.MD.O.W.load();
  6945. // _iframe.contentWindow.document.body.appendChild(script1);
  6946. _iframe.contentWindow.document.body.appendChild(script2);
  6947. _iframe.contentWindow.document.body.appendChild(script4);
  6948. })
  6949. } else if (str == 'mind') {
  6950. _iframe = _formdiv.querySelector('iframe')
  6951. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6952. //
  6953. _iframe.contentWindow.document.body.appendChild(script1);
  6954. _iframe.contentWindow.document.body.appendChild(script2);
  6955. _iframe.contentWindow.document.body.appendChild(script4);
  6956. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6957. })
  6958. if (onloadListener) {
  6959. _iframe.contentDocument.location.reload()
  6960. } else {
  6961. _iframe.contentDocument.location.reload()
  6962. }
  6963. } else if (str == 'whiteboard') {
  6964. _iframe = _formdiv.querySelector('iframe')
  6965. let onloadListener = _iframe.onload = () => {
  6966. _iframe.contentWindow.document.body.appendChild(script1);
  6967. _iframe.contentWindow.document.body.appendChild(script2);
  6968. _iframe.contentWindow.document.body.appendChild(script4);
  6969. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6970. };
  6971. // if (onloadListener) {
  6972. // try {
  6973. // _iframe.src += "?cocorobo="+new Date().getTime()
  6974. // _iframe.contentWindow.document.location.reload()
  6975. // } catch (error) {
  6976. // }
  6977. // } else {
  6978. // _iframe.contentDocument.location.reload()
  6979. // }
  6980. } else {
  6981. _iframe.onload = () => {
  6982. _iframe.contentWindow.document.body.appendChild(script1);
  6983. _iframe.contentWindow.document.body.appendChild(script2);
  6984. // _iframe.contentWindow.document.body.appendChild(script3);
  6985. _iframe.contentWindow.document.body.appendChild(script4);
  6986. };
  6987. }
  6988. _jie.onclick = async () => {
  6989. let text = ''
  6990. if (aTool == 1) {
  6991. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6992. } else if (aTool == 6) {
  6993. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6994. } else if (aTool == 3) {
  6995. text = await U.MD.D.I.getEditorContent(_iframe);
  6996. }
  6997. _loading.style.display = 'flex'
  6998. console.log(_loading);
  6999. var _ajs = _iframe.contentWindow.document.createElement("script");
  7000. _ajs.type = "text/javascript";
  7001. _ajs.innerHTML =
  7002. // 'console.log(' + _loading + ');\n' +
  7003. 'var _js = document.createElement("script");\n' +
  7004. '_js.type="text/javascript";\n' +
  7005. '_js.charset="UTF-8";\n' +
  7006. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7007. "_js.onload = function(){\n" +
  7008. ' var a = document.getElementsByTagName("img")\n' +
  7009. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7010. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7011. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7012. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7013. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7014. "beforeUpload_shishi(file," +
  7015. "'" +
  7016. _userid +
  7017. "'" +
  7018. ", " +
  7019. "'" +
  7020. _cid +
  7021. "'" +
  7022. ", " +
  7023. "'" +
  7024. _stage +
  7025. "'" +
  7026. ", " +
  7027. "'" +
  7028. _task +
  7029. "'" +
  7030. ", " +
  7031. "'" +
  7032. _tool +
  7033. "'" +
  7034. ", " +
  7035. "'" +
  7036. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7037. "'" +
  7038. ", " +
  7039. "'" +
  7040. aTool +
  7041. "'" +
  7042. ", " +
  7043. "`" +
  7044. text +
  7045. "`" +
  7046. ")\n" +
  7047. " });\n" +
  7048. "}\n" +
  7049. "document.head.appendChild(_js);\n";
  7050. _iframe.contentWindow.document.head.appendChild(_ajs);
  7051. }
  7052. }
  7053. }
  7054. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7055. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7056. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7057. _userid = student.userid, //登录用户id
  7058. _username = student.student //用户名字
  7059. let _iframe;
  7060. let _cid = cid,
  7061. _stage = stage,
  7062. _task = task,
  7063. _tool = tool;
  7064. var _jie = $$("div", {
  7065. "style": {
  7066. "position": "absolute",
  7067. "bottom": "50px",
  7068. "right": "50px",
  7069. "zIndex": "9999",
  7070. "backgroundColor": "#2268bc",
  7071. "color": "#fff",
  7072. "padding": "12px 20px",
  7073. "cursor": "pointer",
  7074. "borderRadius": "4px",
  7075. },
  7076. "innerHTML": "提交作业"
  7077. })
  7078. let aTool = ''
  7079. let _loading = document.createElement('div')
  7080. _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;"
  7081. // _loading.id = "";
  7082. let _lchild = document.createElement('div')
  7083. let _limg = document.createElement('img')
  7084. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7085. _limg.style = "width: 26px;margin-right: 10px;"
  7086. _lchild.appendChild(_limg)
  7087. let _lspan = document.createElement('span')
  7088. _lspan.innerHTML = "上传中..."
  7089. _lchild.appendChild(_lspan)
  7090. _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%);"
  7091. _loading.appendChild(_lchild)
  7092. var _box = $$('div', {
  7093. "style": {
  7094. "position": "relative",
  7095. "width": "100%",
  7096. "height": "100%",
  7097. },
  7098. })
  7099. _box.appendChild(_loading)
  7100. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7101. switch (str) {
  7102. case "whiteboard":
  7103. aTool = 1;
  7104. _iframe = $$("iframe", {
  7105. "frameborder": "no",
  7106. "border": "0",
  7107. "scrolling ": "no",
  7108. "style": {
  7109. "cssText": "border:0;width:100%;height:100%"
  7110. },
  7111. "src": "https://beta.iwb.cocorobo.cn/"
  7112. })
  7113. _box.appendChild(_iframe);
  7114. _box.appendChild(_jie);
  7115. _formdiv = new U.UF.UI.form(
  7116. "电子白板-" + _username,
  7117. _box, {
  7118. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7119. "style": {
  7120. "width": "90%",
  7121. "height": "90%",
  7122. "overflow": 'hidden'
  7123. },
  7124. "onresize": function () { }
  7125. }, {
  7126. closecallback: function () { }
  7127. }, {
  7128. "style": {
  7129. "height": "36px"
  7130. }
  7131. }).form; //创建窗体
  7132. _taskbar = {
  7133. "id": str + _formdiv.id,
  7134. "style": {
  7135. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7136. },
  7137. "name": "电子白板",
  7138. "forms": _formdiv,
  7139. "click": function () {
  7140. U.MD.D.I.openApplication(str, obj, info);
  7141. }
  7142. }
  7143. break;
  7144. case "mind":
  7145. aTool = 3;
  7146. _iframe = $$("iframe", {
  7147. "frameborder": "no",
  7148. "border": "0",
  7149. "scrolling ": "no",
  7150. "style": {
  7151. "cssText": "border:0;width:100%;height:100%"
  7152. },
  7153. "src": "/kityminder-editor/dist/index.html"
  7154. })
  7155. _box.appendChild(_iframe);
  7156. _box.appendChild(_jie);
  7157. _formdiv = new U.UF.UI.form(
  7158. "思维导图-" + _username,
  7159. _box, { //"/jsmind/example/demo.html"
  7160. "id": "mind" + cid + stage + task + tool + _userid,
  7161. "style": {
  7162. "width": "90%",
  7163. "height": "90%",
  7164. "overflow": 'hidden'
  7165. },
  7166. "onresize": function () { }
  7167. }, {
  7168. closecallback: function () { }
  7169. }, {
  7170. "style": {
  7171. "height": "36px"
  7172. }
  7173. }).form; //创建窗体
  7174. _taskbar = {
  7175. "id": str + _formdiv.id,
  7176. "style": {
  7177. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7178. },
  7179. "name": "思维导图",
  7180. "forms": _formdiv,
  7181. "click": function () {
  7182. U.MD.D.I.openApplication(str, obj, info);
  7183. }
  7184. }
  7185. break;
  7186. case "MindMap":
  7187. aTool = 3;
  7188. _iframe = $$("iframe", {
  7189. "frameborder": "no",
  7190. "border": "0",
  7191. "scrolling ": "no",
  7192. "style": {
  7193. "cssText": "border:0;width:100%;height:100%"
  7194. },
  7195. "src": "//cloud.cocorobo.cn/mind/"
  7196. })
  7197. _box.appendChild(_iframe);
  7198. _box.appendChild(_jie);
  7199. _formdiv = new U.UF.UI.form(
  7200. "思维导图-" + _username,
  7201. _box, { //"/jsmind/example/demo.html"
  7202. "id": "mind" + cid + stage + task + tool + _userid,
  7203. "style": {
  7204. "width": "90%",
  7205. "height": "90%",
  7206. "overflow": 'hidden'
  7207. },
  7208. "onresize": function () { }
  7209. }, {
  7210. closecallback: function () { }
  7211. }, {
  7212. "style": {
  7213. "height": "36px"
  7214. }
  7215. }).form; //创建窗体
  7216. _taskbar = {
  7217. "id": str + _formdiv.id,
  7218. "style": {
  7219. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7220. },
  7221. "name": "思维导图",
  7222. "forms": _formdiv,
  7223. "click": function () {
  7224. U.MD.D.I.openApplication(str, obj, info);
  7225. }
  7226. }
  7227. break;
  7228. case "doc":
  7229. aTool = 6;
  7230. _iframe = $$("iframe", {
  7231. "frameborder": "no",
  7232. "border": "0",
  7233. "scrolling ": "no",
  7234. "style": {
  7235. "cssText": "border:0;width:100%;height:100%"
  7236. },
  7237. "src": "/Office/Word/WordEditArea.htm"
  7238. })
  7239. _box.appendChild(_iframe);
  7240. _box.appendChild(_jie);
  7241. _formdiv = new U.UF.UI.form(
  7242. "协同文档-" + _username,
  7243. _box, {
  7244. "id": "doc" + cid + stage + task + tool + _userid,
  7245. "style": {
  7246. "width": "90%",
  7247. "height": "90%",
  7248. "overflow": 'hidden'
  7249. },
  7250. "onresize": function () { }
  7251. }, {
  7252. closecallback: function () { }
  7253. }, {
  7254. "style": {
  7255. "height": "36px"
  7256. }
  7257. }).form; //创建窗体
  7258. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7259. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7260. })
  7261. _taskbar = {
  7262. "id": str + _formdiv.id,
  7263. "style": {
  7264. "backgroundImage": "url(/img/icon/doc.png)"
  7265. },
  7266. "name": "协同文档",
  7267. "forms": _formdiv,
  7268. "click": function () {
  7269. U.MD.D.I.openApplication(str, obj, info);
  7270. }
  7271. }
  7272. break;
  7273. case "mindNetwork": //好友打开
  7274. aTool = 7;
  7275. _iframe = $$("iframe", {
  7276. "webkitallowfullscreen": "",
  7277. "mozallowfullscreen": "",
  7278. "allowfullscreen": "",
  7279. "frameborder": "no",
  7280. "border": "0",
  7281. "scrolling ": "no",
  7282. "style": {
  7283. "cssText": "border:0; width:100%; height:100%;"
  7284. },
  7285. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7286. })
  7287. _box.appendChild(_iframe);
  7288. _box.appendChild(_jie);
  7289. _formdiv = new U.UF.UI.form(
  7290. "思维网格-" + _username,
  7291. _box, {
  7292. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7293. "style": {
  7294. "width": "90%",
  7295. "height": "90%",
  7296. "overflow": 'hidden'
  7297. },
  7298. "onresize": function () { }
  7299. }, {
  7300. closecallback: function () { }
  7301. }, {
  7302. "style": {
  7303. "height": "36px"
  7304. }
  7305. }).form; //创建窗体
  7306. _taskbar = {
  7307. "id": str + _formdiv.id,
  7308. "style": {
  7309. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7310. },
  7311. "name": "思维网格",
  7312. "forms": _formdiv,
  7313. "click": function () {
  7314. U.MD.D.I.openApplication(str, obj, info);
  7315. }
  7316. }
  7317. break;
  7318. case "courseDesign":
  7319. _iframe = $$("iframe", {
  7320. "webkitallowfullscreen": "",
  7321. "mozallowfullscreen": "",
  7322. "allowfullscreen": "",
  7323. "frameborder": "no",
  7324. "border": "0",
  7325. "scrolling ": "no",
  7326. "style": {
  7327. "cssText": "border:0; width:100%; height:100%;"
  7328. },
  7329. "src": "/course-design-vue"
  7330. })
  7331. _box.appendChild(_iframe);
  7332. _box.appendChild(_jie);
  7333. _formdiv = new U.UF.UI.form(
  7334. "项目设计-" + _username,
  7335. _box, {
  7336. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7337. "style": {
  7338. "width": "90%",
  7339. "height": "90%",
  7340. "overflow": 'hidden'
  7341. },
  7342. "onresize": function () { }
  7343. }, {
  7344. closecallback: function () { }
  7345. }, {
  7346. "style": {
  7347. "height": "36px"
  7348. }
  7349. }).form; //创建窗体
  7350. _taskbar = {
  7351. "id": str + _formdiv.id,
  7352. "style": {
  7353. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7354. },
  7355. "name": "项目设计",
  7356. "forms": _formdiv,
  7357. "click": function () {
  7358. U.MD.D.I.openApplication(str, obj, info);
  7359. }
  7360. }
  7361. break;
  7362. }
  7363. const script1 = document.createElement("script");
  7364. script1.type = "text/javascript";
  7365. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7366. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7367. const script2 = document.createElement("script");
  7368. script2.type = "text/javascript";
  7369. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7370. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7371. const script3 = document.createElement("script");
  7372. script3.type = "text/javascript";
  7373. script3.charset = "UTF-8";
  7374. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7375. const script4 = document.createElement("script");
  7376. script4.type = "text/javascript";
  7377. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7378. script4.src = window.origin + "/js/Common/jietu2E.js";
  7379. if (_iframe) {
  7380. if (str == 'doc') {
  7381. _iframe = _formdiv.querySelector('iframe')
  7382. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7383. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7384. _iframe.contentWindow.document.body.appendChild(script1);
  7385. _iframe.contentWindow.document.body.appendChild(script2);
  7386. // _iframe.contentWindow.document.body.appendChild(script3);
  7387. _iframe.contentWindow.document.body.appendChild(script4);
  7388. })
  7389. if (onloadListener) {
  7390. _iframe.contentDocument.location.reload()
  7391. } else {
  7392. _iframe.contentDocument.location.reload()
  7393. }
  7394. } else if (str == 'courseDesign') {
  7395. U.UF.DL.iframeLoad(_iframe, function () {
  7396. // _iframe.contentWindow.U.MD.O.W.load();
  7397. // _iframe.contentWindow.document.body.appendChild(script1);
  7398. _iframe.contentWindow.document.body.appendChild(script2);
  7399. _iframe.contentWindow.document.body.appendChild(script4);
  7400. })
  7401. } else if (str == 'mind') {
  7402. _iframe = _formdiv.querySelector('iframe')
  7403. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7404. //
  7405. _iframe.contentWindow.document.body.appendChild(script1);
  7406. _iframe.contentWindow.document.body.appendChild(script2);
  7407. _iframe.contentWindow.document.body.appendChild(script4);
  7408. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7409. })
  7410. if (onloadListener) {
  7411. _iframe.contentDocument.location.reload()
  7412. } else {
  7413. _iframe.contentDocument.location.reload()
  7414. }
  7415. } else if (str == 'whiteboard') {
  7416. _iframe = _formdiv.querySelector('iframe')
  7417. let onloadListener = _iframe.onload = () => {
  7418. _iframe.contentWindow.document.body.appendChild(script1);
  7419. _iframe.contentWindow.document.body.appendChild(script2);
  7420. _iframe.contentWindow.document.body.appendChild(script4);
  7421. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7422. };
  7423. // if (onloadListener) {
  7424. // try {
  7425. // _iframe.src += "?cocorobo="+new Date().getTime()
  7426. // _iframe.contentWindow.document.location.reload()
  7427. // } catch (error) {
  7428. // }
  7429. // } else {
  7430. // _iframe.contentDocument.location.reload()
  7431. // }
  7432. } else {
  7433. _iframe.onload = () => {
  7434. _iframe.contentWindow.document.body.appendChild(script1);
  7435. _iframe.contentWindow.document.body.appendChild(script2);
  7436. // _iframe.contentWindow.document.body.appendChild(script3);
  7437. _iframe.contentWindow.document.body.appendChild(script4);
  7438. };
  7439. }
  7440. _jie.onclick = async () => {
  7441. let text = ''
  7442. if (aTool == 1) {
  7443. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7444. } else if (aTool == 6) {
  7445. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7446. } else if (aTool == 3) {
  7447. text = await U.MD.D.I.getEditorContent(_iframe);
  7448. }
  7449. _loading.style.display = 'flex'
  7450. console.log(_loading);
  7451. var _ajs = _iframe.contentWindow.document.createElement("script");
  7452. _ajs.type = "text/javascript";
  7453. _ajs.innerHTML =
  7454. // 'console.log(' + _loading + ');\n' +
  7455. 'var _js = document.createElement("script");\n' +
  7456. '_js.type="text/javascript";\n' +
  7457. '_js.charset="UTF-8";\n' +
  7458. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7459. "_js.onload = function(){\n" +
  7460. ' var a = document.getElementsByTagName("img")\n' +
  7461. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7462. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7463. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7464. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7465. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7466. "beforeUpload_shishi(file," +
  7467. "'" +
  7468. _userid +
  7469. "'" +
  7470. ", " +
  7471. "'" +
  7472. _cid +
  7473. "'" +
  7474. ", " +
  7475. "'" +
  7476. _stage +
  7477. "'" +
  7478. ", " +
  7479. "'" +
  7480. _task +
  7481. "'" +
  7482. ", " +
  7483. "'" +
  7484. _tool +
  7485. "'" +
  7486. ", " +
  7487. "'" +
  7488. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7489. "'" +
  7490. ", " +
  7491. "'" +
  7492. aTool +
  7493. "'" +
  7494. ", " +
  7495. "`" +
  7496. text +
  7497. "`" +
  7498. ")\n" +
  7499. " });\n" +
  7500. "}\n" +
  7501. "document.head.appendChild(_js);\n";
  7502. _iframe.contentWindow.document.head.appendChild(_ajs);
  7503. }
  7504. }
  7505. }
  7506. U.MD.D.I.getEditorContent = function (iframe) {
  7507. return new Promise((resolve, reject) => {
  7508. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7509. console.log(content);
  7510. resolve(content)
  7511. });
  7512. });
  7513. }
  7514. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7515. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7516. // if (res.value[0].length > 0) {
  7517. // // resolve(res.value[0][0].text);
  7518. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7519. // $(fileInput).val('');
  7520. // });
  7521. // }
  7522. // }, [], { "type": "GET", "withCredentials": true });
  7523. var xmlhttp;
  7524. var Mac, Sn, DeviceId
  7525. if (window.XMLHttpRequest) {
  7526. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7527. xmlhttp = new XMLHttpRequest();
  7528. } else {
  7529. // IE6, IE5 浏览器执行代码
  7530. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7531. }
  7532. xmlhttp.onreadystatechange = function () {
  7533. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7534. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7535. // resolve(res.value[0][0].text);
  7536. if (type == '2') {
  7537. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7538. } else if (type == '3') {
  7539. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7540. }
  7541. } else {
  7542. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7543. }
  7544. }
  7545. }
  7546. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7547. xmlhttp.send();
  7548. }
  7549. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7550. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7551. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7552. _userinfo = US.userInfo, //登录用户信息
  7553. _userid = US.userInfo.userid //登录用户id
  7554. let _iframe;
  7555. let _cid = cid,
  7556. _stage = stage,
  7557. _task = task,
  7558. _tool = tool;
  7559. var _jie = $$("div", {
  7560. "style": {
  7561. "position": "absolute",
  7562. "bottom": "50px",
  7563. "right": "50px",
  7564. "zIndex": "9999",
  7565. "backgroundColor": "#2268bc",
  7566. "color": "#fff",
  7567. "padding": "12px 20px",
  7568. "cursor": "pointer",
  7569. "borderRadius": "4px",
  7570. },
  7571. "innerHTML": "确认并提交"
  7572. })
  7573. let aTool = ''
  7574. let _loading = document.createElement('div')
  7575. _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;"
  7576. // _loading.id = "";
  7577. let _lchild = document.createElement('div')
  7578. let _limg = document.createElement('img')
  7579. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7580. _limg.style = "width: 26px;margin-right: 10px;"
  7581. _lchild.appendChild(_limg)
  7582. let _lspan = document.createElement('span')
  7583. _lspan.innerHTML = "上传中..."
  7584. _lchild.appendChild(_lspan)
  7585. _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%);"
  7586. _loading.appendChild(_lchild)
  7587. var _box = $$('div', {
  7588. "style": {
  7589. "position": "relative",
  7590. "width": "100%",
  7591. "height": "100%",
  7592. },
  7593. })
  7594. _box.appendChild(_loading)
  7595. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7596. switch (str) {
  7597. case "whiteboard":
  7598. aTool = 1;
  7599. _iframe = $$("iframe", {
  7600. "frameborder": "no",
  7601. "border": "0",
  7602. "scrolling ": "no",
  7603. "style": {
  7604. "cssText": "border:0;width:100%;height:100%"
  7605. },
  7606. "src": "https://beta.iwb.cocorobo.cn/"
  7607. })
  7608. _box.appendChild(_iframe);
  7609. _box.appendChild(_jie);
  7610. _formdiv = new U.UF.UI.form(
  7611. "电子白板",
  7612. _box, {
  7613. "id": "whiteboards" + cid + stage + task + tool,
  7614. "style": {
  7615. "width": "90%",
  7616. "height": "90%",
  7617. "overflow": 'hidden'
  7618. },
  7619. "onresize": function () { }
  7620. }, {
  7621. closecallback: function () { }
  7622. }, {
  7623. "style": {
  7624. "height": "36px"
  7625. }
  7626. }).form; //创建窗体
  7627. _taskbar = {
  7628. "id": str + _formdiv.id,
  7629. "style": {
  7630. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7631. },
  7632. "name": "电子白板",
  7633. "forms": _formdiv,
  7634. "click": function () {
  7635. U.MD.D.I.openApplication(str, obj, info);
  7636. }
  7637. }
  7638. break;
  7639. case "mind":
  7640. aTool = 3;
  7641. _iframe = $$("iframe", {
  7642. "frameborder": "no",
  7643. "border": "0",
  7644. "scrolling ": "no",
  7645. "style": {
  7646. "cssText": "border:0;width:100%;height:100%"
  7647. },
  7648. "src": "/kityminder-editor/dist/index.html"
  7649. });
  7650. _box.appendChild(_iframe);
  7651. _box.appendChild(_jie);
  7652. _formdiv = new U.UF.UI.form(
  7653. "思维导图",
  7654. _box, { //"/jsmind/example/demo.html"
  7655. "id": "minds" + cid + stage + task + tool,
  7656. "style": {
  7657. "width": "90%",
  7658. "height": "90%",
  7659. "overflow": 'hidden'
  7660. },
  7661. "onresize": function () { }
  7662. }, {
  7663. closecallback: function () { }
  7664. }, {
  7665. "style": {
  7666. "height": "36px"
  7667. }
  7668. }).form; //创建窗体
  7669. _taskbar = {
  7670. "id": str + _formdiv.id,
  7671. "style": {
  7672. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7673. },
  7674. "name": "思维导图",
  7675. "forms": _formdiv,
  7676. "click": function () {
  7677. U.MD.D.I.openApplication(str, obj, info);
  7678. }
  7679. }
  7680. break;
  7681. case "doc":
  7682. aTool = 6;
  7683. _iframe = $$("iframe", {
  7684. "frameborder": "no",
  7685. "border": "0",
  7686. "scrolling ": "no",
  7687. "style": {
  7688. "cssText": "border:0;width:100%;height:100%"
  7689. },
  7690. "src": "/Office/Word/WordEditArea.htm"
  7691. })
  7692. _box.appendChild(_iframe);
  7693. _box.appendChild(_jie);
  7694. _formdiv = new U.UF.UI.form(
  7695. "协同文档",
  7696. _box, {
  7697. "id": "docs" + cid + stage + task + tool,
  7698. "style": {
  7699. "width": "90%",
  7700. "height": "90%",
  7701. "overflow": 'hidden'
  7702. },
  7703. "onresize": function () { }
  7704. }, {
  7705. closecallback: function () { }
  7706. }, {
  7707. "style": {
  7708. "height": "36px"
  7709. }
  7710. }).form; //创建窗体
  7711. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7712. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7713. })
  7714. _taskbar = {
  7715. "id": str + _formdiv.id,
  7716. "style": {
  7717. "backgroundImage": "url(/img/icon/doc.png)"
  7718. },
  7719. "name": "协同文档",
  7720. "forms": _formdiv,
  7721. "click": function () {
  7722. U.MD.D.I.openApplication(str, obj, info);
  7723. }
  7724. }
  7725. break;
  7726. }
  7727. const script1 = document.createElement("script");
  7728. script1.type = "text/javascript";
  7729. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7730. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7731. const script2 = document.createElement("script");
  7732. script2.type = "text/javascript";
  7733. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7734. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7735. const script3 = document.createElement("script");
  7736. script3.type = "text/javascript";
  7737. script3.charset = "UTF-8";
  7738. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7739. const script4 = document.createElement("script");
  7740. script4.type = "text/javascript";
  7741. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7742. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7743. if (_iframe) {
  7744. if (str == 'doc') {
  7745. _iframe = _formdiv.querySelector('iframe')
  7746. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7747. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7748. _iframe.contentWindow.document.body.appendChild(script1);
  7749. _iframe.contentWindow.document.body.appendChild(script2);
  7750. // _iframe.contentWindow.document.body.appendChild(script3);
  7751. _iframe.contentWindow.document.body.appendChild(script4);
  7752. })
  7753. if (onloadListener) {
  7754. _iframe.contentDocument.location.reload()
  7755. } else {
  7756. _iframe.contentDocument.location.reload()
  7757. }
  7758. } else if (str == 'mind') {
  7759. _iframe = _formdiv.querySelector('iframe')
  7760. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7761. _iframe.contentWindow.document.body.appendChild(script1);
  7762. _iframe.contentWindow.document.body.appendChild(script2);
  7763. _iframe.contentWindow.document.body.appendChild(script4);
  7764. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7765. })
  7766. if (onloadListener) {
  7767. _iframe.contentDocument.location.reload()
  7768. } else {
  7769. _iframe.contentDocument.location.reload()
  7770. }
  7771. } else {
  7772. _iframe.onload = () => {
  7773. _iframe.contentWindow.document.body.appendChild(script1);
  7774. _iframe.contentWindow.document.body.appendChild(script2);
  7775. // _iframe.contentWindow.document.body.appendChild(script3);
  7776. _iframe.contentWindow.document.body.appendChild(script4);
  7777. };
  7778. }
  7779. _jie.onclick = async () => {
  7780. let text = ''
  7781. if (aTool == 6) {
  7782. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7783. } else if (aTool == 3) {
  7784. text = await U.MD.D.I.getEditorContent(_iframe);
  7785. }
  7786. _loading.style.display = 'flex'
  7787. console.log(_loading);
  7788. var _ajs = _iframe.contentWindow.document.createElement("script");
  7789. _ajs.type = "text/javascript";
  7790. _ajs.innerHTML =
  7791. // 'console.log(' + _loading + ');\n' +
  7792. 'var _js = document.createElement("script");\n' +
  7793. '_js.type="text/javascript";\n' +
  7794. '_js.charset="UTF-8";\n' +
  7795. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7796. "_js.onload = function(){\n" +
  7797. ' var a = document.getElementsByTagName("img")\n' +
  7798. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7799. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7800. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7801. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7802. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7803. "beforeUpload_shishi(file," +
  7804. "'" +
  7805. _userid +
  7806. "'" +
  7807. ", " +
  7808. "'" +
  7809. _cid +
  7810. "'" +
  7811. ", " +
  7812. "'" +
  7813. _stage +
  7814. "'" +
  7815. ", " +
  7816. "'" +
  7817. _task +
  7818. "'" +
  7819. ", " +
  7820. "'" +
  7821. _tool +
  7822. "'" +
  7823. ", " +
  7824. "'" +
  7825. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7826. "'" +
  7827. ", " +
  7828. "'" +
  7829. aTool +
  7830. "'" +
  7831. ", " +
  7832. "`" +
  7833. text +
  7834. "`" +
  7835. ")\n" +
  7836. " });\n" +
  7837. "}\n" +
  7838. "document.head.appendChild(_js);\n";
  7839. _iframe.contentWindow.document.head.appendChild(_ajs);
  7840. }
  7841. }
  7842. //U.MD.D.I.openClick(str);
  7843. //如果有任务栏信息
  7844. // if (_taskbar) {
  7845. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7846. // }
  7847. }
  7848. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7849. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7850. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7851. _userinfo = US.userInfo, //登录用户信息
  7852. _userid = US.userInfo.userid //登录用户id
  7853. let _iframe;
  7854. let _cid = cid,
  7855. _stage = stage,
  7856. _task = task,
  7857. _tool = tool;
  7858. var _jie = $$("div", {
  7859. "style": {
  7860. "position": "absolute",
  7861. "bottom": "50px",
  7862. "right": "50px",
  7863. "zIndex": "9999",
  7864. "backgroundColor": "#2268bc",
  7865. "color": "#fff",
  7866. "padding": "12px 20px",
  7867. "cursor": "pointer",
  7868. "borderRadius": "4px",
  7869. },
  7870. "innerHTML": "确认并提交"
  7871. })
  7872. let aTool = ''
  7873. let _loading = document.createElement('div')
  7874. _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;"
  7875. // _loading.id = "";
  7876. let _lchild = document.createElement('div')
  7877. let _limg = document.createElement('img')
  7878. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7879. _limg.style = "width: 26px;margin-right: 10px;"
  7880. _lchild.appendChild(_limg)
  7881. let _lspan = document.createElement('span')
  7882. _lspan.innerHTML = "上传中..."
  7883. _lchild.appendChild(_lspan)
  7884. _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%);"
  7885. _loading.appendChild(_lchild)
  7886. var _box = $$('div', {
  7887. "style": {
  7888. "position": "relative",
  7889. "width": "100%",
  7890. "height": "100%",
  7891. },
  7892. })
  7893. _box.appendChild(_loading)
  7894. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7895. switch (str) {
  7896. case "whiteboard":
  7897. aTool = 1;
  7898. _iframe = $$("iframe", {
  7899. "frameborder": "no",
  7900. "border": "0",
  7901. "scrolling ": "no",
  7902. "style": {
  7903. "cssText": "border:0;width:100%;height:100%"
  7904. },
  7905. "src": "https://beta.iwb.cocorobo.cn/"
  7906. })
  7907. _box.appendChild(_iframe);
  7908. _box.appendChild(_jie);
  7909. _formdiv = new U.UF.UI.form(
  7910. "电子白板",
  7911. _box, {
  7912. "id": "whiteboards" + cid + stage + task + tool,
  7913. "style": {
  7914. "width": "90%",
  7915. "height": "90%",
  7916. "overflow": 'hidden'
  7917. },
  7918. "onresize": function () { }
  7919. }, {
  7920. closecallback: function () { }
  7921. }, {
  7922. "style": {
  7923. "height": "36px"
  7924. }
  7925. }).form; //创建窗体
  7926. _taskbar = {
  7927. "id": str + _formdiv.id,
  7928. "style": {
  7929. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7930. },
  7931. "name": "电子白板",
  7932. "forms": _formdiv,
  7933. "click": function () {
  7934. U.MD.D.I.openApplication(str, obj, info);
  7935. }
  7936. }
  7937. break;
  7938. case "mind":
  7939. aTool = 3;
  7940. _iframe = $$("iframe", {
  7941. "frameborder": "no",
  7942. "border": "0",
  7943. "scrolling ": "no",
  7944. "style": {
  7945. "cssText": "border:0;width:100%;height:100%"
  7946. },
  7947. "src": "/kityminder-editor/dist/index.html"
  7948. });
  7949. _box.appendChild(_iframe);
  7950. _box.appendChild(_jie);
  7951. _formdiv = new U.UF.UI.form(
  7952. "思维导图",
  7953. _box, { //"/jsmind/example/demo.html"
  7954. "id": "minds" + cid + stage + task + tool,
  7955. "style": {
  7956. "width": "90%",
  7957. "height": "90%",
  7958. "overflow": 'hidden'
  7959. },
  7960. "onresize": function () { }
  7961. }, {
  7962. closecallback: function () { }
  7963. }, {
  7964. "style": {
  7965. "height": "36px"
  7966. }
  7967. }).form; //创建窗体
  7968. _taskbar = {
  7969. "id": str + _formdiv.id,
  7970. "style": {
  7971. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7972. },
  7973. "name": "思维导图",
  7974. "forms": _formdiv,
  7975. "click": function () {
  7976. U.MD.D.I.openApplication(str, obj, info);
  7977. }
  7978. }
  7979. break;
  7980. case "doc":
  7981. aTool = 6;
  7982. _iframe = $$("iframe", {
  7983. "frameborder": "no",
  7984. "border": "0",
  7985. "scrolling ": "no",
  7986. "style": {
  7987. "cssText": "border:0;width:100%;height:100%"
  7988. },
  7989. "src": "/Office/Word/WordEditArea.htm"
  7990. })
  7991. _box.appendChild(_iframe);
  7992. _box.appendChild(_jie);
  7993. _formdiv = new U.UF.UI.form(
  7994. "协同文档",
  7995. _box, {
  7996. "id": "docs" + cid + stage + task + tool,
  7997. "style": {
  7998. "width": "90%",
  7999. "height": "90%",
  8000. "overflow": 'hidden'
  8001. },
  8002. "onresize": function () { }
  8003. }, {
  8004. closecallback: function () { }
  8005. }, {
  8006. "style": {
  8007. "height": "36px"
  8008. }
  8009. }).form; //创建窗体
  8010. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8011. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8012. })
  8013. _taskbar = {
  8014. "id": str + _formdiv.id,
  8015. "style": {
  8016. "backgroundImage": "url(/img/icon/doc.png)"
  8017. },
  8018. "name": "协同文档",
  8019. "forms": _formdiv,
  8020. "click": function () {
  8021. U.MD.D.I.openApplication(str, obj, info);
  8022. }
  8023. }
  8024. break;
  8025. }
  8026. const script1 = document.createElement("script");
  8027. script1.type = "text/javascript";
  8028. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8029. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8030. const script2 = document.createElement("script");
  8031. script2.type = "text/javascript";
  8032. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8033. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8034. const script3 = document.createElement("script");
  8035. script3.type = "text/javascript";
  8036. script3.charset = "UTF-8";
  8037. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8038. const script4 = document.createElement("script");
  8039. script4.type = "text/javascript";
  8040. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8041. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8042. if (_iframe) {
  8043. if (str == 'doc') {
  8044. _iframe = _formdiv.querySelector('iframe')
  8045. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8046. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8047. _iframe.contentWindow.document.body.appendChild(script1);
  8048. _iframe.contentWindow.document.body.appendChild(script2);
  8049. // _iframe.contentWindow.document.body.appendChild(script3);
  8050. _iframe.contentWindow.document.body.appendChild(script4);
  8051. })
  8052. if (onloadListener) {
  8053. _iframe.contentDocument.location.reload()
  8054. } else {
  8055. _iframe.contentDocument.location.reload()
  8056. }
  8057. } else if (str == 'mind') {
  8058. _iframe = _formdiv.querySelector('iframe')
  8059. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8060. _iframe.contentWindow.document.body.appendChild(script1);
  8061. _iframe.contentWindow.document.body.appendChild(script2);
  8062. _iframe.contentWindow.document.body.appendChild(script4);
  8063. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8064. })
  8065. if (onloadListener) {
  8066. _iframe.contentDocument.location.reload()
  8067. } else {
  8068. _iframe.contentDocument.location.reload()
  8069. }
  8070. } else {
  8071. _iframe.onload = () => {
  8072. _iframe.contentWindow.document.body.appendChild(script1);
  8073. _iframe.contentWindow.document.body.appendChild(script2);
  8074. // _iframe.contentWindow.document.body.appendChild(script3);
  8075. _iframe.contentWindow.document.body.appendChild(script4);
  8076. };
  8077. }
  8078. _jie.onclick = async () => {
  8079. let text = ''
  8080. if (aTool == 6) {
  8081. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8082. } else if (aTool == 3) {
  8083. text = await U.MD.D.I.getEditorContent(_iframe);
  8084. }
  8085. _loading.style.display = 'flex'
  8086. console.log(_loading);
  8087. var _ajs = _iframe.contentWindow.document.createElement("script");
  8088. _ajs.type = "text/javascript";
  8089. _ajs.innerHTML =
  8090. // 'console.log(' + _loading + ');\n' +
  8091. 'var _js = document.createElement("script");\n' +
  8092. '_js.type="text/javascript";\n' +
  8093. '_js.charset="UTF-8";\n' +
  8094. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8095. "_js.onload = function(){\n" +
  8096. ' var a = document.getElementsByTagName("img")\n' +
  8097. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8098. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8099. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8100. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8101. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8102. "beforeUpload_shishi(file," +
  8103. "'" +
  8104. _userid +
  8105. "'" +
  8106. ", " +
  8107. "'" +
  8108. _cid +
  8109. "'" +
  8110. ", " +
  8111. "'" +
  8112. _stage +
  8113. "'" +
  8114. ", " +
  8115. "'" +
  8116. _task +
  8117. "'" +
  8118. ", " +
  8119. "'" +
  8120. _tool +
  8121. "'" +
  8122. ", " +
  8123. "'" +
  8124. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8125. "'" +
  8126. ", " +
  8127. "'" +
  8128. aTool +
  8129. "'" +
  8130. ", " +
  8131. "`" +
  8132. text +
  8133. "`" +
  8134. ")\n" +
  8135. " });\n" +
  8136. "}\n" +
  8137. "document.head.appendChild(_js);\n";
  8138. _iframe.contentWindow.document.head.appendChild(_ajs);
  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.openApplicationYu = function (str, cid, stage, task, tool) {
  8148. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8149. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8150. _userinfo = US.userInfo, //登录用户信息
  8151. _userid = US.userInfo.userid //登录用户id
  8152. let _iframe;
  8153. let _cid = cid,
  8154. _stage = stage,
  8155. _task = task,
  8156. _tool = tool;
  8157. var _jie = $$("div", {
  8158. "style": {
  8159. "position": "absolute",
  8160. "bottom": "50px",
  8161. "right": "50px",
  8162. "zIndex": "9999",
  8163. "backgroundColor": "#2268bc",
  8164. "color": "#fff",
  8165. "padding": "12px 20px",
  8166. "cursor": "pointer",
  8167. "borderRadius": "4px",
  8168. },
  8169. "innerHTML": "上传模板"
  8170. })
  8171. let aTool = ''
  8172. let _loading = document.createElement('div')
  8173. _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;"
  8174. // _loading.id = "";
  8175. let _lchild = document.createElement('div')
  8176. let _limg = document.createElement('img')
  8177. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8178. _limg.style = "width: 26px;margin-right: 10px;"
  8179. _lchild.appendChild(_limg)
  8180. let _lspan = document.createElement('span')
  8181. _lspan.innerHTML = "上传中..."
  8182. _lchild.appendChild(_lspan)
  8183. _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%);"
  8184. _loading.appendChild(_lchild)
  8185. var _box = $$('div', {
  8186. "style": {
  8187. "position": "relative",
  8188. "width": "100%",
  8189. "height": "100%",
  8190. },
  8191. })
  8192. _box.appendChild(_loading)
  8193. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8194. switch (str) {
  8195. case "whiteboard":
  8196. aTool = 1;
  8197. _iframe = $$("iframe", {
  8198. "frameborder": "no",
  8199. "border": "0",
  8200. "scrolling ": "no",
  8201. "style": {
  8202. "cssText": "border:0;width:100%;height:100%"
  8203. },
  8204. "src": "https://beta.iwb.cocorobo.cn/"
  8205. })
  8206. _box.appendChild(_iframe);
  8207. _box.appendChild(_jie);
  8208. _formdiv = new U.UF.UI.form(
  8209. "电子白板",
  8210. _box, {
  8211. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8212. "style": {
  8213. "width": "90%",
  8214. "height": "90%",
  8215. "overflow": 'hidden'
  8216. },
  8217. "onresize": function () { }
  8218. }, {
  8219. closecallback: function () { }
  8220. }, {
  8221. "style": {
  8222. "height": "36px"
  8223. }
  8224. }).form; //创建窗体
  8225. _taskbar = {
  8226. "id": str + _formdiv.id,
  8227. "style": {
  8228. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8229. },
  8230. "name": "电子白板",
  8231. "forms": _formdiv,
  8232. "click": function () {
  8233. U.MD.D.I.openApplication(str, obj, info);
  8234. }
  8235. }
  8236. break;
  8237. case "mind":
  8238. aTool = 3;
  8239. _iframe = $$("iframe", {
  8240. "frameborder": "no",
  8241. "border": "0",
  8242. "scrolling ": "no",
  8243. "style": {
  8244. "cssText": "border:0;width:100%;height:100%"
  8245. },
  8246. "src": "/kityminder-editor/dist/index.html"
  8247. });
  8248. _box.appendChild(_iframe);
  8249. _box.appendChild(_jie);
  8250. _formdiv = new U.UF.UI.form(
  8251. "思维导图",
  8252. _box, { //"/jsmind/example/demo.html"
  8253. "id": "minds_Yu" + cid + stage + task + tool,
  8254. "style": {
  8255. "width": "90%",
  8256. "height": "90%",
  8257. "overflow": 'hidden'
  8258. },
  8259. "onresize": function () { }
  8260. }, {
  8261. closecallback: function () { }
  8262. }, {
  8263. "style": {
  8264. "height": "36px"
  8265. }
  8266. }).form; //创建窗体
  8267. _taskbar = {
  8268. "id": str + _formdiv.id,
  8269. "style": {
  8270. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8271. },
  8272. "name": "思维导图",
  8273. "forms": _formdiv,
  8274. "click": function () {
  8275. U.MD.D.I.openApplication(str, obj, info);
  8276. }
  8277. }
  8278. break;
  8279. case "doc":
  8280. aTool = 6;
  8281. _iframe = $$("iframe", {
  8282. "frameborder": "no",
  8283. "border": "0",
  8284. "scrolling ": "no",
  8285. "style": {
  8286. "cssText": "border:0;width:100%;height:100%"
  8287. },
  8288. "src": "/Office/Word/WordEditArea.htm"
  8289. })
  8290. _box.appendChild(_iframe);
  8291. _box.appendChild(_jie);
  8292. _formdiv = new U.UF.UI.form(
  8293. "协同文档",
  8294. _box, {
  8295. "id": "docs_Yu" + cid + stage + task + tool,
  8296. "style": {
  8297. "width": "90%",
  8298. "height": "90%",
  8299. "overflow": 'hidden'
  8300. },
  8301. "onresize": function () { }
  8302. }, {
  8303. closecallback: function () { }
  8304. }, {
  8305. "style": {
  8306. "height": "36px"
  8307. }
  8308. }).form; //创建窗体
  8309. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8310. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8311. })
  8312. _taskbar = {
  8313. "id": str + _formdiv.id,
  8314. "style": {
  8315. "backgroundImage": "url(/img/icon/doc.png)"
  8316. },
  8317. "name": "协同文档",
  8318. "forms": _formdiv,
  8319. "click": function () {
  8320. U.MD.D.I.openApplication(str, obj, info);
  8321. }
  8322. }
  8323. break;
  8324. case "CocoPi":
  8325. aTool = 57;
  8326. _iframe = $$("iframe", {
  8327. "allowpaymentrequest": "allowpaymentrequest",
  8328. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8329. "webkitallowfullscreen": "",
  8330. "mozallowfullscreen": "",
  8331. "frameborder": "no",
  8332. "border": "0",
  8333. "scrolling ": "no",
  8334. "style": {
  8335. "cssText": "border:0;width:100%;height:100%"
  8336. },
  8337. "src": "https://pi.cocorobo.cn/"
  8338. })
  8339. _box.appendChild(_iframe);
  8340. _box.appendChild(_jie);
  8341. _formdiv = new U.UF.UI.form(
  8342. "CocoPi",
  8343. _box, {
  8344. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8345. "style": {
  8346. "width": "90%",
  8347. "height": "90%",
  8348. "overflow": 'hidden'
  8349. },
  8350. "onresize": function () { }
  8351. }, {
  8352. closecallback: function () { }
  8353. }, {
  8354. "style": {
  8355. "height": "36px"
  8356. }
  8357. }).form; //创建窗体
  8358. _taskbar = {
  8359. "id": str + _formdiv.id,
  8360. "style": {
  8361. "backgroundImage": "url(/img/icon/cocopi.png)"
  8362. },
  8363. "name": "CocoPi",
  8364. "forms": _formdiv,
  8365. "click": function () {
  8366. U.MD.D.I.openApplication(str, obj, info);
  8367. }
  8368. }
  8369. break;
  8370. }
  8371. if (_iframe) {
  8372. if (str == 'doc') {
  8373. _iframe = _formdiv.querySelector('iframe')
  8374. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8375. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8376. })
  8377. if (onloadListener) {
  8378. _iframe.contentDocument.location.reload()
  8379. } else {
  8380. _iframe.contentDocument.location.reload()
  8381. }
  8382. } else if (str == 'mind') {
  8383. _iframe = _formdiv.querySelector('iframe')
  8384. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8385. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8386. })
  8387. if (onloadListener) {
  8388. _iframe.contentDocument.location.reload()
  8389. } else {
  8390. _iframe.contentDocument.location.reload()
  8391. }
  8392. } else if (str == 'whiteboard') {
  8393. _iframe = _formdiv.querySelector('iframe')
  8394. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8395. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8396. })
  8397. // if (onloadListener) {
  8398. // try {
  8399. // _iframe.src += "?cocorobo="+new Date().getTime()
  8400. // _iframe.contentWindow.document.location.reload()
  8401. // } catch (error) {
  8402. // }
  8403. // } else {
  8404. // _iframe.contentDocument.location.reload()
  8405. // }
  8406. } else if (str == 'CocoPi') {
  8407. _iframe = _formdiv.querySelector('iframe')
  8408. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8409. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8410. })
  8411. if (onloadListener) {
  8412. _iframe.contentDocument.location.reload()
  8413. } else {
  8414. _iframe.contentDocument.location.reload()
  8415. }
  8416. } else {
  8417. _iframe.onload = () => { };
  8418. }
  8419. _jie.onclick = async () => {
  8420. let text = ''
  8421. let type = '2'
  8422. if (aTool == 1) {
  8423. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8424. type = '3'
  8425. } else if (aTool == 6) {
  8426. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8427. type = '1'
  8428. } else if (aTool == 3) {
  8429. text = await U.MD.D.I.getEditorContent(_iframe);
  8430. type = '2'
  8431. } else if (aTool == 57) {
  8432. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8433. type = '4'
  8434. }
  8435. _loading.style.display = 'flex'
  8436. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8437. }
  8438. }
  8439. //U.MD.D.I.openClick(str);
  8440. //如果有任务栏信息
  8441. // if (_taskbar) {
  8442. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8443. // }
  8444. }
  8445. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8446. var xmlhttp;
  8447. var Mac, Sn, DeviceId
  8448. if (window.XMLHttpRequest) {
  8449. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8450. xmlhttp = new XMLHttpRequest();
  8451. } else {
  8452. // IE6, IE5 浏览器执行代码
  8453. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8454. }
  8455. xmlhttp.onreadystatechange = function () {
  8456. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8457. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8458. // resolve(res.value[0][0].text);
  8459. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8460. }
  8461. }
  8462. }
  8463. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8464. xmlhttp.send();
  8465. }
  8466. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8467. var xmlhttp;
  8468. var Mac, Sn, DeviceId
  8469. if (window.XMLHttpRequest) {
  8470. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8471. xmlhttp = new XMLHttpRequest();
  8472. } else {
  8473. // IE6, IE5 浏览器执行代码
  8474. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8475. }
  8476. xmlhttp.onreadystatechange = function () {
  8477. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8478. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8479. // resolve(res.value[0][0].text);
  8480. if (type == '2') {
  8481. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8482. } else if (type == '3') {
  8483. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8484. } else if (type == '4') {
  8485. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8486. }
  8487. } else {
  8488. if (type == '2') {
  8489. iframe.contentWindow.editor.minder.importData('json', '')
  8490. } else if (type == '3') {
  8491. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8492. } else if (type == '4') {
  8493. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8494. }
  8495. }
  8496. }
  8497. }
  8498. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8499. xmlhttp.send();
  8500. }
  8501. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8502. var xmlhttp;
  8503. var Mac, Sn, DeviceId
  8504. if (window.XMLHttpRequest) {
  8505. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8506. xmlhttp = new XMLHttpRequest();
  8507. } else {
  8508. // IE6, IE5 浏览器执行代码
  8509. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8510. }
  8511. xmlhttp.onreadystatechange = function () {
  8512. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8513. if (xmlhttp.response) {
  8514. // resolve(res.value[0][0].text);
  8515. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8516. // $(fileInput).val('');
  8517. // });
  8518. span.innerHTML = '上传成功'
  8519. setTimeout(() => {
  8520. loading.style.display = 'none'
  8521. }, 1000);
  8522. }
  8523. }
  8524. }
  8525. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8526. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8527. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8528. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8529. // 设置请求头,表示请求体的编码格式
  8530. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8531. // 设置请求体,使用url-encoded格式的数据
  8532. }
  8533. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8534. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8535. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8536. _userinfo = US.userInfo, //登录用户信息
  8537. _userid = US.userInfo.userid //登录用户id
  8538. let _iframe;
  8539. let _cid = cid,
  8540. _stage = stage,
  8541. _task = task,
  8542. _tool = tool;
  8543. var _jie = $$("div", {
  8544. "style": {
  8545. "position": "absolute",
  8546. "bottom": "50px",
  8547. "right": "50px",
  8548. "zIndex": "9999",
  8549. "backgroundColor": "#2268bc",
  8550. "color": "#fff",
  8551. "padding": "12px 20px",
  8552. "cursor": "pointer",
  8553. "borderRadius": "4px",
  8554. },
  8555. "innerHTML": "提交作业"
  8556. })
  8557. let aTool = ''
  8558. let _loading = document.createElement('div')
  8559. _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;"
  8560. // _loading.id = "";
  8561. let _lchild = document.createElement('div')
  8562. let _limg = document.createElement('img')
  8563. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8564. _limg.style = "width: 26px;margin-right: 10px;"
  8565. _lchild.appendChild(_limg)
  8566. let _lspan = document.createElement('span')
  8567. _lspan.innerHTML = "上传中..."
  8568. _lchild.appendChild(_lspan)
  8569. _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%);"
  8570. _loading.appendChild(_lchild)
  8571. var _box = $$('div', {
  8572. "style": {
  8573. "position": "relative",
  8574. "width": "100%",
  8575. "height": "100%",
  8576. },
  8577. })
  8578. _box.appendChild(_loading)
  8579. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8580. switch (str) {
  8581. case "CocoPi":
  8582. aTool = 57;
  8583. _iframe = $$("iframe", {
  8584. "allowpaymentrequest": "allowpaymentrequest",
  8585. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8586. "webkitallowfullscreen": "",
  8587. "mozallowfullscreen": "",
  8588. "frameborder": "no",
  8589. "border": "0",
  8590. "scrolling ": "no",
  8591. "style": {
  8592. "cssText": "border:0;width:100%;height:100%"
  8593. },
  8594. "src": "https://pi.cocorobo.cn/"
  8595. })
  8596. _box.appendChild(_iframe);
  8597. _box.appendChild(_jie);
  8598. _formdiv = new U.UF.UI.form(
  8599. "CocoPi",
  8600. _box, {
  8601. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8602. "style": {
  8603. "width": "90%",
  8604. "height": "90%",
  8605. "overflow": 'hidden'
  8606. },
  8607. "onresize": function () { }
  8608. }, {
  8609. closecallback: function () { }
  8610. }, {
  8611. "style": {
  8612. "height": "36px"
  8613. }
  8614. }).form; //创建窗体
  8615. _taskbar = {
  8616. "id": str + _formdiv.id,
  8617. "style": {
  8618. "backgroundImage": "url(/img/icon/cocopi.png)"
  8619. },
  8620. "name": "CocoPi",
  8621. "forms": _formdiv,
  8622. "click": function () {
  8623. U.MD.D.I.openApplication(str, obj, info);
  8624. }
  8625. }
  8626. break;
  8627. }
  8628. if (_iframe) {
  8629. if (str == 'CocoPi') {
  8630. _iframe = _formdiv.querySelector('iframe')
  8631. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8632. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8633. })
  8634. if (onloadListener) {
  8635. _iframe.contentDocument.location.reload()
  8636. } else {
  8637. _iframe.contentDocument.location.reload()
  8638. }
  8639. }
  8640. _jie.onclick = async () => {
  8641. let text = ''
  8642. if (aTool == 57) {
  8643. text = _iframe.contentWindow.getLoadXmlStr()
  8644. }
  8645. _loading.style.display = 'flex'
  8646. console.log(_loading);
  8647. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8648. _loading.style.display = 'none'
  8649. let _div = document.createElement('div')
  8650. _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;"
  8651. let _inner = document.createElement('div')
  8652. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8653. _inner.innerHTML = "上传成功"
  8654. _div.appendChild(_inner)
  8655. _iframe.contentWindow.window.document.body.appendChild(_div)
  8656. _div.onclick = () => {
  8657. _iframe.contentWindow.window.document.body.removeChild(_div)
  8658. }
  8659. setTimeout(() => {
  8660. _iframe.contentWindow.window.document.body.removeChild(_div)
  8661. }, 1000);
  8662. }, [], { "type": "POST", "withCredentials": true });
  8663. }
  8664. }
  8665. }
  8666. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8667. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8668. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8669. _userid = student.userid, //登录用户id
  8670. _username = student.student //用户名字
  8671. let _iframe;
  8672. let _cid = cid,
  8673. _stage = stage,
  8674. _task = task,
  8675. _tool = tool;
  8676. var _jie = $$("div", {
  8677. "style": {
  8678. "position": "absolute",
  8679. "bottom": "50px",
  8680. "right": "50px",
  8681. "zIndex": "9999",
  8682. "backgroundColor": "#2268bc",
  8683. "color": "#fff",
  8684. "padding": "12px 20px",
  8685. "cursor": "pointer",
  8686. "borderRadius": "4px",
  8687. },
  8688. "innerHTML": "提交作业"
  8689. })
  8690. let aTool = ''
  8691. let _loading = document.createElement('div')
  8692. _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;"
  8693. // _loading.id = "";
  8694. let _lchild = document.createElement('div')
  8695. let _limg = document.createElement('img')
  8696. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8697. _limg.style = "width: 26px;margin-right: 10px;"
  8698. _lchild.appendChild(_limg)
  8699. let _lspan = document.createElement('span')
  8700. _lspan.innerHTML = "上传中..."
  8701. _lchild.appendChild(_lspan)
  8702. _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%);"
  8703. _loading.appendChild(_lchild)
  8704. var _box = $$('div', {
  8705. "style": {
  8706. "position": "relative",
  8707. "width": "100%",
  8708. "height": "100%",
  8709. },
  8710. })
  8711. _box.appendChild(_loading)
  8712. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8713. switch (str) {
  8714. case "CocoPi":
  8715. aTool = 57;
  8716. _iframe = $$("iframe", {
  8717. "allowpaymentrequest": "allowpaymentrequest",
  8718. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8719. "webkitallowfullscreen": "",
  8720. "mozallowfullscreen": "",
  8721. "frameborder": "no",
  8722. "border": "0",
  8723. "scrolling ": "no",
  8724. "style": {
  8725. "cssText": "border:0;width:100%;height:100%"
  8726. },
  8727. "src": "https://pi.cocorobo.cn/"
  8728. })
  8729. _box.appendChild(_iframe);
  8730. _box.appendChild(_jie);
  8731. _formdiv = new U.UF.UI.form(
  8732. "CocoPi-" + _username,
  8733. _box, {
  8734. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8735. "style": {
  8736. "width": "90%",
  8737. "height": "90%",
  8738. "overflow": 'hidden'
  8739. },
  8740. "onresize": function () { }
  8741. }, {
  8742. closecallback: function () { }
  8743. }, {
  8744. "style": {
  8745. "height": "36px"
  8746. }
  8747. }).form; //创建窗体
  8748. _taskbar = {
  8749. "id": str + _formdiv.id,
  8750. "style": {
  8751. "backgroundImage": "url(/img/icon/cocopi.png)"
  8752. },
  8753. "name": "CocoPi",
  8754. "forms": _formdiv,
  8755. "click": function () {
  8756. U.MD.D.I.openApplication(str, obj, info);
  8757. }
  8758. }
  8759. break;
  8760. }
  8761. if (_iframe) {
  8762. if (str == 'CocoPi') {
  8763. _iframe = _formdiv.querySelector('iframe')
  8764. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8765. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8766. })
  8767. if (onloadListener) {
  8768. _iframe.contentDocument.location.reload()
  8769. } else {
  8770. _iframe.contentDocument.location.reload()
  8771. }
  8772. }
  8773. _jie.onclick = async () => {
  8774. let text = ''
  8775. if (aTool == 57) {
  8776. text = _iframe.contentWindow.getLoadXmlStr()
  8777. }
  8778. _loading.style.display = 'flex'
  8779. console.log(_loading);
  8780. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8781. _loading.style.display = 'none'
  8782. let _div = document.createElement('div')
  8783. _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;"
  8784. let _inner = document.createElement('div')
  8785. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8786. _inner.innerHTML = "上传成功"
  8787. _div.appendChild(_inner)
  8788. _iframe.contentWindow.window.document.body.appendChild(_div)
  8789. _div.onclick = () => {
  8790. _iframe.contentWindow.window.document.body.removeChild(_div)
  8791. }
  8792. setTimeout(() => {
  8793. _iframe.contentWindow.window.document.body.removeChild(_div)
  8794. }, 1000);
  8795. }, [], { "type": "POST", "withCredentials": true });
  8796. }
  8797. }
  8798. }
  8799. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8800. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8801. if (res.value[0].length > 0) {
  8802. if (atool == 57) {
  8803. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8804. }
  8805. } else {
  8806. if (atool == 57) {
  8807. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8808. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8809. }
  8810. }
  8811. }, [], { "type": "POST", "withCredentials": true });
  8812. }