DeskTop.js 535 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  633. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  634. ];
  635. //教科院实小教师桌面图标的全局变量
  636. U.MD.D.I.siesStudentDeskIcon = [
  637. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  638. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  640. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  641. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  642. ];
  643. //福田
  644. U.MD.D.I.gdjgTeacherDeskIcon = [
  645. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  646. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  647. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  648. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  649. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  650. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  651. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  652. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  653. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  654. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  655. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  656. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. ];
  660. //gdjg
  661. U.MD.D.I.gdjgAdminDeskIcon = [
  662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  664. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  665. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  666. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  667. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  668. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  669. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  670. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  671. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  672. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  674. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  675. ];
  676. //hk
  677. U.MD.D.I.hkteacherDeskIcon = [
  678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  682. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  683. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  684. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  685. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  687. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  688. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  689. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  690. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  691. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  692. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  694. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  695. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  696. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  697. ];
  698. //hk
  699. U.MD.D.I.hkStudentDeskIcon = [
  700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  704. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  705. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkaceteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  729. ];
  730. //hk
  731. U.MD.D.I.hkaceStudentDeskIcon = [
  732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  734. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  735. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  737. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  738. ];
  739. //香海正覺蓮社佛教正覺中學
  740. U.MD.D.I.hkZJLSteacherDeskIcon = [
  741. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  742. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  743. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  744. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  745. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  747. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  748. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  749. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  750. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  751. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  752. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  753. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  754. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  757. ];
  758. //香海正覺蓮社佛教正覺中學
  759. U.MD.D.I.hkZJLSStudentDeskIcon = [
  760. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  764. ];
  765. //云海
  766. U.MD.D.I.yunhaiTeacherDeskIcon = [
  767. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  768. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  769. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  770. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  771. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  773. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  774. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  775. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  776. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  777. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  778. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  779. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  780. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  781. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  782. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  783. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  784. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  785. ];
  786. //福田
  787. U.MD.D.I.heyuanTeacherDeskIcon = [
  788. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  789. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  790. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  791. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  792. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  793. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  794. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  795. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  796. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  800. ];
  801. //福田
  802. U.MD.D.I.heyuanAdminDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  807. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  808. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  809. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  810. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  811. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  812. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  813. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  814. ];
  815. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  816. U.MD.D.I.szherTeacherDeskIcon = [
  817. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  818. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  819. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  820. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  821. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  822. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  823. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  824. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  825. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  826. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  827. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  828. ];
  829. //dsei
  830. U.MD.D.I.dseiTeacherDeskIcon = [
  831. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  832. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  833. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  834. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  835. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  836. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  837. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  838. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  839. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  840. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  841. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  842. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  843. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  844. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  845. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  846. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  847. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  848. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  849. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  850. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  851. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  852. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  853. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  854. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  855. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  856. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  857. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  858. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  859. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  860. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  861. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  862. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  863. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  864. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  865. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  866. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  867. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  868. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  869. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  870. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  871. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  872. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  873. ];
  874. //dsei
  875. U.MD.D.I.dseiAdminDeskIcon = [
  876. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  877. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  878. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  879. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  880. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  881. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  882. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  883. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  884. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  885. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  886. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  887. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  888. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  889. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  890. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  891. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  892. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  893. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  894. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  895. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  896. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  897. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  898. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  899. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  900. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  901. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  902. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  903. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  904. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  905. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  906. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  907. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  908. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  909. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  910. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  911. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  912. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  913. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  914. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  916. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  917. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  918. ];
  919. //dsei
  920. U.MD.D.I.dseiStudentDeskIcon = [
  921. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  927. ];
  928. //未来教育基地
  929. U.MD.D.I.szjkyTeacherDeskIcon = [
  930. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  931. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  932. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  933. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  934. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  935. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  936. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  937. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  938. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  939. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  940. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  941. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  942. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  944. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  945. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  946. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  947. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  948. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  949. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  950. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  951. ];
  952. //未来教育基地
  953. U.MD.D.I.szjkyAdminDeskIcon = [
  954. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  955. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  956. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  957. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  958. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  959. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  960. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  961. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  962. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  963. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  964. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  965. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  966. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  967. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  968. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  969. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  970. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  971. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  972. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  973. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  974. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  975. ];
  976. //未来教育基地
  977. U.MD.D.I.szjkyStudentDeskIcon = [
  978. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  979. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  980. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  981. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  982. ];
  983. //成华教育局
  984. U.MD.D.I.chjyjTeacherDeskIcon = [
  985. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  986. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  990. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  991. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  992. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  993. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  994. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  995. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  997. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  998. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  999. ];
  1000. //成华教育局chjyj
  1001. U.MD.D.I.chjyjAdminDeskIcon = [
  1002. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1003. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1004. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1005. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1006. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1007. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1008. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1009. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1010. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1011. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1012. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1013. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1014. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1015. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1016. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1017. ];
  1018. //成华教育局chjyj
  1019. U.MD.D.I.chjyjStudentDeskIcon = [
  1020. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1021. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1022. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1024. ];
  1025. //tpc
  1026. U.MD.D.I.tpcStudentDeskIcon = [
  1027. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1031. ];
  1032. //tpc
  1033. U.MD.D.I.tpcTeacherDeskIcon = [
  1034. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1035. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1036. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1037. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. ];
  1042. //tpc
  1043. U.MD.D.I.tpcAdminDeskIcon = [
  1044. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1045. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1046. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1047. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1048. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1049. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1050. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1051. ];
  1052. //THU-IOE
  1053. U.MD.D.I.thuioeTeacherDeskIcon = [
  1054. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1055. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1056. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1057. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1058. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1059. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1060. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1061. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1062. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1063. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1064. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1065. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1066. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1067. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1068. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1069. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1070. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1071. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1072. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1073. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1074. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1075. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1076. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1077. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1078. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1079. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1080. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1081. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1082. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1083. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1084. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1085. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1086. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1087. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1092. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1093. ];
  1094. //THU-IOE
  1095. U.MD.D.I.thuioeStudentDeskIcon = [
  1096. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1097. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1098. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. ];
  1101. //jccssyl
  1102. U.MD.D.I.jccssylTeacherDeskIcon = [
  1103. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1104. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1105. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1106. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1107. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1109. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1110. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1111. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1112. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1113. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1114. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1115. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1116. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1117. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1118. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1119. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1120. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1121. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylStudentDeskIcon = [
  1125. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1126. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1127. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1128. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1129. ];
  1130. //cale
  1131. U.MD.D.I.caleTeacherDeskIcon = [
  1132. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1133. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1134. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1135. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1136. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1137. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1138. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1139. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1140. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1141. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1142. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1143. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1144. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1145. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1146. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1147. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1148. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1149. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1150. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleStudentDeskIcon = [
  1154. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1155. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1156. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1157. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1158. ];
  1159. //lqwmsgzs
  1160. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1161. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1162. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1163. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1164. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1165. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1166. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1167. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1168. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1169. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1170. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1171. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1172. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1173. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1174. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1175. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1176. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1177. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1178. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1179. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1180. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1181. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1182. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1183. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1184. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1185. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1186. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1187. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1188. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1189. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1190. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1191. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1192. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1193. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1194. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1195. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1196. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1197. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1198. ];
  1199. //lqwmsgzs
  1200. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. ];
  1206. //盐田区幼儿园
  1207. U.MD.D.I.ytyTeacherDeskIcon = [
  1208. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1209. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1214. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1215. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1216. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1217. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1218. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1220. ];
  1221. //盐田区幼儿园
  1222. U.MD.D.I.ytyStudentDeskIcon = [
  1223. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1224. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1225. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1226. ];
  1227. //#region 桌面初始化a
  1228. /**
  1229. * 初始化桌面的起始函数
  1230. *
  1231. */
  1232. U.MD.D.I.init = function () {
  1233. if ($("#U_MD_D_K")[0]) {
  1234. //初始化桌面图标
  1235. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1236. // var clickUrl = ':12588/requestIp.php';
  1237. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1238. // U.MD.D.I.Ip = data;
  1239. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1240. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1241. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1242. // })
  1243. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1244. // })
  1245. }
  1246. }
  1247. /**
  1248. * 模式切换
  1249. *
  1250. */
  1251. U.MD.D.I.ModeCheck = function (type) {
  1252. if (US.Config.type == type) {
  1253. return
  1254. }
  1255. US.Config.type = type
  1256. $('.U_PBL_Check .active')[0].className = ''
  1257. if (type == 1) {
  1258. $('.U_PBL_Check div')[0].className = 'active'
  1259. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1260. } else {
  1261. $('.U_PBL_Check div')[1].className = 'active'
  1262. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1263. }
  1264. //初始化桌面图标
  1265. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1266. if (type == 2) {
  1267. U.MD.D.I.openApplication("project")
  1268. }
  1269. }
  1270. /**
  1271. * 隐藏任务栏
  1272. *
  1273. * @param {element} 桌面元素
  1274. */
  1275. U.MD.D.I.hiddenTaskbar = function (el) {
  1276. //任务栏位置变小
  1277. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1278. //桌面的位置变大
  1279. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1280. }
  1281. /**
  1282. * 隐藏任务栏
  1283. *
  1284. * @param {element} 桌面元素
  1285. */
  1286. U.MD.D.I.hiddenTaskbarout = function (el) {
  1287. //任务栏位置变小
  1288. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1289. //任务栏位置变化
  1290. U.selectEl(el).css({ "bottom": "-60px" });
  1291. //桌面的位置变大
  1292. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1293. }
  1294. }
  1295. /**
  1296. * 初始化打印桌面图标
  1297. *
  1298. * @param {element} 桌面元素
  1299. */
  1300. U.MD.D.I.initDesktopIcons = function (el, type) {
  1301. var i, //用于循环
  1302. _content, //桌面图标元素
  1303. _iconcontent, //桌面图标元素
  1304. _frag = $$("frag"), //定义一个碎片元素
  1305. _type = US.userInfo.type,
  1306. _org = US.userInfo.org,
  1307. _oid = US.userInfo.organizeid,
  1308. _role = US.userInfo.role,
  1309. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1310. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1311. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1312. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1313. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1314. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1315. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1316. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1317. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1318. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1319. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1320. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1321. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1322. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1323. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1324. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1325. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1326. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1327. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1328. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1329. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1330. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1331. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1332. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1333. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1334. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1335. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1336. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1337. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1338. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1339. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1340. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1341. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1342. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1343. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1344. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1345. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1346. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1347. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1348. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1349. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1350. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1351. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1352. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1353. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1354. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1355. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1356. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1357. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1358. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1359. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1360. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1361. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1362. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1363. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1364. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1365. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1366. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1367. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1368. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1369. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1370. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1371. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1372. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1373. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1374. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1375. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1376. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5'];
  1377. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344'];
  1378. //清楚桌面图标
  1379. el.innerHTML = "";
  1380. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1381. _teacherDesktopIconInfo.push(
  1382. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1383. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } }, { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } }, { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } }, { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1384. )
  1385. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1386. }
  1387. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1388. _teacherDesktopIconInfo.push(
  1389. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1390. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1394. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1395. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1396. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1397. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1400. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1401. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1402. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1403. )
  1404. }
  1405. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1406. _teacherDesktopIconInfo.push(
  1407. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1408. )
  1409. }
  1410. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1411. // _teacherDesktopIconInfo.push(
  1412. // )
  1413. // }
  1414. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1415. _teacherDesktopIconInfo.push(
  1416. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1417. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1418. )
  1419. }
  1420. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1421. _teacherDesktopIconInfo.push(
  1422. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1423. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1424. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. )
  1427. _studentDesktopIconInfo.push(
  1428. )
  1429. }
  1430. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1431. _teacherDesktopIconInfo.push(
  1432. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1433. )
  1434. _studentDesktopIconInfo.push(
  1435. )
  1436. }
  1437. //麒麟二中 和 民新小学
  1438. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1439. _teacherDesktopIconInfo.push(
  1440. )
  1441. }
  1442. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1443. _teacherDesktopIconInfo.push(
  1444. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1447. )
  1448. }
  1449. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1450. _teacherDesktopIconInfo.push(
  1451. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1452. )
  1453. }
  1454. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1455. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1456. _teacherDesktopIconInfo.push(
  1457. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1458. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1459. )
  1460. }
  1461. //麒麟二中
  1462. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1463. _studentDesktopIconInfo.push(
  1464. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1465. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1466. )
  1467. }
  1468. //万科双语
  1469. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1470. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1471. if (el.Name == '项目管理') {
  1472. el.Name = 'PBL项目'
  1473. }
  1474. return el
  1475. })
  1476. _studentDesktopIconInfo3.push(
  1477. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. )
  1479. }
  1480. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1481. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1482. return el.Name != '魔盒识字' && el.Name != '24点'
  1483. })
  1484. }
  1485. if ((_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") && _type == 2) {
  1486. _studentDesktopIconInfo.push(
  1487. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1488. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1489. )
  1490. }
  1491. //循环创建桌面图标
  1492. if (type == 1) {
  1493. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1494. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1495. _content = $$("div", {
  1496. className: "U_MD_D_KO",
  1497. "onmousedown": U.UF.C.closure(function (obj) {
  1498. //防止拖动图标即打开了桌面应用
  1499. U.MD.D.click(this, obj);
  1500. }, [_studentDesktopIconInfo[i]]),
  1501. "onclick": U.UF.C.closure(function (obj) {
  1502. //防止拖动图标即打开了桌面应用
  1503. U.MD.D.click(this, obj);
  1504. }, [_studentDesktopIconInfo[i]])
  1505. }, _frag); //
  1506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1509. }
  1510. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1511. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1512. _content = $$("div", {
  1513. className: "U_MD_D_KO",
  1514. "onmousedown": U.UF.C.closure(function (obj) {
  1515. //防止拖动图标即打开了桌面应用
  1516. U.MD.D.click(this, obj);
  1517. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1518. "onclick": U.UF.C.closure(function (obj) {
  1519. //防止拖动图标即打开了桌面应用
  1520. U.MD.D.click(this, obj);
  1521. }, [_hkZJLSStudentDeskIconInfo[i]])
  1522. }, _frag); //
  1523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1526. } //
  1527. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1528. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1529. _content = $$("div", {
  1530. className: "U_MD_D_KO",
  1531. "onmousedown": U.UF.C.closure(function (obj) {
  1532. //防止拖动图标即打开了桌面应用
  1533. U.MD.D.click(this, obj);
  1534. }, [_ytyStudentDeskIconInfo[i]]),
  1535. "onclick": U.UF.C.closure(function (obj) {
  1536. //防止拖动图标即打开了桌面应用
  1537. U.MD.D.click(this, obj);
  1538. }, [_ytyStudentDeskIconInfo[i]])
  1539. }, _frag); //
  1540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1543. } //
  1544. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1545. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1546. _content = $$("div", {
  1547. className: "U_MD_D_KO",
  1548. "onmousedown": U.UF.C.closure(function (obj) {
  1549. //防止拖动图标即打开了桌面应用
  1550. U.MD.D.click(this, obj);
  1551. }, [_jccssylStudentDeskIconInfo[i]]),
  1552. "onclick": U.UF.C.closure(function (obj) {
  1553. //防止拖动图标即打开了桌面应用
  1554. U.MD.D.click(this, obj);
  1555. }, [_jccssylStudentDeskIconInfo[i]])
  1556. }, _frag); //
  1557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1560. }
  1561. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1562. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1563. _content = $$("div", {
  1564. className: "U_MD_D_KO",
  1565. "onmousedown": U.UF.C.closure(function (obj) {
  1566. //防止拖动图标即打开了桌面应用
  1567. U.MD.D.click(this, obj);
  1568. }, [_caleStudentDeskIconInfo[i]]),
  1569. "onclick": U.UF.C.closure(function (obj) {
  1570. //防止拖动图标即打开了桌面应用
  1571. U.MD.D.click(this, obj);
  1572. }, [_caleStudentDeskIconInfo[i]])
  1573. }, _frag); //
  1574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1577. }
  1578. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1579. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1580. _content = $$("div", {
  1581. className: "U_MD_D_KO",
  1582. "onmousedown": U.UF.C.closure(function (obj) {
  1583. //防止拖动图标即打开了桌面应用
  1584. U.MD.D.click(this, obj);
  1585. }, [_thuioeStudentDeskIconInfo[i]]),
  1586. "onclick": U.UF.C.closure(function (obj) {
  1587. //防止拖动图标即打开了桌面应用
  1588. U.MD.D.click(this, obj);
  1589. }, [_thuioeStudentDeskIconInfo[i]])
  1590. }, _frag); //
  1591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1594. }
  1595. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1596. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1597. _content = $$("div", {
  1598. className: "U_MD_D_KO",
  1599. "onmousedown": U.UF.C.closure(function (obj) {
  1600. //防止拖动图标即打开了桌面应用
  1601. U.MD.D.click(this, obj);
  1602. }, [_tpcStudentDeskIconInfo[i]]),
  1603. "onclick": U.UF.C.closure(function (obj) {
  1604. //防止拖动图标即打开了桌面应用
  1605. U.MD.D.click(this, obj);
  1606. }, [_tpcStudentDeskIconInfo[i]])
  1607. }, _frag); //
  1608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1611. } //
  1612. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1613. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1614. _content = $$("div", {
  1615. className: "U_MD_D_KO",
  1616. "onmousedown": U.UF.C.closure(function (obj) {
  1617. //防止拖动图标即打开了桌面应用
  1618. U.MD.D.click(this, obj);
  1619. }, [_chjyjStudentDeskIconInfo[i]]),
  1620. "onclick": U.UF.C.closure(function (obj) {
  1621. //防止拖动图标即打开了桌面应用
  1622. U.MD.D.click(this, obj);
  1623. }, [_chjyjStudentDeskIconInfo[i]])
  1624. }, _frag); //
  1625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1628. }
  1629. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1630. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1631. _content = $$("div", {
  1632. className: "U_MD_D_KO",
  1633. "onmousedown": U.UF.C.closure(function (obj) {
  1634. //防止拖动图标即打开了桌面应用
  1635. U.MD.D.click(this, obj);
  1636. }, [_szjkyStudentDeskIconInfo[i]]),
  1637. "onclick": U.UF.C.closure(function (obj) {
  1638. //防止拖动图标即打开了桌面应用
  1639. U.MD.D.click(this, obj);
  1640. }, [_szjkyStudentDeskIconInfo[i]])
  1641. }, _frag); //
  1642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1645. }
  1646. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1647. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1648. _content = $$("div", {
  1649. className: "U_MD_D_KO",
  1650. "onmousedown": U.UF.C.closure(function (obj) {
  1651. //防止拖动图标即打开了桌面应用
  1652. U.MD.D.click(this, obj);
  1653. }, [_dseiStudentDeskIconInfo[i]]),
  1654. "onclick": U.UF.C.closure(function (obj) {
  1655. //防止拖动图标即打开了桌面应用
  1656. U.MD.D.click(this, obj);
  1657. }, [_dseiStudentDeskIconInfo[i]])
  1658. }, _frag); //
  1659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1662. }
  1663. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1664. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1665. _content = $$("div", {
  1666. className: "U_MD_D_KO",
  1667. "onmousedown": U.UF.C.closure(function (obj) {
  1668. //防止拖动图标即打开了桌面应用
  1669. U.MD.D.click(this, obj);
  1670. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1671. "onclick": U.UF.C.closure(function (obj) {
  1672. //防止拖动图标即打开了桌面应用
  1673. U.MD.D.click(this, obj);
  1674. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1675. }, _frag); //
  1676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1679. }
  1680. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1681. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1682. _content = $$("div", {
  1683. className: "U_MD_D_KO",
  1684. "onmousedown": U.UF.C.closure(function (obj) {
  1685. //防止拖动图标即打开了桌面应用
  1686. U.MD.D.click(this, obj);
  1687. }, [_siesStudentDeskIconInfo[i]]),
  1688. "onclick": U.UF.C.closure(function (obj) {
  1689. //防止拖动图标即打开了桌面应用
  1690. U.MD.D.click(this, obj);
  1691. }, [_siesStudentDeskIconInfo[i]])
  1692. }, _frag); //
  1693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1696. }
  1697. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1698. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1699. _content = $$("div", {
  1700. className: "U_MD_D_KO",
  1701. "onmousedown": U.UF.C.closure(function (obj) {
  1702. //防止拖动图标即打开了桌面应用
  1703. U.MD.D.click(this, obj);
  1704. }, [_hkStudentDeskIconInfo[i]]),
  1705. "onclick": U.UF.C.closure(function (obj) {
  1706. //防止拖动图标即打开了桌面应用
  1707. U.MD.D.click(this, obj);
  1708. }, [_hkStudentDeskIconInfo[i]])
  1709. }, _frag); //
  1710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1713. }
  1714. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1715. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1716. _content = $$("div", {
  1717. className: "U_MD_D_KO",
  1718. "onmousedown": U.UF.C.closure(function (obj) {
  1719. //防止拖动图标即打开了桌面应用
  1720. U.MD.D.click(this, obj);
  1721. }, [_hkaceStudentDeskIconInfo[i]]),
  1722. "onclick": U.UF.C.closure(function (obj) {
  1723. //防止拖动图标即打开了桌面应用
  1724. U.MD.D.click(this, obj);
  1725. }, [_hkaceStudentDeskIconInfo[i]])
  1726. }, _frag); //
  1727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1730. }
  1731. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1732. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1733. _content = $$("div", {
  1734. className: "U_MD_D_KO",
  1735. "onmousedown": U.UF.C.closure(function (obj) {
  1736. //防止拖动图标即打开了桌面应用
  1737. U.MD.D.click(this, obj);
  1738. }, [_studentDesktopIconInfo[i]]),
  1739. "onclick": U.UF.C.closure(function (obj) {
  1740. //防止拖动图标即打开了桌面应用
  1741. U.MD.D.click(this, obj);
  1742. }, [_studentDesktopIconInfo[i]])
  1743. }, _frag); //
  1744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1747. }
  1748. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1749. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1750. _content = $$("div", {
  1751. className: "U_MD_D_KO",
  1752. "onmousedown": U.UF.C.closure(function (obj) {
  1753. //防止拖动图标即打开了桌面应用
  1754. U.MD.D.click(this, obj);
  1755. }, [_tcStudentDeskIconInfo[i]]),
  1756. "onclick": U.UF.C.closure(function (obj) {
  1757. //防止拖动图标即打开了桌面应用
  1758. U.MD.D.click(this, obj);
  1759. }, [_tcStudentDeskIconInfo[i]])
  1760. }, _frag); //
  1761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1764. }
  1765. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1766. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1767. _content = $$("div", {
  1768. className: "U_MD_D_KO",
  1769. "onmousedown": U.UF.C.closure(function (obj) {
  1770. //防止拖动图标即打开了桌面应用
  1771. U.MD.D.click(this, obj);
  1772. }, [_szscStudentDeskIconInfo[i]]),
  1773. "onclick": U.UF.C.closure(function (obj) {
  1774. //防止拖动图标即打开了桌面应用
  1775. U.MD.D.click(this, obj);
  1776. }, [_szscStudentDeskIconInfo[i]])
  1777. }, _frag); //
  1778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1781. }
  1782. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1783. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1784. _content = $$("div", {
  1785. className: "U_MD_D_KO",
  1786. "onmousedown": U.UF.C.closure(function (obj) {
  1787. //防止拖动图标即打开了桌面应用
  1788. U.MD.D.click(this, obj);
  1789. }, [_studentDesktopIconInfo3[i]]),
  1790. "onclick": U.UF.C.closure(function (obj) {
  1791. //防止拖动图标即打开了桌面应用
  1792. U.MD.D.click(this, obj);
  1793. }, [_studentDesktopIconInfo3[i]])
  1794. }, _frag); //
  1795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1798. }
  1799. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1800. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1801. _content = $$("div", {
  1802. className: "U_MD_D_KO",
  1803. "onmousedown": U.UF.C.closure(function (obj) {
  1804. //防止拖动图标即打开了桌面应用
  1805. U.MD.D.click(this, obj);
  1806. }, [_studentDesktopIconInfo2[i]]),
  1807. "onclick": U.UF.C.closure(function (obj) {
  1808. //防止拖动图标即打开了桌面应用
  1809. U.MD.D.click(this, obj);
  1810. }, [_studentDesktopIconInfo2[i]])
  1811. }, _frag); //
  1812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1815. }
  1816. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1817. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1818. _content = $$("div", {
  1819. className: "U_MD_D_KO",
  1820. "onmousedown": U.UF.C.closure(function (obj) {
  1821. //防止拖动图标即打开了桌面应用
  1822. U.MD.D.click(this, obj);
  1823. }, [_wanketeacherDesktopIconInfo[i]]),
  1824. "onclick": U.UF.C.closure(function (obj) {
  1825. //防止拖动图标即打开了桌面应用
  1826. U.MD.D.click(this, obj);
  1827. }, [_wanketeacherDesktopIconInfo[i]])
  1828. }, _frag); //
  1829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1832. }
  1833. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1834. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1835. _content = $$("div", {
  1836. className: "U_MD_D_KO",
  1837. "onmousedown": U.UF.C.closure(function (obj) {
  1838. //防止拖动图标即打开了桌面应用
  1839. U.MD.D.click(this, obj);
  1840. }, [_wankeAdminDesktopIconInfo[i]]),
  1841. "onclick": U.UF.C.closure(function (obj) {
  1842. //防止拖动图标即打开了桌面应用
  1843. U.MD.D.click(this, obj);
  1844. }, [_wankeAdminDesktopIconInfo[i]])
  1845. }, _frag); //
  1846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1849. }
  1850. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1851. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1852. _content = $$("div", {
  1853. className: "U_MD_D_KO",
  1854. "onmousedown": U.UF.C.closure(function (obj) {
  1855. //防止拖动图标即打开了桌面应用
  1856. U.MD.D.click(this, obj);
  1857. }, [_jccssylTeacherDeskIconInfo[i]]),
  1858. "onclick": U.UF.C.closure(function (obj) {
  1859. //防止拖动图标即打开了桌面应用
  1860. U.MD.D.click(this, obj);
  1861. }, [_jccssylTeacherDeskIconInfo[i]])
  1862. }, _frag); //
  1863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1866. }
  1867. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1868. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1869. _content = $$("div", {
  1870. className: "U_MD_D_KO",
  1871. "onmousedown": U.UF.C.closure(function (obj) {
  1872. //防止拖动图标即打开了桌面应用
  1873. U.MD.D.click(this, obj);
  1874. }, [_caleTeacherDeskIconInfo[i]]),
  1875. "onclick": U.UF.C.closure(function (obj) {
  1876. //防止拖动图标即打开了桌面应用
  1877. U.MD.D.click(this, obj);
  1878. }, [_caleTeacherDeskIconInfo[i]])
  1879. }, _frag); //
  1880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1883. }
  1884. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1885. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1886. _content = $$("div", {
  1887. className: "U_MD_D_KO",
  1888. "onmousedown": U.UF.C.closure(function (obj) {
  1889. //防止拖动图标即打开了桌面应用
  1890. U.MD.D.click(this, obj);
  1891. }, [_tpcOrganizerDeskIconInfo[i]]),
  1892. "onclick": U.UF.C.closure(function (obj) {
  1893. //防止拖动图标即打开了桌面应用
  1894. U.MD.D.click(this, obj);
  1895. }, [_tpcOrganizerDeskIconInfo[i]])
  1896. }, _frag); //
  1897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1900. }
  1901. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1902. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1903. _content = $$("div", {
  1904. className: "U_MD_D_KO",
  1905. "onmousedown": U.UF.C.closure(function (obj) {
  1906. //防止拖动图标即打开了桌面应用
  1907. U.MD.D.click(this, obj);
  1908. }, [_tpcTeacherDeskIconInfo[i]]),
  1909. "onclick": U.UF.C.closure(function (obj) {
  1910. //防止拖动图标即打开了桌面应用
  1911. U.MD.D.click(this, obj);
  1912. }, [_tpcTeacherDeskIconInfo[i]])
  1913. }, _frag); //
  1914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1917. }
  1918. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1919. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1920. _content = $$("div", {
  1921. className: "U_MD_D_KO",
  1922. "onmousedown": U.UF.C.closure(function (obj) {
  1923. //防止拖动图标即打开了桌面应用
  1924. U.MD.D.click(this, obj);
  1925. }, [_teacherDesktopIconInfo2[i]]),
  1926. "onclick": U.UF.C.closure(function (obj) {
  1927. //防止拖动图标即打开了桌面应用
  1928. U.MD.D.click(this, obj);
  1929. }, [_teacherDesktopIconInfo2[i]])
  1930. }, _frag); //
  1931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1934. }
  1935. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1936. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1937. _content = $$("div", {
  1938. className: "U_MD_D_KO",
  1939. "onmousedown": U.UF.C.closure(function (obj) {
  1940. //防止拖动图标即打开了桌面应用
  1941. U.MD.D.click(this, obj);
  1942. }, [_thuioeTeacherDeskIconInfo[i]]),
  1943. "onclick": U.UF.C.closure(function (obj) {
  1944. //防止拖动图标即打开了桌面应用
  1945. U.MD.D.click(this, obj);
  1946. }, [_thuioeTeacherDeskIconInfo[i]])
  1947. }, _frag); //
  1948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1951. }
  1952. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1953. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1954. _content = $$("div", {
  1955. className: "U_MD_D_KO",
  1956. "onmousedown": U.UF.C.closure(function (obj) {
  1957. //防止拖动图标即打开了桌面应用
  1958. U.MD.D.click(this, obj);
  1959. }, [_lotechTeacherDeskIconInfo[i]]),
  1960. "onclick": U.UF.C.closure(function (obj) {
  1961. //防止拖动图标即打开了桌面应用
  1962. U.MD.D.click(this, obj);
  1963. }, [_lotechTeacherDeskIconInfo[i]])
  1964. }, _frag); //
  1965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1968. }//
  1969. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1970. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1971. _content = $$("div", {
  1972. className: "U_MD_D_KO",
  1973. "onmousedown": U.UF.C.closure(function (obj) {
  1974. //防止拖动图标即打开了桌面应用
  1975. U.MD.D.click(this, obj);
  1976. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1977. "onclick": U.UF.C.closure(function (obj) {
  1978. //防止拖动图标即打开了桌面应用
  1979. U.MD.D.click(this, obj);
  1980. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1981. }, _frag); //
  1982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1985. }
  1986. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1987. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1988. _content = $$("div", {
  1989. className: "U_MD_D_KO",
  1990. "onmousedown": U.UF.C.closure(function (obj) {
  1991. //防止拖动图标即打开了桌面应用
  1992. U.MD.D.click(this, obj);
  1993. }, [_siesTeacherDeskIconInfo[i]]),
  1994. "onclick": U.UF.C.closure(function (obj) {
  1995. //防止拖动图标即打开了桌面应用
  1996. U.MD.D.click(this, obj);
  1997. }, [_siesTeacherDeskIconInfo[i]])
  1998. }, _frag); //
  1999. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2000. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2001. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2002. }
  2003. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2004. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2005. _content = $$("div", {
  2006. className: "U_MD_D_KO",
  2007. "onmousedown": U.UF.C.closure(function (obj) {
  2008. //防止拖动图标即打开了桌面应用
  2009. U.MD.D.click(this, obj);
  2010. }, [_longhuaTeacherDeskIconInfo[i]]),
  2011. "onclick": U.UF.C.closure(function (obj) {
  2012. //防止拖动图标即打开了桌面应用
  2013. U.MD.D.click(this, obj);
  2014. }, [_longhuaTeacherDeskIconInfo[i]])
  2015. }, _frag); //
  2016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2019. }
  2020. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2021. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2022. _content = $$("div", {
  2023. className: "U_MD_D_KO",
  2024. "onmousedown": U.UF.C.closure(function (obj) {
  2025. //防止拖动图标即打开了桌面应用
  2026. U.MD.D.click(this, obj);
  2027. }, [_ytyTeacherDeskIconInfo[i]]),
  2028. "onclick": U.UF.C.closure(function (obj) {
  2029. //防止拖动图标即打开了桌面应用
  2030. U.MD.D.click(this, obj);
  2031. }, [_ytyTeacherDeskIconInfo[i]])
  2032. }, _frag); //
  2033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2036. }
  2037. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2038. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2039. _content = $$("div", {
  2040. className: "U_MD_D_KO",
  2041. "onmousedown": U.UF.C.closure(function (obj) {
  2042. //防止拖动图标即打开了桌面应用
  2043. U.MD.D.click(this, obj);
  2044. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2045. "onclick": U.UF.C.closure(function (obj) {
  2046. //防止拖动图标即打开了桌面应用
  2047. U.MD.D.click(this, obj);
  2048. }, [_yunhaiTeacherDeskIconInfo[i]])
  2049. }, _frag); //
  2050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2053. } //_hkStudentDeskIconInfo
  2054. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2055. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2056. _content = $$("div", {
  2057. className: "U_MD_D_KO",
  2058. "onmousedown": U.UF.C.closure(function (obj) {
  2059. //防止拖动图标即打开了桌面应用
  2060. U.MD.D.click(this, obj);
  2061. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2062. "onclick": U.UF.C.closure(function (obj) {
  2063. //防止拖动图标即打开了桌面应用
  2064. U.MD.D.click(this, obj);
  2065. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2066. }, _frag); //
  2067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2070. }
  2071. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2072. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2073. _content = $$("div", {
  2074. className: "U_MD_D_KO",
  2075. "onmousedown": U.UF.C.closure(function (obj) {
  2076. //防止拖动图标即打开了桌面应用
  2077. U.MD.D.click(this, obj);
  2078. }, [_hkTeacherDeskIconInfo[i]]),
  2079. "onclick": U.UF.C.closure(function (obj) {
  2080. //防止拖动图标即打开了桌面应用
  2081. U.MD.D.click(this, obj);
  2082. }, [_hkTeacherDeskIconInfo[i]])
  2083. }, _frag); //
  2084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2087. }
  2088. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2089. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2090. _content = $$("div", {
  2091. className: "U_MD_D_KO",
  2092. "onmousedown": U.UF.C.closure(function (obj) {
  2093. //防止拖动图标即打开了桌面应用
  2094. U.MD.D.click(this, obj);
  2095. }, [_hkaceTeacherDeskIconInfo[i]]),
  2096. "onclick": U.UF.C.closure(function (obj) {
  2097. //防止拖动图标即打开了桌面应用
  2098. U.MD.D.click(this, obj);
  2099. }, [_hkaceTeacherDeskIconInfo[i]])
  2100. }, _frag); //
  2101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2104. }
  2105. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2106. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2107. _content = $$("div", {
  2108. className: "U_MD_D_KO",
  2109. "onmousedown": U.UF.C.closure(function (obj) {
  2110. //防止拖动图标即打开了桌面应用
  2111. U.MD.D.click(this, obj);
  2112. }, [_gdjgAdminDeskIconInfo[i]]),
  2113. "onclick": U.UF.C.closure(function (obj) {
  2114. //防止拖动图标即打开了桌面应用
  2115. U.MD.D.click(this, obj);
  2116. }, [_gdjgAdminDeskIconInfo[i]])
  2117. }, _frag); //
  2118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2121. }
  2122. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2123. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2124. _content = $$("div", {
  2125. className: "U_MD_D_KO",
  2126. "onmousedown": U.UF.C.closure(function (obj) {
  2127. //防止拖动图标即打开了桌面应用
  2128. U.MD.D.click(this, obj);
  2129. }, [_gdjgTeacherDeskIconInfo[i]]),
  2130. "onclick": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_gdjgTeacherDeskIconInfo[i]])
  2134. }, _frag); //
  2135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2138. }
  2139. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2140. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2141. _content = $$("div", {
  2142. className: "U_MD_D_KO",
  2143. "onmousedown": U.UF.C.closure(function (obj) {
  2144. //防止拖动图标即打开了桌面应用
  2145. U.MD.D.click(this, obj);
  2146. }, [_szherTeacherDeskIconInfo[i]]),
  2147. "onclick": U.UF.C.closure(function (obj) {
  2148. //防止拖动图标即打开了桌面应用
  2149. U.MD.D.click(this, obj);
  2150. }, [_szherTeacherDeskIconInfo[i]])
  2151. }, _frag); //
  2152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2155. }
  2156. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2157. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2158. _content = $$("div", {
  2159. className: "U_MD_D_KO",
  2160. "onmousedown": U.UF.C.closure(function (obj) {
  2161. //防止拖动图标即打开了桌面应用
  2162. U.MD.D.click(this, obj);
  2163. }, [_heyuannAdminDeskIconInfo[i]]),
  2164. "onclick": U.UF.C.closure(function (obj) {
  2165. //防止拖动图标即打开了桌面应用
  2166. U.MD.D.click(this, obj);
  2167. }, [_heyuannAdminDeskIconInfo[i]])
  2168. }, _frag); //
  2169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2172. }
  2173. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2174. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2175. _content = $$("div", {
  2176. className: "U_MD_D_KO",
  2177. "onmousedown": U.UF.C.closure(function (obj) {
  2178. //防止拖动图标即打开了桌面应用
  2179. U.MD.D.click(this, obj);
  2180. }, [_heyuanTeacherDeskIconInfo[i]]),
  2181. "onclick": U.UF.C.closure(function (obj) {
  2182. //防止拖动图标即打开了桌面应用
  2183. U.MD.D.click(this, obj);
  2184. }, [_heyuanTeacherDeskIconInfo[i]])
  2185. }, _frag); //
  2186. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2187. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2188. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2189. } //
  2190. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2191. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2192. _content = $$("div", {
  2193. className: "U_MD_D_KO",
  2194. "onmousedown": U.UF.C.closure(function (obj) {
  2195. //防止拖动图标即打开了桌面应用
  2196. U.MD.D.click(this, obj);
  2197. }, [_dseiAdminDeskIconInfo[i]]),
  2198. "onclick": U.UF.C.closure(function (obj) {
  2199. //防止拖动图标即打开了桌面应用
  2200. U.MD.D.click(this, obj);
  2201. }, [_dseiAdminDeskIconInfo[i]])
  2202. }, _frag); //
  2203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2206. }
  2207. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2208. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2209. _content = $$("div", {
  2210. className: "U_MD_D_KO",
  2211. "onmousedown": U.UF.C.closure(function (obj) {
  2212. //防止拖动图标即打开了桌面应用
  2213. U.MD.D.click(this, obj);
  2214. }, [_dseiTeacherDeskIconInfo[i]]),
  2215. "onclick": U.UF.C.closure(function (obj) {
  2216. //防止拖动图标即打开了桌面应用
  2217. U.MD.D.click(this, obj);
  2218. }, [_dseiTeacherDeskIconInfo[i]])
  2219. }, _frag); //
  2220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2223. } //
  2224. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2225. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2226. _content = $$("div", {
  2227. className: "U_MD_D_KO",
  2228. "onmousedown": U.UF.C.closure(function (obj) {
  2229. //防止拖动图标即打开了桌面应用
  2230. U.MD.D.click(this, obj);
  2231. }, [_chjyjAdminDeskIconInfo[i]]),
  2232. "onclick": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_chjyjAdminDeskIconInfo[i]])
  2236. }, _frag); //
  2237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2240. }//
  2241. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2242. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2243. _content = $$("div", {
  2244. className: "U_MD_D_KO",
  2245. "onmousedown": U.UF.C.closure(function (obj) {
  2246. //防止拖动图标即打开了桌面应用
  2247. U.MD.D.click(this, obj);
  2248. }, [_chjyjTeacherDeskIconInfo[i]]),
  2249. "onclick": U.UF.C.closure(function (obj) {
  2250. //防止拖动图标即打开了桌面应用
  2251. U.MD.D.click(this, obj);
  2252. }, [_chjyjTeacherDeskIconInfo[i]])
  2253. }, _frag); //
  2254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2257. }
  2258. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2259. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2260. _content = $$("div", {
  2261. className: "U_MD_D_KO",
  2262. "onmousedown": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_szjkyAdminDeskIconInfo[i]]),
  2266. "onclick": U.UF.C.closure(function (obj) {
  2267. //防止拖动图标即打开了桌面应用
  2268. U.MD.D.click(this, obj);
  2269. }, [_szjkyAdminDeskIconInfo[i]])
  2270. }, _frag); //
  2271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2274. }//
  2275. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2276. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2277. _content = $$("div", {
  2278. className: "U_MD_D_KO",
  2279. "onmousedown": U.UF.C.closure(function (obj) {
  2280. //防止拖动图标即打开了桌面应用
  2281. U.MD.D.click(this, obj);
  2282. }, [_szjkyTeacherDeskIconInfo[i]]),
  2283. "onclick": U.UF.C.closure(function (obj) {
  2284. //防止拖动图标即打开了桌面应用
  2285. U.MD.D.click(this, obj);
  2286. }, [_szjkyTeacherDeskIconInfo[i]])
  2287. }, _frag); //
  2288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2291. }
  2292. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2293. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2294. _content = $$("div", {
  2295. className: "U_MD_D_KO",
  2296. "onmousedown": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_futianAdminDeskIconInfo[i]]),
  2300. "onclick": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_futianAdminDeskIconInfo[i]])
  2304. }, _frag); //
  2305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2308. }
  2309. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2310. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2311. _content = $$("div", {
  2312. className: "U_MD_D_KO",
  2313. "onmousedown": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_futianTeacherDeskIconInfo[i]]),
  2317. "onclick": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_futianTeacherDeskIconInfo[i]])
  2321. }, _frag); //
  2322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2325. }
  2326. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2327. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2328. _content = $$("div", {
  2329. className: "U_MD_D_KO",
  2330. "onmousedown": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_MingdeTeacherDeskIcon[i]]),
  2334. "onclick": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_MingdeTeacherDeskIcon[i]])
  2338. }, _frag); //
  2339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2342. }
  2343. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2344. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2345. _content = $$("div", {
  2346. className: "U_MD_D_KO",
  2347. "onmousedown": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_lhsAdminDesktopIconInfo[i]]),
  2351. "onclick": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_lhsAdminDesktopIconInfo[i]])
  2355. }, _frag); //
  2356. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2357. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2358. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2359. }
  2360. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2361. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2362. _content = $$("div", {
  2363. className: "U_MD_D_KO",
  2364. "onmousedown": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_lhsteacherDesktopIconInfo[i]]),
  2368. "onclick": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_lhsteacherDesktopIconInfo[i]])
  2372. }, _frag); //
  2373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2376. }
  2377. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2378. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2379. _content = $$("div", {
  2380. className: "U_MD_D_KO",
  2381. "onmousedown": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2385. "onclick": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_zhoujiateacherDesktopIconInfo[i]])
  2389. }, _frag); //
  2390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2393. }
  2394. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2395. for (i = 0; i < _hanDeskIcon.length; i++) {
  2396. _content = $$("div", {
  2397. className: "U_MD_D_KO",
  2398. "onmousedown": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_hanDeskIcon[i]]),
  2402. "onclick": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_hanDeskIcon[i]])
  2406. }, _frag); //
  2407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2410. }
  2411. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2412. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2413. _content = $$("div", {
  2414. className: "U_MD_D_KO",
  2415. "onmousedown": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_orgStemDeskIcon[i]]),
  2419. "onclick": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_orgStemDeskIcon[i]])
  2423. }, _frag); //
  2424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2427. }
  2428. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2429. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2430. _content = $$("div", {
  2431. className: "U_MD_D_KO",
  2432. "onmousedown": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_szulsDeskIcon[i]]),
  2436. "onclick": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_szulsDeskIcon[i]])
  2440. }, _frag); //
  2441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2444. }
  2445. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2446. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2447. _content = $$("div", {
  2448. className: "U_MD_D_KO",
  2449. "onmousedown": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_orgDesktopIconInfo[i]]),
  2453. "onclick": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_orgDesktopIconInfo[i]])
  2457. }, _frag); //
  2458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2461. }
  2462. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2463. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2464. _content = $$("div", {
  2465. className: "U_MD_D_KO",
  2466. "onmousedown": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_schoolDesktopIconInfo[i]]),
  2470. "onclick": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_schoolDesktopIconInfo[i]])
  2474. }, _frag); //
  2475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2478. }
  2479. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2480. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_GMteacherDesktopIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_GMteacherDesktopIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2497. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2498. _content = $$("div", {
  2499. className: "U_MD_D_KO",
  2500. "onmousedown": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_SONGteacherDesktopIconInfo[i]]),
  2504. "onclick": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_SONGteacherDesktopIconInfo[i]])
  2508. }, _frag); //
  2509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2512. }
  2513. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2514. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2515. _content = $$("div", {
  2516. className: "U_MD_D_KO",
  2517. "onmousedown": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_GMstudentDesktopIconInfo[i]]),
  2521. "onclick": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_GMstudentDesktopIconInfo[i]])
  2525. }, _frag); //
  2526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2529. }
  2530. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2531. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2532. _content = $$("div", {
  2533. className: "U_MD_D_KO",
  2534. "onmousedown": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_tcTeacherDeskIconInfo[i]]),
  2538. "onclick": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_tcTeacherDeskIconInfo[i]])
  2542. }, _frag); //
  2543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2546. }
  2547. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2548. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2549. _content = $$("div", {
  2550. className: "U_MD_D_KO",
  2551. "onmousedown": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_tcOrganizerDeskIconInfo[i]]),
  2555. "onclick": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_tcOrganizerDeskIconInfo[i]])
  2559. }, _frag); //
  2560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2563. }
  2564. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2565. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2566. _content = $$("div", {
  2567. className: "U_MD_D_KO",
  2568. "onmousedown": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_szscTeacherDeskIconInfo[i]]),
  2572. "onclick": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_szscTeacherDeskIconInfo[i]])
  2576. }, _frag); //
  2577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2580. }
  2581. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2582. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2583. _content = $$("div", {
  2584. className: "U_MD_D_KO",
  2585. "onmousedown": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_szscOrganizerDeskIconInfo[i]]),
  2589. "onclick": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_szscOrganizerDeskIconInfo[i]])
  2593. }, _frag); //
  2594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2597. }
  2598. } else {
  2599. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2600. _content = $$("div", {
  2601. className: "U_MD_D_KO",
  2602. "onmousedown": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_teacherDesktopIconInfo[i]]),
  2606. "onclick": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_teacherDesktopIconInfo[i]])
  2610. }, _frag); //
  2611. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2612. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2613. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2614. }
  2615. }
  2616. } else {
  2617. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. style: { 'width': '124px', 'height': '145px' },
  2621. "onmousedown": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_easyDesktopIconInfo[i]]),
  2625. "onclick": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_easyDesktopIconInfo[i]])
  2629. }, _frag); //
  2630. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2633. }
  2634. }
  2635. if (type == 1) {
  2636. //加载好后给图标定位
  2637. U.MD.D.iconPostion($(_frag).Child());
  2638. } else {
  2639. //加载好后给图标定位
  2640. U.MD.D.iconPostion2($(_frag).Child());
  2641. }
  2642. //把图标加载到页面
  2643. el.appendChild(_frag);
  2644. }
  2645. /**
  2646. * 显示任务栏
  2647. *
  2648. * @param {element} 桌面元素
  2649. */
  2650. U.MD.D.I.displayTaskbar = function (el) {
  2651. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2652. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2653. //任务栏位置变化
  2654. U.selectEl(el).css({ "bottom": "0px" });
  2655. //桌面位置变话
  2656. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2657. }
  2658. }
  2659. //#region 桌面图标拖动逻辑
  2660. /**
  2661. * 桌面排列图标
  2662. *
  2663. * @param {element} 桌面元素
  2664. * @param {object} 上下相距的距离
  2665. * @param {object} 左右相距的距离
  2666. * @return {object} 命名空间
  2667. */
  2668. U.MD.D.iconPostion = function (childs, top, left) {
  2669. var i; //用于循环处理
  2670. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2671. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2672. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2673. for (i = 0; i < childs.length; i++) {
  2674. //如果竖排top超过了范围处理
  2675. if (top + 95 > US.height - 10) {
  2676. //left超过了页面范围处理,则向上重叠打印处理
  2677. if ((left + 180) > US.width) {
  2678. top -= 110;
  2679. left -= 90;
  2680. }
  2681. //没有超过范围,那么left+90添加到下一个竖排打印
  2682. else {
  2683. left += 90;
  2684. top = 15;
  2685. };
  2686. }
  2687. //给图标的位置赋值
  2688. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2689. if (i < childs.length - 1) {
  2690. //页面图标每次向下加95
  2691. top += 95;
  2692. }
  2693. }
  2694. //返回最后调用的图标的位置
  2695. return [top, left];
  2696. }
  2697. /**
  2698. * 桌面排列图标
  2699. *
  2700. * @param {element} 桌面元素
  2701. * @param {object} 上下相距的距离
  2702. * @param {object} 左右相距的距离
  2703. * @return {object} 命名空间
  2704. */
  2705. U.MD.D.iconPostion2 = function (childs, top, left) {
  2706. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2707. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2708. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2709. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2710. for (i = 0; i < childs.length; i++) {
  2711. //如果竖排top超过了范围处理
  2712. if (left + 150 > US.width - 10) {
  2713. //left超过了页面范围处理,则向上重叠打印处理
  2714. if ((top + 180) > US.Height) {
  2715. top -= 150;
  2716. left -= 150;
  2717. }
  2718. //没有超过范围,那么left+90添加到下一个竖排打印
  2719. else {
  2720. top += 150;
  2721. left = ol;
  2722. };
  2723. }
  2724. //给图标的位置赋值
  2725. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2726. if (i < childs.length - 1) {
  2727. //页面图标每次向下加95
  2728. left += 150;
  2729. }
  2730. }
  2731. //返回最后调用的图标的位置
  2732. return [top, left];
  2733. }
  2734. /**
  2735. * 桌面点击事件逻辑
  2736. *
  2737. * @param {element} 桌面元素
  2738. * @param {object} 上下相距的距离
  2739. * @param {object} 左右相距的距离
  2740. * @return {object} 命名空间
  2741. */
  2742. U.MD.D.click = function (el, obj) {
  2743. var _buttonnumber = event.button; //点击的按钮的事件值
  2744. var _userinfo = US.userInfo;
  2745. U.UF.EV.stopBubble(); //阻止向上冒泡
  2746. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2747. if (_buttonnumber < 2) {
  2748. //如果是click事件的处理
  2749. if (event.type == "click") {
  2750. //如果元素在mousemove事件中没有移动则出发click事件
  2751. if (!U.MD.D.I.IsDrag) {
  2752. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2753. U.alert("请先登录您的账号!");
  2754. setTimeout(() => {
  2755. U.MD.U.L.login();
  2756. }, 2000);
  2757. } else {
  2758. //打开应用处理
  2759. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2760. }
  2761. }
  2762. }
  2763. //如果是mouse事件的处理
  2764. else {
  2765. if (US.Config.type == '1') {
  2766. //拖动处理,添加拖动和拖动结束事件
  2767. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2768. }
  2769. }
  2770. U.MD.D.I.IsDrag = false;
  2771. }
  2772. }
  2773. /**
  2774. * 拖动的处理
  2775. *
  2776. */
  2777. U.MD.D.iconMove = function () {
  2778. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2779. U.MD.D.I.IsDrag = true;
  2780. }
  2781. /**
  2782. * 拖动结束后,这里是定位处理,以网状的形式定位
  2783. *
  2784. * @param {element} 拖动的元素
  2785. * @return {object} 命名空间
  2786. */
  2787. U.MD.D.iconUp = function (el) {
  2788. var _top = 15,
  2789. _left = 20,
  2790. _margin,
  2791. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2792. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2793. if (_positioninfo["OT"] > 15) {
  2794. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2795. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2796. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2797. }
  2798. if (_positioninfo["OL"] > 20) {
  2799. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2800. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2801. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2802. }
  2803. //while循环判断么一个重叠的元素
  2804. do {
  2805. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2806. _top = _positioninfo[0] + 95; //得到定位后的top
  2807. _left = _positioninfo[1]; //得到定位后的left
  2808. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2809. }
  2810. /**
  2811. * 判断拖动后图标是否重叠
  2812. *
  2813. * @param {element} 拖动的元素
  2814. * @param {element} 桌面所有的元素
  2815. * @param {array} 拖动元素的位置
  2816. ----------[0] 上 top
  2817. ----------[1] 左 left
  2818. * @return {object} 命名空间
  2819. */
  2820. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2821. //循环所有的图标
  2822. for (var i = 0; i < childs.length; i++) {
  2823. //判断有没有和该图标诶子重叠的元素
  2824. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2825. return childs[i]; //如果有返回
  2826. }
  2827. }
  2828. }
  2829. //#endregion
  2830. //#endregion
  2831. //#region 桌面应用
  2832. /**
  2833. * 打开应用
  2834. *
  2835. * @param {string} 类型
  2836. -----------------Disk 网盘系统
  2837. -----------------PDisk 学习系统网盘
  2838. -----------------Poto 图片
  2839. -----------------Video 视频
  2840. -----------------Music 音乐
  2841. -----------------Word word
  2842. -----------------Excel excel
  2843. -----------------Txt 记事本
  2844. -----------------PB 学习系统
  2845. -----------------Blog 朋友圈系统
  2846. -----------------FTP ftp系统
  2847. -----------------Group 好友群
  2848. -----------------SY 首页系统
  2849. -----------------Set 个人设置
  2850. -----------------XSet 系统设置
  2851. -----------------App 我们所有的app
  2852. -----------------BC c.1473.cn 平台
  2853. -----------------CWeb d.1473.cn 变成平台
  2854. -----------------其他的外联系统 我们统一用iframe打开
  2855. * @param {array} 类型
  2856. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2857. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2858. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2859. 如果第一个参数为其他,则无第二个参数
  2860. * @returns {array}
  2861. */
  2862. window.addEventListener('message', function (e) { // 监听 message 事件
  2863. // alert(e.data.type);
  2864. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2865. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2866. //3是展示全部阶段 2学生 1老师 4专家
  2867. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2868. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2869. //3是展示全部阶段 2学生 1老师 4专家
  2870. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2871. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2872. //3是展示全部阶段 2学生 1老师 4专家
  2873. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2874. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2875. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2876. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2877. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2878. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2879. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2880. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2881. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2882. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2883. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2884. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2885. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2886. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2887. //3是展示全部阶段 2学生 1老师 4专家
  2888. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2889. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2890. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2891. U.MD.D.I.selectUser();
  2892. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2893. var _formel = document.getElementById("study");
  2894. U.UF.F.windowZooming(_formel);
  2895. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2896. var _formel = document.getElementById("studyDetail");
  2897. U.UF.F.windowZooming(_formel);
  2898. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2899. var _formel = document.getElementById("studyDetail");
  2900. U.UF.F.windowZooming(_formel);
  2901. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2902. var _formel = document.getElementById("studentStudy");
  2903. U.UF.F.windowZooming(_formel);
  2904. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2905. // var _formel = document.getElementById("study");
  2906. //如果最大化了,那么就把他缩小
  2907. // if (_formel.ismaximize) {
  2908. // return;
  2909. // }
  2910. // U.UF.F.windowZooming(_formel);
  2911. // U.UF.F.topWindow(_formel);
  2912. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2913. // var _formel = document.getElementById("studyDetail");
  2914. //如果最大化了,那么就把他缩小
  2915. // if (_formel.ismaximize) {
  2916. // return;
  2917. // }
  2918. // U.UF.F.windowZooming(_formel);
  2919. // U.UF.F.topWindow(_formel);
  2920. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2921. // var _formel = document.getElementById("studentStudy");
  2922. // if (_formel.ismaximize) {
  2923. // return;
  2924. // }
  2925. // U.UF.F.windowZooming(_formel);
  2926. // U.UF.F.topWindow(_formel);
  2927. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2928. var _formel = document.getElementById("study");
  2929. // if (_formel.ismaximize) {
  2930. // return;
  2931. // }
  2932. // U.UF.F.windowZooming(_formel);
  2933. U.UF.F.topWindow(_formel);
  2934. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2935. var _formel = document.getElementById("studentIndex");
  2936. U.UF.F.windowZooming(_formel);
  2937. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2938. var _formel = document.getElementById("studyDetailS");
  2939. U.UF.F.windowZooming(_formel);
  2940. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2941. var _formel = document.getElementById("studioIndex");
  2942. U.UF.F.windowZooming(_formel);
  2943. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2944. var _formel = document.getElementById("studyDetailStudio");
  2945. U.UF.F.windowZooming(_formel);
  2946. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2947. var _formel = document.getElementById("studyDetailStudio");
  2948. U.UF.F.windowZooming(_formel);
  2949. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2950. var _formel = document.getElementById("studyDetailNT");
  2951. U.UF.F.windowZooming(_formel);
  2952. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2953. var _formel = document.getElementById("studyDetailS");
  2954. U.UF.F.windowZooming(_formel);
  2955. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2956. var _formel = document.getElementById("studyDetailS");
  2957. U.UF.F.topWindow(_formel);
  2958. } else if (e.data.tools && e.data.tools == "1") {
  2959. // U.MD.D.I.openApplication("whiteboard")
  2960. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2961. } else if (e.data.tools && e.data.tools == "2") {
  2962. U.MD.D.I.openApplication("note")
  2963. } else if (e.data.tools && e.data.tools == "3") {
  2964. // U.MD.D.I.openApplication("mind")
  2965. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2966. } else if (e.data.tools && e.data.tools == "4") {
  2967. U.MD.D.I.openApplication("investigation")
  2968. } else if (e.data.tools && e.data.tools == "6") {
  2969. // U.MD.D.I.openApplication("doc")
  2970. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2971. } else if (e.data.tools && e.data.tools == "7") {
  2972. // U.MD.D.I.openApplication("mindNetwork")
  2973. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2974. } else if (e.data.tools && e.data.tools == "8") {
  2975. U.MD.D.I.openApplication("library")
  2976. } else if (e.data.tools && e.data.tools == "17") {
  2977. U.MD.D.I.openApplication("stuLibrary")
  2978. } else if (e.data.tools && e.data.tools == "18") {
  2979. U.MD.D.I.openApplication("train")
  2980. } else if (e.data.tools && e.data.tools == "21") {
  2981. U.MD.D.I.openApplication("program")
  2982. } else if (e.data.tools && e.data.tools == "22") {
  2983. U.MD.D.I.openApplication("AIprogram2")
  2984. } else if (e.data.tools && e.data.tools == "23") {
  2985. U.MD.D.I.openApplication("Pythonprogram")
  2986. } else if (e.data.tools && e.data.tools == "24") {
  2987. U.MD.D.I.openApplication("AIprogram")
  2988. } else if (e.data.tools && e.data.tools == "25") {
  2989. U.MD.D.I.openApplication("sys")
  2990. } else if (e.data.tools && e.data.tools == "26") {
  2991. // U.MD.D.I.openApplication("courseDesign")
  2992. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2993. } else if (e.data.tools && e.data.tools == "31") {
  2994. U.MD.D.I.openApplication("netWorkPanel")
  2995. } else if (e.data.tools && e.data.tools == "32") {
  2996. U.MD.D.I.openApplication("codeEdit")
  2997. } else if (e.data.tools && e.data.tools == "57") {
  2998. U.MD.D.I.openApplication("CocoPi")
  2999. } else if (e.data.tools && e.data.tools == "63") {
  3000. U.MD.D.I.openApplication("Wood")
  3001. } else if (e.data.tools && e.data.tools == "58") {
  3002. U.MD.D.I.openApplication("car")
  3003. } else if (e.data.tools && e.data.tools == "59") {
  3004. U.MD.D.I.openApplication("lineSearch")
  3005. } else if (e.data.tools && e.data.tools == "60") {
  3006. U.MD.D.I.openApplication("deepLearning")
  3007. } else if (e.data.tools && e.data.tools == "61") {
  3008. U.MD.D.I.openApplication("allHistory")
  3009. } else if (e.data.tools && e.data.tools == "28") {
  3010. U.MD.D.I.openApplication("translation")
  3011. } else if (e.data.tools && e.data.tools == "37") {
  3012. U.MD.D.I.openApplication("mohe")
  3013. } else if (e.data.tools && e.data.tools == "38") {
  3014. U.MD.D.I.openApplication("24game")
  3015. } else if (e.data.tools && e.data.tools == "39") {
  3016. U.MD.D.I.openApplication("GeoGebra")
  3017. } else if (e.data.tools && e.data.tools == "43") {
  3018. U.MD.D.I.openApplication("studentEvaluate")
  3019. } else if (e.data.tools && e.data.tools == "44") {
  3020. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3021. } else if (e.data.tools && e.data.tools == "46") {
  3022. U.MD.D.I.openApplication("project")
  3023. } else if (e.data.tools && e.data.tools == "71") {
  3024. U.MD.D.I.openApplication("aigptCourse")
  3025. } else if (e.data.tools && e.data.tools == "1s") {
  3026. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3027. } else if (e.data.tools && e.data.tools == "3s") {
  3028. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3029. } else if (e.data.tools && e.data.tools == "6s") {
  3030. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3031. } else if (e.data.tools && e.data.tools == "1studio") {
  3032. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3033. } else if (e.data.tools && e.data.tools == "3studio") {
  3034. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3035. } else if (e.data.tools && e.data.tools == "6studio") {
  3036. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3037. } else if (e.data.tools && e.data.tools == "3y") {
  3038. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3039. } else if (e.data.tools && e.data.tools == "1y") {
  3040. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3041. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3042. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3043. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3044. U.MD.D.I.openApplication("AIAnalyse")
  3045. } else if (e.data.tools && e.data.tools == "1teacher") {
  3046. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3047. } else if (e.data.tools && e.data.tools == "3teacher") {
  3048. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3049. } else if (e.data.tools && e.data.tools == "7teacher") {
  3050. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3051. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3052. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3053. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3054. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3055. } else if (e.data.tools && e.data.tools == "1E") {
  3056. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3057. } else if (e.data.tools && e.data.tools == "3E") {
  3058. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3059. } else if (e.data.tools && e.data.tools == "57y") {
  3060. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3061. } else if (e.data.tools && e.data.tools == "57u") {
  3062. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3063. } else if (e.data.tools && e.data.tools == "57teacher") {
  3064. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3065. } else if (e.data.tools && e.data.tools == "64") {
  3066. U.MD.D.I.openApplication("AIChat")
  3067. } else if (e.data.tools && e.data.tools == "66") {
  3068. U.MD.D.I.openApplication("formulaEdi")
  3069. } else if (e.data.tools && e.data.tools == "67") {
  3070. U.MD.D.I.openApplication("molStr")
  3071. } else if (e.data.tools && e.data.tools == "68") {
  3072. U.MD.D.I.openApplication("timeAxis")
  3073. } else if (e.data.tools && e.data.tools == "openCourse") {
  3074. let _data = {
  3075. typea: e.data.typea || '',
  3076. typeb: e.data.typeb || '',
  3077. typed: e.data.typed || '',
  3078. }
  3079. U.MD.D.I.openInApplication("index", _data)
  3080. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3081. let _data = {
  3082. classid: e.data.classid || '',
  3083. }
  3084. U.MD.D.I.openInApplication("dataClass", _data)
  3085. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3086. let _data = {
  3087. cid: e.data.cid || '',
  3088. gid: e.data.gid || '',
  3089. }
  3090. U.MD.D.I.openInApplication("opencCscl", _data)
  3091. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3092. U.MD.D.I.openApplication("dataBoardTest")
  3093. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3094. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3095. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3096. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3097. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3098. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3099. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3100. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3101. }else if (e.data.tools && e.data.tools == "loginSz") {
  3102. U.MD.D.I.openInApplication("loginSz")
  3103. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3104. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3105. }
  3106. });
  3107. U.MD.D.I.selectUser = function () {
  3108. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3109. if (res.value[0].length > 0) {
  3110. US.userInfo = res.value[0][0];
  3111. $(".userName")[0].innerHTML = US.userInfo.username;
  3112. }
  3113. }, [], { "type": "GET", "withCredentials": true });
  3114. }
  3115. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3116. var _userinfo = US.userInfo, //登录用户信息
  3117. _userid = US.userInfo.userid, //登录用户id
  3118. _oid = _userinfo.organizeid,
  3119. _type = US.userInfo.type,
  3120. _org = US.userInfo.org,
  3121. _role = US.userInfo.role,
  3122. _classId = US.userInfo.classid;
  3123. if (_type == 4) {
  3124. tType = 4
  3125. }
  3126. switch (str) {
  3127. case "studyDetailNT": //无终端模式
  3128. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3129. setTimeout(() => {
  3130. U.MD.U.L.login();
  3131. }, 2000);
  3132. } else {
  3133. _formdiv = new U.UF.UI.form(
  3134. "课程详情",
  3135. $$("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 }), {
  3136. "id": "studyDetailNT",
  3137. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3138. "onresize": function () { }
  3139. }, {
  3140. closecallback: function () { }
  3141. }, { "style": { "height": "36px" } }).form; //创建窗体
  3142. _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); } }
  3143. break;
  3144. }
  3145. case "studyDetail":
  3146. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3147. setTimeout(() => {
  3148. U.MD.U.L.login();
  3149. }, 2000);
  3150. } else {
  3151. _formdiv = new U.UF.UI.form(
  3152. "课程详情",
  3153. $$("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 }), {
  3154. "id": "studyDetail",
  3155. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3156. "onresize": function () { }
  3157. }, {
  3158. closecallback: function () { }
  3159. }, { "style": { "height": "36px" } }).form; //创建窗体
  3160. _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); } }
  3161. break;
  3162. }
  3163. case "studyDetailTrain":
  3164. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3165. setTimeout(() => {
  3166. U.MD.U.L.login();
  3167. }, 2000);
  3168. } else {
  3169. _formdiv = new U.UF.UI.form(
  3170. "培训详情",
  3171. $$("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 }), {
  3172. "id": "studyDetailTrain",
  3173. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3174. "onresize": function () { }
  3175. }, {
  3176. closecallback: function () { }
  3177. }, { "style": { "height": "36px" } }).form; //创建窗体
  3178. _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); } }
  3179. break;
  3180. }
  3181. case "studyDetailS":
  3182. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3183. setTimeout(() => {
  3184. U.MD.U.L.login();
  3185. }, 2000);
  3186. } else {
  3187. _formdiv = new U.UF.UI.form(
  3188. "项目详情",
  3189. $$("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 }), {
  3190. "id": "studyDetailS",
  3191. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3192. "onresize": function () { }
  3193. }, {
  3194. closecallback: function () { }
  3195. }, { "style": { "height": "36px" } }).form; //创建窗体
  3196. _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); } }
  3197. break;
  3198. }
  3199. case "studyDetailStudio":
  3200. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3201. setTimeout(() => {
  3202. U.MD.U.L.login();
  3203. }, 2000);
  3204. } else {
  3205. _formdiv = new U.UF.UI.form(
  3206. "工作详情",
  3207. $$("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 }), {
  3208. "id": "studyDetailStudio",
  3209. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3210. "onresize": function () { }
  3211. }, {
  3212. closecallback: function () { }
  3213. }, { "style": { "height": "36px" } }).form; //创建窗体
  3214. _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); } }
  3215. break;
  3216. }
  3217. case "studyDetailS5":
  3218. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3219. setTimeout(() => {
  3220. U.MD.U.L.login();
  3221. }, 2000);
  3222. } else {
  3223. _formdiv = new U.UF.UI.form(
  3224. "项目详情",
  3225. $$("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 }), {
  3226. "id": "studyDetailS",
  3227. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3228. "onresize": function () { }
  3229. }, {
  3230. closecallback: function () { }
  3231. }, { "style": { "height": "36px" } }).form; //创建窗体
  3232. _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); } }
  3233. break;
  3234. }
  3235. case "studyDetailGM":
  3236. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3237. setTimeout(() => {
  3238. U.MD.U.L.login();
  3239. }, 2000);
  3240. } else {
  3241. _formdiv = new U.UF.UI.form(
  3242. "课程详情",
  3243. $$("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 }), {
  3244. "id": "studyDetail",
  3245. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3246. "onresize": function () { }
  3247. }, {
  3248. closecallback: function () { }
  3249. }, { "style": { "height": "36px" } }).form; //创建窗体
  3250. _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); } }
  3251. break;
  3252. }
  3253. case "hanUrl":
  3254. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3255. setTimeout(() => {
  3256. U.MD.U.L.login();
  3257. }, 2000);
  3258. } else {
  3259. _formdiv = new U.UF.UI.form(
  3260. "汉字宫",
  3261. $$("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" }), {
  3262. "id": "hanUrl",
  3263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3264. "onresize": function () { }
  3265. }, {
  3266. closecallback: function () { }
  3267. }, { "style": { "height": "36px" } }).form; //创建窗体
  3268. _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); } }
  3269. break;
  3270. }
  3271. case "index":
  3272. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3273. setTimeout(() => {
  3274. U.MD.U.L.login();
  3275. }, 2000);
  3276. } else {
  3277. _formdiv = new U.UF.UI.form(
  3278. "课程中心",
  3279. $$("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 }), {
  3280. "id": "study",
  3281. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3282. "onresize": function () { }
  3283. }, {
  3284. closecallback: function () { }
  3285. }, { "style": { "height": "36px" } }).form; //创建窗体
  3286. _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); } }
  3287. break;
  3288. }
  3289. case "dataClass":
  3290. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3291. setTimeout(() => {
  3292. U.MD.U.L.login();
  3293. }, 2000);
  3294. } else {
  3295. _formdiv = new U.UF.UI.form(
  3296. "数据报告",
  3297. $$("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 }), {
  3298. "id": "dataClass",
  3299. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3300. "onresize": function () { }
  3301. }, {
  3302. closecallback: function () { }
  3303. }, { "style": { "height": "36px" } }).form; //创建窗体
  3304. _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); } }
  3305. break;
  3306. }
  3307. case "opencCscl":
  3308. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3309. setTimeout(() => {
  3310. U.MD.U.L.login();
  3311. }, 2000);
  3312. } else {
  3313. _formdiv = new U.UF.UI.form(
  3314. "协同建构",
  3315. $$("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 }), {
  3316. "id": "futureClass",
  3317. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3318. "onresize": function () { }
  3319. }, {
  3320. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3321. }, { "style": { "height": "36px" } }).form; //创建窗体
  3322. _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); } }
  3323. break;
  3324. }
  3325. case "openCourseUpdate":
  3326. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3327. setTimeout(() => {
  3328. U.MD.U.L.login();
  3329. }, 2000);
  3330. } else {
  3331. _formdiv = new U.UF.UI.form(
  3332. "课程管理",
  3333. $$("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 }), {
  3334. "id": "openCourseUpdate",
  3335. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3336. "onresize": function () { }
  3337. }, {
  3338. closecallback: function () { }
  3339. }, { "style": { "height": "36px" } }).form; //创建窗体
  3340. break;
  3341. }
  3342. case "openNewCourseUpdate":
  3343. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3344. setTimeout(() => {
  3345. U.MD.U.L.login();
  3346. }, 2000);
  3347. } else {
  3348. _formdiv = new U.UF.UI.form(
  3349. "课程管理",
  3350. $$("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 }), {
  3351. "id": "openCourseUpdate",
  3352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3353. "onresize": function () { }
  3354. }, {
  3355. closecallback: function () { }
  3356. }, { "style": { "height": "36px" } }).form; //创建窗体
  3357. break;
  3358. }
  3359. case "openCourseEUpdate":
  3360. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3361. setTimeout(() => {
  3362. U.MD.U.L.login();
  3363. }, 2000);
  3364. } else {
  3365. _formdiv = new U.UF.UI.form(
  3366. "课程管理",
  3367. $$("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 }), {
  3368. "id": "openCourseUpdate",
  3369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3370. "onresize": function () { }
  3371. }, {
  3372. closecallback: function () { }
  3373. }, { "style": { "height": "36px" } }).form; //创建窗体
  3374. break;
  3375. }
  3376. case "openCourseNewUpdate":
  3377. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3378. setTimeout(() => {
  3379. U.MD.U.L.login();
  3380. }, 2000);
  3381. } else {
  3382. _formdiv = new U.UF.UI.form(
  3383. "课程管理",
  3384. $$("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 }), {
  3385. "id": "openCourseUpdate",
  3386. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3387. "onresize": function () { }
  3388. }, {
  3389. closecallback: function () { }
  3390. }, { "style": { "height": "36px" } }).form; //创建窗体
  3391. break;
  3392. }
  3393. case "inviteLoginSz":
  3394. _formdiv = new U.UF.UI.form(
  3395. "随机码登录",
  3396. $$("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 }), {
  3397. "id": "loginSz",
  3398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3399. "onresize": function () { }
  3400. }, {
  3401. closecallback: function () { }
  3402. }, { "style": { "height": "36px" } }).form; //创建窗体
  3403. break;
  3404. case "loginSz":
  3405. _formdiv = new U.UF.UI.form(
  3406. "教师登录",
  3407. $$("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" }), {
  3408. "id": "loginSz",
  3409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3410. "onresize": function () { }
  3411. }, {
  3412. closecallback: function () { }
  3413. }, { "style": { "height": "36px" } }).form; //创建窗体
  3414. break;
  3415. case "teacher":
  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-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3424. "id": "teacher",
  3425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3426. "onresize": function () { }
  3427. }, {
  3428. closecallback: function () { }
  3429. }, { "style": { "height": "36px" } }).form; //创建窗体
  3430. break;
  3431. }
  3432. case "dataBoardSZArea":
  3433. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3434. setTimeout(() => {
  3435. U.MD.U.L.login();
  3436. }, 2000);
  3437. } else {
  3438. _formdiv = new U.UF.UI.form(
  3439. "综合数据看板",
  3440. $$("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 }), {
  3441. "id": "dataBoardSZArea",
  3442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3443. "onresize": function () { }
  3444. }, {
  3445. closecallback: function () { }
  3446. }, { "style": { "height": "36px" } }).form; //创建窗体
  3447. break;
  3448. }
  3449. case "dataBoardSZCity":
  3450. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3451. setTimeout(() => {
  3452. U.MD.U.L.login();
  3453. }, 2000);
  3454. } else {
  3455. _formdiv = new U.UF.UI.form(
  3456. "综合数据看板",
  3457. $$("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 }), {
  3458. "id": "dataBoardSZCity",
  3459. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3460. "onresize": function () { }
  3461. }, {
  3462. closecallback: function () { }
  3463. }, { "style": { "height": "36px" } }).form; //创建窗体
  3464. break;
  3465. }
  3466. case "classroom_observation_board":
  3467. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3468. setTimeout(() => {
  3469. U.MD.U.L.login();
  3470. }, 2000);
  3471. } else {
  3472. _formdiv = new U.UF.UI.form(
  3473. "课堂观察",
  3474. $$("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 }), {
  3475. "id": "classroom_observation_board",
  3476. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3477. "onresize": function () { }
  3478. }, {
  3479. closecallback: function () { }
  3480. }, { "style": { "height": "36px" } }).form; //创建窗体
  3481. break;
  3482. }
  3483. }
  3484. }
  3485. U.MD.D.I.openApplication = function (str, obj, info) {
  3486. obj = obj || {};
  3487. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3488. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3489. _userinfo = US.userInfo, //登录用户信息
  3490. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3491. _oid = obj.organizeid || _userinfo.organizeid,
  3492. _type = US.userInfo.type,
  3493. _org = US.userInfo.org,
  3494. _role = US.userInfo.role,
  3495. _classId = US.userInfo.classid,
  3496. _TscreenType = 1
  3497. _screenType = 2,
  3498. _SscreenType = 3;
  3499. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3500. return;
  3501. }
  3502. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3503. switch (str) {
  3504. case "studnetProject": //好友打开
  3505. _formdiv = new U.UF.UI.form(
  3506. "我的项目",
  3507. $$("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 }), {
  3508. "id": "studnetProject",
  3509. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3510. "onresize": function () { }
  3511. }, {
  3512. closecallback: function () { }
  3513. }, { "style": { "height": "36px" } }).form; //创建窗体
  3514. _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); } }
  3515. break;
  3516. case "studentEvaluate": //好友打开
  3517. _formdiv = new U.UF.UI.form(
  3518. "我的评价",
  3519. $$("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 }), {
  3520. "id": "studentEvaluate",
  3521. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3522. "onresize": function () { }
  3523. }, {
  3524. closecallback: function () { }
  3525. }, { "style": { "height": "36px" } }).form; //创建窗体
  3526. _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); } }
  3527. break;
  3528. case "my":
  3529. _formdiv = new U.UF.UI.form(
  3530. "我的资料",
  3531. $$("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 }), {
  3532. "id": "my",
  3533. "style": { "width": "42%", "height": "90%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3539. break;
  3540. case "program":
  3541. _formdiv = new U.UF.UI.form(
  3542. "编程平台",
  3543. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3544. "id": "program",
  3545. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3546. "onresize": function () { }
  3547. }, {
  3548. closecallback: function () { }
  3549. }, { "style": { "height": "36px" } }).form; //创建窗体
  3550. _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); } }
  3551. break;
  3552. case "library":
  3553. _formdiv = new U.UF.UI.form(
  3554. "素材库",
  3555. $$("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 }), {
  3556. "id": "library",
  3557. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3558. "onresize": function () { }
  3559. }, {
  3560. closecallback: function () { }
  3561. }, { "style": { "height": "36px" } }).form; //创建窗体
  3562. _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); } }
  3563. break;
  3564. case "whiteboard":
  3565. _formdiv = new U.UF.UI.form(
  3566. "电子白板",
  3567. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3568. "id": "whiteboard",
  3569. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3570. "onresize": function () { }
  3571. }, {
  3572. closecallback: function () { }
  3573. }, { "style": { "height": "36px" } }).form; //创建窗体
  3574. _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); } }
  3575. break;
  3576. case "investigation":
  3577. _formdiv = new U.UF.UI.form(
  3578. "问卷调查",
  3579. $$("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 }), {
  3580. "id": "investigation",
  3581. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3582. "onresize": function () { }
  3583. }, {
  3584. closecallback: function () { }
  3585. }, { "style": { "height": "36px" } }).form; //创建窗体
  3586. _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); } }
  3587. break;
  3588. case "note":
  3589. _formdiv = new U.UF.UI.form(
  3590. "便签分类",
  3591. $$("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 }), {
  3592. "id": "note",
  3593. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3594. "onresize": function () { }
  3595. }, {
  3596. closecallback: function () { }
  3597. }, { "style": { "height": "36px" } }).form; //创建窗体
  3598. _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); } }
  3599. break;
  3600. // case "score":
  3601. // _formdiv = new U.UF.UI.form(
  3602. // "量规评分",
  3603. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3604. // "id": "score",
  3605. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3606. // "onresize": function() {}
  3607. // }, {
  3608. // closecallback: function() {}
  3609. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3610. // _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); } }
  3611. // break;
  3612. case "mind":
  3613. _formdiv = new U.UF.UI.form(
  3614. "思维导图",
  3615. $$("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"
  3616. "id": "mind",
  3617. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3618. "onresize": function () { }
  3619. }, {
  3620. closecallback: function () { }
  3621. }, { "style": { "height": "36px" } }).form; //创建窗体
  3622. _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); } }
  3623. break;
  3624. case "doc":
  3625. // U.MD.D.I.isRoom();
  3626. _formdiv = new U.UF.UI.form(
  3627. "协同文档",
  3628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3629. "id": "doc",
  3630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3631. "onresize": function () { }
  3632. }, {
  3633. closecallback: function () { }
  3634. }, { "style": { "height": "36px" } }).form; //创建窗体
  3635. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3636. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3637. // })
  3638. _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); } }
  3639. break;
  3640. case "studentStudy":
  3641. _formdiv = new U.UF.UI.form(
  3642. "课程中心",
  3643. $$("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
  3644. "id": "studentStudy",
  3645. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3646. "onresize": function () { }
  3647. }, {
  3648. closecallback: function () { }
  3649. }, { "style": { "height": "36px" } }).form; //创建窗体
  3650. _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); } }
  3651. break;
  3652. case "train": //好友打开
  3653. _formdiv = new U.UF.UI.form(
  3654. "训练平台",
  3655. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3656. "id": "train",
  3657. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3658. "onresize": function () { }
  3659. }, {
  3660. closecallback: function () { }
  3661. }, { "style": { "height": "36px" } }).form; //创建窗体
  3662. _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); } }
  3663. break;
  3664. case "mindNetwork": //好友打开
  3665. _formdiv = new U.UF.UI.form(
  3666. "思维网格",
  3667. $$("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 }), {
  3668. "id": "mindNetwork",
  3669. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3670. "onresize": function () { }
  3671. }, {
  3672. closecallback: function () { }
  3673. }, { "style": { "height": "36px" } }).form; //创建窗体
  3674. _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); } }
  3675. break;
  3676. case "studentClassRoom": //好友打开
  3677. _formdiv = new U.UF.UI.form(
  3678. "实时课堂",
  3679. $$("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 }), {
  3680. "id": "studentClassRoom",
  3681. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3682. "onresize": function () { }
  3683. }, {
  3684. closecallback: function () { }
  3685. }, { "style": { "height": "36px" } }).form; //创建窗体
  3686. _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); } }
  3687. setTimeout(() => {
  3688. U.UF.F.windowZooming(_formdiv)
  3689. }, 0);
  3690. break;
  3691. }
  3692. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3693. switch (str) {
  3694. case "studnetProject": //好友打开
  3695. _formdiv = new U.UF.UI.form(
  3696. "我的项目",
  3697. $$("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 }), {
  3698. "id": "studnetProject",
  3699. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3700. "onresize": function () { }
  3701. }, {
  3702. closecallback: function () { }
  3703. }, { "style": { "height": "36px" } }).form; //创建窗体
  3704. _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); } }
  3705. break;
  3706. case "studentEvaluate": //好友打开
  3707. _formdiv = new U.UF.UI.form(
  3708. "我的评价",
  3709. $$("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 }), {
  3710. "id": "studentEvaluate",
  3711. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3712. "onresize": function () { }
  3713. }, {
  3714. closecallback: function () { }
  3715. }, { "style": { "height": "36px" } }).form; //创建窗体
  3716. _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); } }
  3717. break;
  3718. case "my":
  3719. _formdiv = new U.UF.UI.form(
  3720. "我的资料",
  3721. $$("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 }), {
  3722. "id": "my",
  3723. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3724. "onresize": function () { }
  3725. }, {
  3726. closecallback: function () { }
  3727. }, { "style": { "height": "36px" } }).form; //创建窗体
  3728. _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); } }
  3729. break;
  3730. case "program":
  3731. _formdiv = new U.UF.UI.form(
  3732. "编程平台",
  3733. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3734. "id": "program",
  3735. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3736. "onresize": function () { }
  3737. }, {
  3738. closecallback: function () { }
  3739. }, { "style": { "height": "36px" } }).form; //创建窗体
  3740. _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); } }
  3741. break;
  3742. case "library":
  3743. _formdiv = new U.UF.UI.form(
  3744. "素材库",
  3745. $$("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 }), {
  3746. "id": "library",
  3747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3748. "onresize": function () { }
  3749. }, {
  3750. closecallback: function () { }
  3751. }, { "style": { "height": "36px" } }).form; //创建窗体
  3752. _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); } }
  3753. break;
  3754. case "whiteboard":
  3755. _formdiv = new U.UF.UI.form(
  3756. "电子白板",
  3757. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3758. "id": "whiteboard",
  3759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3760. "onresize": function () { }
  3761. }, {
  3762. closecallback: function () { }
  3763. }, { "style": { "height": "36px" } }).form; //创建窗体
  3764. _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); } }
  3765. break;
  3766. case "investigation":
  3767. _formdiv = new U.UF.UI.form(
  3768. "问卷调查",
  3769. $$("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 }), {
  3770. "id": "investigation",
  3771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3772. "onresize": function () { }
  3773. }, {
  3774. closecallback: function () { }
  3775. }, { "style": { "height": "36px" } }).form; //创建窗体
  3776. _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); } }
  3777. break;
  3778. case "note":
  3779. _formdiv = new U.UF.UI.form(
  3780. "便签分类",
  3781. $$("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 }), {
  3782. "id": "note",
  3783. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3784. "onresize": function () { }
  3785. }, {
  3786. closecallback: function () { }
  3787. }, { "style": { "height": "36px" } }).form; //创建窗体
  3788. _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); } }
  3789. break;
  3790. // case "score":
  3791. // _formdiv = new U.UF.UI.form(
  3792. // "量规评分",
  3793. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3794. // "id": "score",
  3795. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3796. // "onresize": function() {}
  3797. // }, {
  3798. // closecallback: function() {}
  3799. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3800. // _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); } }
  3801. // break;
  3802. case "mind":
  3803. _formdiv = new U.UF.UI.form(
  3804. "思维导图",
  3805. $$("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"
  3806. "id": "mind",
  3807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3808. "onresize": function () { }
  3809. }, {
  3810. closecallback: function () { }
  3811. }, { "style": { "height": "36px" } }).form; //创建窗体
  3812. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3813. break;
  3814. case "doc":
  3815. // U.MD.D.I.isRoom();
  3816. _formdiv = new U.UF.UI.form(
  3817. "协同文档",
  3818. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3819. "id": "doc",
  3820. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3821. "onresize": function () { }
  3822. }, {
  3823. closecallback: function () { }
  3824. }, { "style": { "height": "36px" } }).form; //创建窗体
  3825. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3826. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3827. })
  3828. _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); } }
  3829. break;
  3830. case "train": //好友打开
  3831. _formdiv = new U.UF.UI.form(
  3832. "训练平台",
  3833. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3834. "id": "train",
  3835. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3836. "onresize": function () { }
  3837. }, {
  3838. closecallback: function () { }
  3839. }, { "style": { "height": "36px" } }).form; //创建窗体
  3840. _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); } }
  3841. break;
  3842. case "studentStudy":
  3843. _formdiv = new U.UF.UI.form(
  3844. "课程中心",
  3845. $$("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
  3846. "id": "studentStudy",
  3847. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3848. "onresize": function () { }
  3849. }, {
  3850. closecallback: function () { }
  3851. }, { "style": { "height": "36px" } }).form; //创建窗体
  3852. _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); } }
  3853. break;
  3854. case "mindNetwork": //好友打开
  3855. _formdiv = new U.UF.UI.form(
  3856. "思维网格",
  3857. $$("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 }), {
  3858. "id": "mindNetwork",
  3859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3860. "onresize": function () { }
  3861. }, {
  3862. closecallback: function () { }
  3863. }, { "style": { "height": "36px" } }).form; //创建窗体
  3864. _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); } }
  3865. break;
  3866. case "studentClassRoom": //好友打开
  3867. _formdiv = new U.UF.UI.form(
  3868. "实时课堂",
  3869. $$("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 }), {
  3870. "id": "studentClassRoom",
  3871. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3872. "onresize": function () { }
  3873. }, {
  3874. closecallback: function () { }
  3875. }, { "style": { "height": "36px" } }).form; //创建窗体
  3876. _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); } }
  3877. setTimeout(() => {
  3878. U.UF.F.windowZooming(_formdiv)
  3879. }, 0);
  3880. break;
  3881. }
  3882. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3883. //选择应用处理
  3884. switch (str) {
  3885. case "project": //好友打开
  3886. _formdiv = new U.UF.UI.form(
  3887. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3888. $$("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 }), {
  3889. "id": "project",
  3890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3891. "onresize": function () { }
  3892. }, {
  3893. closecallback: function () { }
  3894. }, { "style": { "height": "36px" } }).form; //创建窗体
  3895. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3896. break;
  3897. case "student":
  3898. _formdiv = new U.UF.UI.form(
  3899. "学生管理",
  3900. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  3901. "id": "student",
  3902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3903. "onresize": function () { }
  3904. }, {
  3905. closecallback: function () { }
  3906. }, { "style": { "height": "36px" } }).form; //创建窗体
  3907. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3908. break;
  3909. case "evaluate":
  3910. _formdiv = new U.UF.UI.form(
  3911. "学生评价",
  3912. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3913. "id": "evaluate",
  3914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3915. "onresize": function () { }
  3916. }, {
  3917. closecallback: function () { }
  3918. }, { "style": { "height": "36px" } }).form; //创建窗体
  3919. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3920. break;
  3921. case "sys":
  3922. _formdiv = new U.UF.UI.form(
  3923. "目标管理",
  3924. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3925. "id": "sys",
  3926. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3932. break;
  3933. case "courseDesign":
  3934. _formdiv = new U.UF.UI.form(
  3935. "项目设计",
  3936. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3937. "id": "courseDesign",
  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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3944. break;
  3945. case "program":
  3946. _formdiv = new U.UF.UI.form(
  3947. "编程平台",
  3948. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3949. "id": "program",
  3950. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3956. break;
  3957. case "class":
  3958. _formdiv = new U.UF.UI.form(
  3959. "班级管理",
  3960. $$("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 }), {
  3961. "id": "class",
  3962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3963. "onresize": function () { }
  3964. }, {
  3965. closecallback: function () { }
  3966. }, { "style": { "height": "36px" } }).form; //创建窗体
  3967. _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); } }
  3968. break;
  3969. case "Grade":
  3970. _formdiv = new U.UF.UI.form(
  3971. "年级管理",
  3972. $$("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 }), {
  3973. "id": "Grade",
  3974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3975. "onresize": function () { }
  3976. }, {
  3977. closecallback: function () { }
  3978. }, { "style": { "height": "36px" } }).form; //创建窗体
  3979. _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); } }
  3980. break;
  3981. case "teacherOffice":
  3982. _formdiv = new U.UF.UI.form(
  3983. "教研室",
  3984. $$("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 }), {
  3985. "id": "teacherOffice",
  3986. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3987. "onresize": function () { }
  3988. }, {
  3989. closecallback: function () { }
  3990. }, { "style": { "height": "36px" } }).form; //创建窗体
  3991. _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); } }
  3992. break;
  3993. case "my":
  3994. _formdiv = new U.UF.UI.form(
  3995. "我的资料",
  3996. $$("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 }), {
  3997. "id": "my",
  3998. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3999. "onresize": function () { }
  4000. }, {
  4001. closecallback: function () { }
  4002. }, { "style": { "height": "36px" } }).form; //创建窗体
  4003. _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); } }
  4004. break;
  4005. case "notice":
  4006. _formdiv = new U.UF.UI.form(
  4007. "通知公告",
  4008. $$("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 }), {
  4009. "id": "notice",
  4010. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4011. "onresize": function () { }
  4012. }, {
  4013. closecallback: function () { }
  4014. }, { "style": { "height": "36px" } }).form; //创建窗体
  4015. _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); } }
  4016. break;
  4017. case "library":
  4018. _formdiv = new U.UF.UI.form(
  4019. "素材库",
  4020. $$("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 }), {
  4021. "id": "library",
  4022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4023. "onresize": function () { }
  4024. }, {
  4025. closecallback: function () { }
  4026. }, { "style": { "height": "36px" } }).form; //创建窗体
  4027. _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); } }
  4028. break;
  4029. case "whiteboard":
  4030. _formdiv = new U.UF.UI.form(
  4031. "电子白板",
  4032. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4033. "id": "whiteboard",
  4034. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4035. "onresize": function () { }
  4036. }, {
  4037. closecallback: function () { }
  4038. }, { "style": { "height": "36px" } }).form; //创建窗体
  4039. _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); } }
  4040. break;
  4041. case "investigation":
  4042. _formdiv = new U.UF.UI.form(
  4043. "问卷调查",
  4044. $$("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 }), {
  4045. "id": "investigation",
  4046. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4047. "onresize": function () { }
  4048. }, {
  4049. closecallback: function () { }
  4050. }, { "style": { "height": "36px" } }).form; //创建窗体
  4051. _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); } }
  4052. break;
  4053. case "note":
  4054. _formdiv = new U.UF.UI.form(
  4055. "便签分类",
  4056. $$("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 }), {
  4057. "id": "note",
  4058. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4059. "onresize": function () { }
  4060. }, {
  4061. closecallback: function () { }
  4062. }, { "style": { "height": "36px" } }).form; //创建窗体
  4063. _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); } }
  4064. break;
  4065. // case "score":
  4066. // _formdiv = new U.UF.UI.form(
  4067. // "量规评分",
  4068. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4069. // "id": "score",
  4070. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4071. // "onresize": function() {}
  4072. // }, {
  4073. // closecallback: function() {}
  4074. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4075. // _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); } }
  4076. // break;
  4077. case "mind":
  4078. _formdiv = new U.UF.UI.form(
  4079. "思维导图",
  4080. $$("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"
  4081. "id": "mind",
  4082. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4083. "onresize": function () { }
  4084. }, {
  4085. closecallback: function () { }
  4086. }, { "style": { "height": "36px" } }).form; //创建窗体
  4087. _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); } }
  4088. break;
  4089. case "doc":
  4090. // U.MD.D.I.isRoom();
  4091. _formdiv = new U.UF.UI.form(
  4092. "协同文档",
  4093. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4094. "id": "doc",
  4095. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4096. "onresize": function () { }
  4097. }, {
  4098. closecallback: function () { }
  4099. }, { "style": { "height": "36px" } }).form; //创建窗体
  4100. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4101. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4102. })
  4103. _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); } }
  4104. break;
  4105. case "study":
  4106. _formdiv = new U.UF.UI.form(
  4107. "课程中心",
  4108. $$("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
  4109. "id": "study",
  4110. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4111. "onresize": function () { }
  4112. }, {
  4113. closecallback: function () { }
  4114. }, { "style": { "height": "36px" } }).form; //创建窗体
  4115. _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); } }
  4116. break;
  4117. case "mindNetwork": //好友打开
  4118. _formdiv = new U.UF.UI.form(
  4119. "思维网格",
  4120. $$("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 }), {
  4121. "id": "mindNetwork",
  4122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4123. "onresize": function () { }
  4124. }, {
  4125. closecallback: function () { }
  4126. }, { "style": { "height": "36px" } }).form; //创建窗体
  4127. _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); } }
  4128. break;
  4129. case "train": //好友打开
  4130. _formdiv = new U.UF.UI.form(
  4131. "训练平台",
  4132. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4133. "id": "mindNetwork",
  4134. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4135. "onresize": function () { }
  4136. }, {
  4137. closecallback: function () { }
  4138. }, { "style": { "height": "36px" } }).form; //创建窗体
  4139. _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); } }
  4140. break;
  4141. case "teacherClassRoom": //好友打开
  4142. _formdiv = new U.UF.UI.form(
  4143. "实时课堂",
  4144. $$("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 }), {
  4145. "id": "teacherClassRoom",
  4146. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4147. "onresize": function () { }
  4148. }, {
  4149. closecallback: function () { }
  4150. }, { "style": { "height": "36px" } }).form; //创建窗体
  4151. _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); } }
  4152. setTimeout(() => {
  4153. U.UF.F.windowZooming(_formdiv)
  4154. }, 0);
  4155. break;
  4156. }
  4157. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4158. switch (str) {
  4159. case "project": //好友打开
  4160. _formdiv = new U.UF.UI.form(
  4161. "课程管理",
  4162. $$("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 }), {
  4163. "id": "project",
  4164. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4165. "onresize": function () { }
  4166. }, {
  4167. closecallback: function () { }
  4168. }, { "style": { "height": "36px" } }).form; //创建窗体
  4169. _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); } }
  4170. break;
  4171. case "evaluate":
  4172. _formdiv = new U.UF.UI.form(
  4173. "学生评价",
  4174. $$("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 }), {
  4175. "id": "evaluate",
  4176. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4177. "onresize": function () { }
  4178. }, {
  4179. closecallback: function () { }
  4180. }, { "style": { "height": "36px" } }).form; //创建窗体
  4181. _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); } }
  4182. break;
  4183. case "notice":
  4184. _formdiv = new U.UF.UI.form(
  4185. "通知公告",
  4186. $$("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 }), {
  4187. "id": "notice",
  4188. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4189. "onresize": function () { }
  4190. }, {
  4191. closecallback: function () { }
  4192. }, { "style": { "height": "36px" } }).form; //创建窗体
  4193. _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); } }
  4194. break;
  4195. case "stuLibrary":
  4196. _formdiv = new U.UF.UI.form(
  4197. "学习资料",
  4198. $$("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 }), {
  4199. "id": "stuLibrary",
  4200. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4201. "onresize": function () { }
  4202. }, {
  4203. closecallback: function () { }
  4204. }, { "style": { "height": "36px" } }).form; //创建窗体
  4205. _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); } }
  4206. break;
  4207. case "program":
  4208. _formdiv = new U.UF.UI.form(
  4209. "编程平台",
  4210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4211. "id": "program",
  4212. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4213. "onresize": function () { }
  4214. }, {
  4215. closecallback: function () { }
  4216. }, { "style": { "height": "36px" } }).form; //创建窗体
  4217. _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); } }
  4218. break;
  4219. case "whiteboard":
  4220. _formdiv = new U.UF.UI.form(
  4221. "电子白板",
  4222. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4223. "id": "whiteboard",
  4224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4225. "onresize": function () { }
  4226. }, {
  4227. closecallback: function () { }
  4228. }, { "style": { "height": "36px" } }).form; //创建窗体
  4229. _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); } }
  4230. break;
  4231. case "investigation":
  4232. _formdiv = new U.UF.UI.form(
  4233. "问卷调查",
  4234. $$("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 }), {
  4235. "id": "investigation",
  4236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4237. "onresize": function () { }
  4238. }, {
  4239. closecallback: function () { }
  4240. }, { "style": { "height": "36px" } }).form; //创建窗体
  4241. _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); } }
  4242. break;
  4243. case "mind":
  4244. _formdiv = new U.UF.UI.form(
  4245. "思维导图",
  4246. $$("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"
  4247. "id": "mind",
  4248. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4249. "onresize": function () { }
  4250. }, {
  4251. closecallback: function () { }
  4252. }, { "style": { "height": "36px" } }).form; //创建窗体
  4253. _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); } }
  4254. break;
  4255. case "doc":
  4256. // U.MD.D.I.isRoom();
  4257. _formdiv = new U.UF.UI.form(
  4258. "协同文档",
  4259. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4260. "id": "doc",
  4261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4262. "onresize": function () { }
  4263. }, {
  4264. closecallback: function () { }
  4265. }, { "style": { "height": "36px" } }).form; //创建窗体
  4266. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4267. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4268. })
  4269. _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); } }
  4270. break;
  4271. case "study":
  4272. _formdiv = new U.UF.UI.form(
  4273. "课程中心",
  4274. $$("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
  4275. "id": "study",
  4276. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4277. "onresize": function () { }
  4278. }, {
  4279. closecallback: function () { }
  4280. }, { "style": { "height": "36px" } }).form; //创建窗体
  4281. _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); } }
  4282. break;
  4283. case "mindNetwork": //好友打开
  4284. _formdiv = new U.UF.UI.form(
  4285. "思维网格",
  4286. $$("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 }), {
  4287. "id": "mindNetwork",
  4288. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4289. "onresize": function () { }
  4290. }, {
  4291. closecallback: function () { }
  4292. }, { "style": { "height": "36px" } }).form; //创建窗体
  4293. _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); } }
  4294. break;
  4295. case "train": //好友打开
  4296. _formdiv = new U.UF.UI.form(
  4297. "训练平台",
  4298. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4299. "id": "train",
  4300. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4301. "onresize": function () { }
  4302. }, {
  4303. closecallback: function () { }
  4304. }, { "style": { "height": "36px" } }).form; //创建窗体
  4305. _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); } }
  4306. break;
  4307. case "sys":
  4308. _formdiv = new U.UF.UI.form(
  4309. "目标管理",
  4310. $$("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 }), {
  4311. "id": "sys",
  4312. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4313. "onresize": function () { }
  4314. }, {
  4315. closecallback: function () { }
  4316. }, { "style": { "height": "36px" } }).form; //创建窗体
  4317. _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); } }
  4318. break;
  4319. case "courseDesign":
  4320. _formdiv = new U.UF.UI.form(
  4321. "项目设计",
  4322. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4323. "id": "courseDesign",
  4324. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4325. "onresize": function () { }
  4326. }, {
  4327. closecallback: function () { }
  4328. }, { "style": { "height": "36px" } }).form; //创建窗体
  4329. _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); } }
  4330. break;
  4331. }
  4332. } else if (!_type) {
  4333. switch (str) {
  4334. case "my":
  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 + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4338. "id": "my",
  4339. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4345. break;
  4346. }
  4347. }
  4348. switch (str) {
  4349. // AIprogram2 AI体验 aihub.cocorobo.cn
  4350. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4351. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4352. case "formulaEdi": //公式编辑
  4353. _formdiv = new U.UF.UI.form(
  4354. "公式编辑",
  4355. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4356. "id": "formulaEdi",
  4357. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4358. "onresize": function () { }
  4359. }, {
  4360. closecallback: function () { }
  4361. }, { "style": { "height": "36px" } }).form; //创建窗体
  4362. _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); } }
  4363. break;
  4364. case "molStr": //分子结构
  4365. _formdiv = new U.UF.UI.form(
  4366. "分子结构",
  4367. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4368. "id": "molStr",
  4369. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4370. "onresize": function () { }
  4371. }, {
  4372. closecallback: function () { }
  4373. }, { "style": { "height": "36px" } }).form; //创建窗体
  4374. _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); } }
  4375. break;
  4376. case "timeAxis": //时间轴
  4377. _formdiv = new U.UF.UI.form(
  4378. "时间轴",
  4379. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4380. "id": "timeAxis",
  4381. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4382. "onresize": function () { }
  4383. }, {
  4384. closecallback: function () { }
  4385. }, { "style": { "height": "36px" } }).form; //创建窗体
  4386. _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); } }
  4387. break;
  4388. case "AIprogram2": //AI体验
  4389. _formdiv = new U.UF.UI.form(
  4390. "AI体验",
  4391. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4392. "id": "AIprogram2",
  4393. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4394. "onresize": function () { }
  4395. }, {
  4396. closecallback: function () { }
  4397. }, { "style": { "height": "36px" } }).form; //创建窗体
  4398. _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); } }
  4399. break;
  4400. case "Pythonprogram": //python编程
  4401. _formdiv = new U.UF.UI.form(
  4402. "Python编程",
  4403. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4404. "id": "Pythonprogram",
  4405. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4406. "onresize": function () { }
  4407. }, {
  4408. closecallback: function () { }
  4409. }, { "style": { "height": "36px" } }).form; //创建窗体
  4410. _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); } }
  4411. break;
  4412. case "AIprogram": //ai编程
  4413. _formdiv = new U.UF.UI.form(
  4414. "AI编程平台",
  4415. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4416. "id": "AIprogram",
  4417. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4418. "onresize": function () { }
  4419. }, {
  4420. closecallback: function () { }
  4421. }, { "style": { "height": "36px" } }).form; //创建窗体
  4422. _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); } }
  4423. break;
  4424. case "CocoPi": //CocoPi
  4425. _formdiv = new U.UF.UI.form(
  4426. "CocoPi",
  4427. $$("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" }), {
  4428. "id": "CocoPi",
  4429. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4430. "onresize": function () { }
  4431. }, {
  4432. closecallback: function () { }
  4433. }, { "style": { "height": "36px" } }).form; //创建窗体
  4434. _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); } }
  4435. break;
  4436. case "Wood": //Wood
  4437. _formdiv = new U.UF.UI.form(
  4438. "海龟编程",
  4439. $$("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/" }), {
  4440. "id": "Wood",
  4441. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4442. "onresize": function () { }
  4443. }, {
  4444. closecallback: function () { }
  4445. }, { "style": { "height": "36px" } }).form; //创建窗体
  4446. _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); } }
  4447. break;
  4448. case "car": //模拟驾驶
  4449. _formdiv = new U.UF.UI.form(
  4450. "模拟驾驶",
  4451. $$("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/" }), {
  4452. "id": "car",
  4453. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4454. "onresize": function () { }
  4455. }, {
  4456. closecallback: function () { }
  4457. }, { "style": { "height": "36px" } }).form; //创建窗体
  4458. _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); } }
  4459. break;
  4460. case "lineSearch": //路径搜索
  4461. _formdiv = new U.UF.UI.form(
  4462. "路径搜索",
  4463. $$("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/" }), {
  4464. "id": "lineSearch",
  4465. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4466. "onresize": function () { }
  4467. }, {
  4468. closecallback: function () { }
  4469. }, { "style": { "height": "36px" } }).form; //创建窗体
  4470. _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); } }
  4471. break;
  4472. case "deepLearning": //深度学习
  4473. _formdiv = new U.UF.UI.form(
  4474. "深度学习",
  4475. $$("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/#" }), {
  4476. "id": "deepLearning",
  4477. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4478. "onresize": function () { }
  4479. }, {
  4480. closecallback: function () { }
  4481. }, { "style": { "height": "36px" } }).form; //创建窗体
  4482. _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); } }
  4483. break;
  4484. case "allHistory": //深度学习
  4485. _formdiv = new U.UF.UI.form(
  4486. "全历史",
  4487. $$("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/" }), {
  4488. "id": "allHistory",
  4489. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4490. "onresize": function () { }
  4491. }, {
  4492. closecallback: function () { }
  4493. }, { "style": { "height": "36px" } }).form; //创建窗体
  4494. _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); } }
  4495. break;
  4496. case "chatPDF": //ai编程
  4497. _formdiv = new U.UF.UI.form(
  4498. "chatPDF",
  4499. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4500. "id": "chatPDF",
  4501. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4502. "onresize": function () { }
  4503. }, {
  4504. closecallback: function () { }
  4505. }, { "style": { "height": "36px" } }).form; //创建窗体
  4506. _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); } }
  4507. break;
  4508. case "resources": //国家教育
  4509. _formdiv = new U.UF.UI.form(
  4510. "国家教育",
  4511. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4512. "id": "resources",
  4513. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4514. "onresize": function () { }
  4515. }, {
  4516. closecallback: function () { }
  4517. }, { "style": { "height": "36px" } }).form; //创建窗体
  4518. _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); } }
  4519. break;
  4520. case "codeEdit": //源码编辑
  4521. _formdiv = new U.UF.UI.form(
  4522. "源码编辑",
  4523. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4524. "id": "codeEdit",
  4525. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4526. "onresize": function () { }
  4527. }, {
  4528. closecallback: function () { }
  4529. }, { "style": { "height": "36px" } }).form; //创建窗体
  4530. _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); } }
  4531. break; //
  4532. case "MindMap": //MindMap
  4533. _formdiv = new U.UF.UI.form(
  4534. "MindMap",
  4535. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4536. "id": "MindMap",
  4537. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4538. "onresize": function () { }
  4539. }, {
  4540. closecallback: function () { }
  4541. }, { "style": { "height": "36px" } }).form; //创建窗体
  4542. _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); } }
  4543. break;
  4544. case "netWorkPanel": //netWorkPanel
  4545. _formdiv = new U.UF.UI.form(
  4546. "netWorkPanel",
  4547. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4548. "id": "netWorkPanel",
  4549. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4550. "onresize": function () { }
  4551. }, {
  4552. closecallback: function () { }
  4553. }, { "style": { "height": "36px" } }).form; //创建窗体
  4554. _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); } }
  4555. break;
  4556. case "GeoGebra": //GeoGebra
  4557. _formdiv = new U.UF.UI.form(
  4558. "GeoGebra",
  4559. $$("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" }), {
  4560. "id": "GeoGebra",
  4561. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4562. "onresize": function () { }
  4563. }, {
  4564. closecallback: function () { }
  4565. }, { "style": { "height": "36px" } }).form; //创建窗体
  4566. _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); } }
  4567. break;
  4568. case "translation": //翻译
  4569. _formdiv = new U.UF.UI.form(
  4570. "翻译",
  4571. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4572. "id": "translation",
  4573. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4574. "onresize": function () { }
  4575. }, {
  4576. closecallback: function () { }
  4577. }, { "style": { "height": "36px" } }).form; //创建窗体
  4578. _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); } }
  4579. break;
  4580. case "mohe": //魔盒
  4581. _formdiv = new U.UF.UI.form(
  4582. "魔盒识字",
  4583. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4584. "id": "mohe",
  4585. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4586. "onresize": function () { }
  4587. }, {
  4588. closecallback: function () { }
  4589. }, { "style": { "height": "36px" } }).form; //创建窗体
  4590. _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); } }
  4591. break;
  4592. case "24game": //24点
  4593. _formdiv = new U.UF.UI.form(
  4594. "24点",
  4595. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4596. "id": "24game",
  4597. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4598. "onresize": function () { }
  4599. }, {
  4600. closecallback: function () { }
  4601. }, { "style": { "height": "36px" } }).form; //创建窗体
  4602. _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); } }
  4603. break;
  4604. case "case":
  4605. _formdiv = new U.UF.UI.form(
  4606. "课程进展",
  4607. $$("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 }), {
  4608. "id": "case",
  4609. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4610. "onresize": function () { }
  4611. }, {
  4612. closecallback: function () { }
  4613. }, { "style": { "height": "36px" } }).form; //创建窗体
  4614. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4615. break;
  4616. case "snf":
  4617. _formdiv = new U.UF.UI.form(
  4618. "赛诺梵",
  4619. $$("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" }), {
  4620. "id": "snf",
  4621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4622. "onresize": function () { }
  4623. }, {
  4624. closecallback: function () { }
  4625. }, { "style": { "height": "36px" } }).form; //创建窗体
  4626. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4627. break;
  4628. case "hanFamily":
  4629. _formdiv = new U.UF.UI.form(
  4630. "汉字家族",
  4631. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4632. "id": "hanFamily",
  4633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4634. "onresize": function () { }
  4635. }, {
  4636. closecallback: function () { }
  4637. }, { "style": { "height": "36px" } }).form; //创建窗体
  4638. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4639. break;
  4640. case "hanClassics":
  4641. _formdiv = new U.UF.UI.form(
  4642. "国学经典",
  4643. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4644. "id": "hanClassics",
  4645. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4646. "onresize": function () { }
  4647. }, {
  4648. closecallback: function () { }
  4649. }, { "style": { "height": "36px" } }).form; //创建窗体
  4650. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4651. break;
  4652. case "hanTraining":
  4653. _formdiv = new U.UF.UI.form(
  4654. "笔画训练",
  4655. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4656. "id": "hanTraining",
  4657. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4658. "onresize": function () { }
  4659. }, {
  4660. closecallback: function () { }
  4661. }, { "style": { "height": "36px" } }).form; //创建窗体
  4662. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4663. break;
  4664. case "hanClass":
  4665. _formdiv = new U.UF.UI.form(
  4666. "书法课堂",
  4667. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4668. "id": "hanClass",
  4669. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4670. "onresize": function () { }
  4671. }, {
  4672. closecallback: function () { }
  4673. }, { "style": { "height": "36px" } }).form; //创建窗体
  4674. _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); } }
  4675. break;
  4676. case "han":
  4677. _formdiv = new U.UF.UI.form(
  4678. "汉字宫",
  4679. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4680. "id": "han",
  4681. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4682. "onresize": function () { }
  4683. }, {
  4684. closecallback: function () { }
  4685. }, { "style": { "height": "36px" } }).form; //创建窗体
  4686. _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); } }
  4687. break;
  4688. case "projectGM": //课程管理
  4689. _formdiv = new U.UF.UI.form(
  4690. "课程管理",
  4691. $$("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 }), {
  4692. "id": "projectGM",
  4693. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4694. "onresize": function () { }
  4695. }, {
  4696. closecallback: function () { }
  4697. }, { "style": { "height": "36px" } }).form; //创建窗体
  4698. _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); } }
  4699. break;
  4700. case "studyGM": //课程中心
  4701. _formdiv = new U.UF.UI.form(
  4702. "课程中心",
  4703. $$("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
  4704. "id": "study",
  4705. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4706. "onresize": function () { }
  4707. }, {
  4708. closecallback: function () { }
  4709. }, { "style": { "height": "36px" } }).form; //创建窗体
  4710. _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); } }
  4711. break;
  4712. // studentGM
  4713. case "studentGM": //学生管理
  4714. _formdiv = new U.UF.UI.form(
  4715. "学生管理",
  4716. $$("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 }), {
  4717. "id": "studentGM",
  4718. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4719. "onresize": function () { }
  4720. }, {
  4721. closecallback: function () { }
  4722. }, { "style": { "height": "36px" } }).form; //创建窗体
  4723. _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); } }
  4724. break;
  4725. case "evaluateGM": //学生评价
  4726. _formdiv = new U.UF.UI.form(
  4727. "学生评价",
  4728. $$("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 }), {
  4729. "id": "evaluateGM",
  4730. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4731. "onresize": function () { }
  4732. }, {
  4733. closecallback: function () { }
  4734. }, { "style": { "height": "36px" } }).form; //创建窗体
  4735. _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); } }
  4736. break;
  4737. // classGM
  4738. case "classGM": //班级管理
  4739. _formdiv = new U.UF.UI.form(
  4740. "班级管理",
  4741. $$("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 }), {
  4742. "id": "classGM",
  4743. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4744. "onresize": function () { }
  4745. }, {
  4746. closecallback: function () { }
  4747. }, { "style": { "height": "36px" } }).form; //创建窗体
  4748. _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); } }
  4749. break;
  4750. // dataGM
  4751. case "dataGM":
  4752. _formdiv = new U.UF.UI.form(
  4753. "我的资料",
  4754. $$("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 }), {
  4755. "id": "dataGM",
  4756. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4757. "onresize": function () { }
  4758. }, {
  4759. closecallback: function () { }
  4760. }, { "style": { "height": "36px" } }).form; //创建窗体
  4761. _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); } }
  4762. break;
  4763. // caseGM
  4764. case "caseGM": //课程进展
  4765. _formdiv = new U.UF.UI.form(
  4766. "课程进展",
  4767. $$("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 }), {
  4768. "id": "caseGM",
  4769. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4770. "onresize": function () { }
  4771. }, {
  4772. closecallback: function () { }
  4773. }, { "style": { "height": "36px" } }).form; //创建窗体
  4774. _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); } }
  4775. break;
  4776. // meterialGM
  4777. case "meterialGM": //素材库
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  4781. "id": "meterialGM",
  4782. "style": { "width": "90%", "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/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4788. break;
  4789. // evaluateSGM
  4790. case "evaluateSGM": //我的评价
  4791. _formdiv = new U.UF.UI.form(
  4792. "我的评价",
  4793. $$("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 }), {
  4794. "id": "evaluateSGM",
  4795. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4796. "onresize": function () { }
  4797. }, {
  4798. closecallback: function () { }
  4799. }, { "style": { "height": "36px" } }).form; //创建窗体
  4800. _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); } }
  4801. break;
  4802. case "jupyter": //jupyter
  4803. _formdiv = new U.UF.UI.form(
  4804. "jupyter",
  4805. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4806. "id": "jupyter",
  4807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4808. "onresize": function () { }
  4809. }, {
  4810. closecallback: function () { }
  4811. }, { "style": { "height": "36px" } }).form; //创建窗体
  4812. _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); } }
  4813. break;
  4814. case "number": //数字实验室
  4815. _formdiv = new U.UF.UI.form(
  4816. "数字实验室",
  4817. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  4818. "id": "number",
  4819. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4820. "onresize": function () { }
  4821. }, {
  4822. closecallback: function () { }
  4823. }, { "style": { "height": "36px" } }).form; //创建窗体
  4824. _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); } }
  4825. break;
  4826. case "studentCourse": //项目管理 学生
  4827. _formdiv = new U.UF.UI.form(
  4828. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4829. $$("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 }), {
  4830. "id": "studentCourse",
  4831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4832. "onresize": function () { }
  4833. }, {
  4834. closecallback: function () { }
  4835. }, { "style": { "height": "36px" } }).form; //创建窗体
  4836. _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); } }
  4837. break;
  4838. case "studentCourseS": //项目管理 老师
  4839. _formdiv = new U.UF.UI.form(
  4840. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4841. $$("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 }), {
  4842. "id": "studentCourseS",
  4843. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4844. "onresize": function () { }
  4845. }, {
  4846. closecallback: function () { }
  4847. }, { "style": { "height": "36px" } }).form; //创建窗体
  4848. _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); } }
  4849. break;
  4850. case "studentIndex": //项目中心
  4851. _formdiv = new U.UF.UI.form(
  4852. "项目中心",
  4853. $$("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 }), {
  4854. "id": "studentIndex",
  4855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4856. "onresize": function () { }
  4857. }, {
  4858. closecallback: function () { }
  4859. }, { "style": { "height": "36px" } }).form; //创建窗体
  4860. _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); } }
  4861. break;
  4862. case "CaseDesignS":
  4863. _formdiv = new U.UF.UI.form(
  4864. "项目进展",
  4865. $$("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 }), {
  4866. "id": "case",
  4867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4868. "onresize": function () { }
  4869. }, {
  4870. closecallback: function () { }
  4871. }, { "style": { "height": "36px" } }).form; //创建窗体
  4872. _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); } }
  4873. break;
  4874. case "tcStudent": //腾讯学生管理
  4875. _formdiv = new U.UF.UI.form(
  4876. "学生管理",
  4877. $$("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 }), {
  4878. "id": "tcStudent",
  4879. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4880. "onresize": function () { }
  4881. }, {
  4882. closecallback: function () { }
  4883. }, { "style": { "height": "36px" } }).form; //创建窗体
  4884. _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); } }
  4885. break;
  4886. case "tcSchool": //腾讯学校管理
  4887. _formdiv = new U.UF.UI.form(
  4888. "学校管理",
  4889. $$("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 }), {
  4890. "id": "tcSchool",
  4891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4892. "onresize": function () { }
  4893. }, {
  4894. closecallback: function () { }
  4895. }, { "style": { "height": "36px" } }).form; //创建窗体
  4896. _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); } }
  4897. break;
  4898. case "tcTeacher": //腾讯学校管理
  4899. _formdiv = new U.UF.UI.form(
  4900. "教师管理",
  4901. $$("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 }), {
  4902. "id": "tcTeacher",
  4903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4904. "onresize": function () { }
  4905. }, {
  4906. closecallback: function () { }
  4907. }, { "style": { "height": "36px" } }).form; //创建窗体
  4908. _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); } }
  4909. break;
  4910. case "tcData": //腾讯我的资料
  4911. _formdiv = new U.UF.UI.form(
  4912. "我的资料",
  4913. $$("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 }), {
  4914. "id": "tcData",
  4915. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4916. "onresize": function () { }
  4917. }, {
  4918. closecallback: function () { }
  4919. }, { "style": { "height": "36px" } }).form; //创建窗体
  4920. _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); } }
  4921. break;
  4922. case "tcNotice": //腾讯消息通知
  4923. _formdiv = new U.UF.UI.form(
  4924. "消息通知",
  4925. $$("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 }), {
  4926. "id": "tcNotice",
  4927. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4928. "onresize": function () { }
  4929. }, {
  4930. closecallback: function () { }
  4931. }, { "style": { "height": "36px" } }).form; //创建窗体
  4932. _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); } }
  4933. break;
  4934. case "myReport": //好友打开
  4935. _formdiv = new U.UF.UI.form(
  4936. "我的评价",
  4937. $$("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 }), {
  4938. "id": "myReport",
  4939. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4940. "onresize": function () { }
  4941. }, {
  4942. closecallback: function () { }
  4943. }, { "style": { "height": "36px" } }).form; //创建窗体
  4944. _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); } }
  4945. break;
  4946. case "learnAna": //好友打开
  4947. _formdiv = new U.UF.UI.form(
  4948. "学习分析",
  4949. $$("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 }), {
  4950. "id": "learnAna",
  4951. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4952. "onresize": function () { }
  4953. }, {
  4954. closecallback: function () { }
  4955. }, { "style": { "height": "36px" } }).form; //创建窗体
  4956. _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); } }
  4957. break;
  4958. case "AIChat": //AI共创
  4959. _formdiv = new U.UF.UI.form(
  4960. "AI共创",
  4961. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4962. "id": "AIChat",
  4963. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4964. "onresize": function () { }
  4965. }, {
  4966. istop: true,
  4967. closecallback: function () { $("#aichat_icon").remove(); },
  4968. narrowcallback: function () {
  4969. if (!$("#aichat_icon")[0]) {
  4970. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4971. }
  4972. },
  4973. }, { "style": { "height": "36px" } }).form; //创建窗体
  4974. _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); } }
  4975. break;
  4976. case "ainew": //AI共创
  4977. _formdiv = new U.UF.UI.form(
  4978. "AI协同",
  4979. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4980. "id": "ainew",
  4981. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4982. "onresize": function () { }
  4983. }, {
  4984. closecallback: function () { }
  4985. }, { "style": { "height": "36px" } }).form; //创建窗体
  4986. _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); } }
  4987. break;
  4988. case "gpt4": //gpt4
  4989. _formdiv = new U.UF.UI.form(
  4990. "AI助手",
  4991. $$("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 }), {
  4992. "id": "gpt4",
  4993. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4994. "onresize": function () { }
  4995. }, {
  4996. closecallback: function () { }
  4997. }, { "style": { "height": "36px" } }).form; //创建窗体
  4998. _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); } }
  4999. break;
  5000. case "aigpt": //gpt4
  5001. _formdiv = new U.UF.UI.form(
  5002. "AI助手+",
  5003. $$("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 }), {
  5004. "id": "aigpt",
  5005. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5006. "onresize": function () { }
  5007. }, {
  5008. closecallback: function () { }
  5009. }, { "style": { "height": "36px" } }).form; //创建窗体
  5010. _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); } }
  5011. break;
  5012. case "futureClass": //AI共创
  5013. _formdiv = new U.UF.UI.form(
  5014. "协同建构",
  5015. $$("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
  5016. "id": "synergyCourse",
  5017. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5018. "onresize": function () { }
  5019. }, {
  5020. closecallback: function () {
  5021. $("iframe", _formdiv)[0].contentWindow.loginout();
  5022. }
  5023. }, { "style": { "height": "36px" } }).form; //创建窗体
  5024. _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); } }
  5025. break;
  5026. case "aiagent": //ai agent
  5027. _formdiv = new U.UF.UI.form(
  5028. "AI Agent",
  5029. $$("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" }), {
  5030. "id": "AIAgent",
  5031. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5032. "onresize": function () { }
  5033. }, {
  5034. closecallback: function () { }
  5035. }, { "style": { "height": "36px" } }).form; //创建窗体
  5036. _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); } }
  5037. break;
  5038. case "dataBoard": //数据看板
  5039. _formdiv = new U.UF.UI.form(
  5040. "数据看板",
  5041. $$("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 }), {
  5042. "id": "dataBoard",
  5043. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5044. "onresize": function () { }
  5045. }, {
  5046. closecallback: function () { }
  5047. }, { "style": { "height": "36px" } }).form; //创建窗体
  5048. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5049. break;
  5050. case "dataBoardSies": //数据融合
  5051. _formdiv = new U.UF.UI.form(
  5052. "数据融合",
  5053. $$("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 }), {
  5054. "id": "dataBoardSies",
  5055. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5056. "onresize": function () { }
  5057. }, {
  5058. closecallback: function () { }
  5059. }, { "style": { "height": "36px" } }).form; //创建窗体
  5060. _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); } }
  5061. break;
  5062. case "dataBoardNew": //数据看板
  5063. _formdiv = new U.UF.UI.form(
  5064. "综合看板",
  5065. $$("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 }), {
  5066. "id": "dataBoardNew",
  5067. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5068. "onresize": function () { }
  5069. }, {
  5070. closecallback: function () { }
  5071. }, { "style": { "height": "36px" } }).form; //创建窗体
  5072. _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); } }
  5073. break;
  5074. case "dataBoardTest": //数据看板
  5075. _formdiv = new U.UF.UI.form(
  5076. "评测看板",
  5077. $$("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 }), {
  5078. "id": "dataBoardTest",
  5079. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5080. "onresize": function () { }
  5081. }, {
  5082. closecallback: function () { }
  5083. }, { "style": { "height": "36px" } }).form; //创建窗体
  5084. _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); } }
  5085. break;
  5086. case "AIAnalyse": //AI共创
  5087. _formdiv = new U.UF.UI.form(
  5088. "AI分析",
  5089. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5090. "id": "AIAnalyse",
  5091. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5092. "onresize": function () { }
  5093. }, {
  5094. closecallback: function () { }
  5095. }, { "style": { "height": "36px" } }).form; //创建窗体
  5096. _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); } }
  5097. break;
  5098. case "studioCourse": //AI共创
  5099. _formdiv = new U.UF.UI.form(
  5100. "工作管理",
  5101. $$("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 }), {
  5102. "id": "studioCourse",
  5103. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. _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); } }
  5109. break;
  5110. case "studioIndex": //AI共创
  5111. _formdiv = new U.UF.UI.form(
  5112. "工作中心",
  5113. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  5114. "id": "studioIndex",
  5115. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5116. "onresize": function () { }
  5117. }, {
  5118. closecallback: function () { }
  5119. }, { "style": { "height": "36px" } }).form; //创建窗体
  5120. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5121. break;
  5122. case "source":
  5123. _formdiv = new U.UF.UI.form(
  5124. "教学资源",
  5125. $$("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 }), {
  5126. "id": "source",
  5127. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5128. "onresize": function () { }
  5129. }, {
  5130. closecallback: function () { }
  5131. }, { "style": { "height": "36px" } }).form; //创建窗体
  5132. _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); } }
  5133. break;
  5134. case "testTeacher":
  5135. _formdiv = new U.UF.UI.form(
  5136. "教师管理",
  5137. $$("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 }), {
  5138. "id": "testTeacher",
  5139. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. case "testStudent":
  5147. _formdiv = new U.UF.UI.form(
  5148. "教师中心",
  5149. $$("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 }), {
  5150. "id": "testStudent",
  5151. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5152. "onresize": function () { }
  5153. }, {
  5154. closecallback: function () { }
  5155. }, { "style": { "height": "36px" } }).form; //创建窗体
  5156. _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); } }
  5157. break;
  5158. case "testTeacherSies":
  5159. _formdiv = new U.UF.UI.form(
  5160. "教师管理",
  5161. $$("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 }), {
  5162. "id": "testTeacherSies",
  5163. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. _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); } }
  5169. break;
  5170. case "testStudentSies":
  5171. _formdiv = new U.UF.UI.form(
  5172. "教师中心",
  5173. $$("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 }), {
  5174. "id": "testStudentSies",
  5175. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. case "ytpbl": //消息通知
  5183. _formdiv = new U.UF.UI.form(
  5184. "案例征集",
  5185. $$("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 }), {
  5186. "id": "ytpbl",
  5187. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5188. "onresize": function () { }
  5189. }, {
  5190. closecallback: function () { }
  5191. }, { "style": { "height": "36px" } }).form; //创建窗体
  5192. _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); } }
  5193. // 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");
  5194. break;
  5195. case "aiCourseResource": //人工智能窗体
  5196. _formdiv = new U.UF.UI.form(
  5197. false,
  5198. $$("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 }), {
  5199. "id": "aiCourseResource",
  5200. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5201. "onresize": function () { },
  5202. "isdrag": false,
  5203. }, {
  5204. closecallback: function () { }
  5205. }, { "style": { "height": "36px" } }).form; //创建窗体
  5206. _taskbar = ''
  5207. break;
  5208. case "szdjgCocooroboX": //图形化编程
  5209. _formdiv = new U.UF.UI.form(
  5210. "图形化编程",
  5211. $$("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" }), {
  5212. "id": "szdjgCocooroboX",
  5213. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5214. "onresize": function () { }
  5215. }, {
  5216. closecallback: function () { }
  5217. }, { "style": { "height": "36px" } }).form; //创建窗体
  5218. _taskbar = ''
  5219. break;
  5220. case "szdjgPython": //python编程
  5221. _formdiv = new U.UF.UI.form(
  5222. "Python编程",
  5223. $$("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" }), {
  5224. "id": "szdjgPython",
  5225. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5226. "onresize": function () { }
  5227. }, {
  5228. closecallback: function () { }
  5229. }, { "style": { "height": "36px" } }).form; //创建窗体
  5230. _taskbar = ''
  5231. break;
  5232. case "Record":
  5233. _formdiv = new U.UF.UI.form(
  5234. "观察记录",
  5235. $$("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 }), {
  5236. "id": "Record",
  5237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5238. "onresize": function () { }
  5239. }, {
  5240. closecallback: function () { }
  5241. }, { "style": { "height": "36px" } }).form; //创建窗体
  5242. _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); } }
  5243. break;
  5244. case "aigptCourse":
  5245. _formdiv = new U.UF.UI.form(
  5246. "AI智能体",
  5247. $$("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' }), {
  5248. "id": "aigptCourse",
  5249. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5250. "onresize": function () { }
  5251. }, {
  5252. closecallback: function () { }
  5253. }, { "style": { "height": "36px" } }).form; //创建窗体
  5254. _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); } }
  5255. break;
  5256. case "classroomObservation":
  5257. _formdiv = new U.UF.UI.form(
  5258. "课堂观察",
  5259. $$("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 }), {
  5260. "id": "classroomObservation",
  5261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5262. "onresize": function () { }
  5263. }, {
  5264. closecallback: function () { }
  5265. }, { "style": { "height": "36px" } }).form; //创建窗体
  5266. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5267. break;
  5268. }
  5269. //U.MD.D.I.openClick(str);
  5270. //如果有任务栏信息
  5271. if (_taskbar) {
  5272. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5273. }
  5274. }
  5275. // U.MD.D.I.openClick = function(str){
  5276. // var click = '';
  5277. // switch(str){
  5278. // case 'friend':
  5279. // click = '我的好友';
  5280. // break;
  5281. // case 'domain':
  5282. // click = '域名管理';
  5283. // break;
  5284. // case 'disk':
  5285. // click = '我的云盘';
  5286. // break;
  5287. // case 'word':
  5288. // click = 'Word';
  5289. // break;
  5290. // case 'excel':
  5291. // click = 'Execl';
  5292. // break;
  5293. // case 'txt':
  5294. // click = '文本文件';
  5295. // break;
  5296. // case 'lookupFriend':
  5297. // click = '查找好友';
  5298. // break;
  5299. // case 'ftp':
  5300. // click = 'FTP';
  5301. // break;
  5302. // case 'group':
  5303. // click = '群组';
  5304. // break;
  5305. // case 'set':
  5306. // click = '我的设置';
  5307. // break;
  5308. // case 'systemSet':
  5309. // click = '系统设置';
  5310. // break;
  5311. // case 'boomYun':
  5312. // click = '互联办公';
  5313. // break;
  5314. // case 'xz':
  5315. // click = '云端下载';
  5316. // break;
  5317. // case 'client':
  5318. // click = '有思浏览器';
  5319. // break;
  5320. // case 'backEndProgramming':
  5321. // click = '在线后台编程';
  5322. // break;
  5323. // case 'frontEndProgramming':
  5324. // click = '在线前端编程';
  5325. // break;
  5326. // default: break;
  5327. // }
  5328. // if(U.MD.D.I.Ip && click){
  5329. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5330. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5331. // })
  5332. // }
  5333. // }
  5334. /**
  5335. *函数作用:ajax简易函数,使用post格式
  5336. *@param url {data} 后台地址
  5337. *@param data {data} 参数json
  5338. *@param fn {data} 回调函数
  5339. *
  5340. */
  5341. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5342. // var xhr = new XMLHttpRequest();
  5343. // xhr.open("GET",url,true);
  5344. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5345. // xhr.onreadystatechange = function(){
  5346. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5347. // fn.call(this,xhr.responseText);
  5348. // }
  5349. // };
  5350. // xhr.send();
  5351. // }
  5352. /*判断是否是内网IP*/
  5353. // U.MD.D.I.isInnerIPFn = function(str){
  5354. // var curPageUrl = str;
  5355. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5356. // curPageUrl =curPageUrl.replace(reg1,'');
  5357. // // console.log('curPageUrl-1 '+curPageUrl);
  5358. // var reg2 = /\:+/g;//替换冒号为一点
  5359. // curPageUrl =curPageUrl.replace(reg2,'.');
  5360. // // console.log('curPageUrl-2 '+curPageUrl);
  5361. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5362. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5363. // if(curPageUrl[2] != '16'){
  5364. // return ipAddress;
  5365. // }else{
  5366. // return false;
  5367. // }
  5368. // }
  5369. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5370. // //compatibility for firefox and chrome
  5371. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5372. // var pc = new myPeerConnection({
  5373. // iceServers: []
  5374. // }),
  5375. // noop = function() {},
  5376. // localIPs = {},
  5377. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5378. // key;
  5379. // function iterateIP(ip) {
  5380. // if (!localIPs[ip]) onNewIP(ip);
  5381. // localIPs[ip] = true;
  5382. // }
  5383. // //create a bogus data channel
  5384. // pc.createDataChannel("");
  5385. // // create offer and set local description
  5386. // pc.createOffer().then(function(sdp) {
  5387. // sdp.sdp.split('\n').forEach(function(line) {
  5388. // if (line.indexOf('candidate') < 0) return;
  5389. // line.match(ipRegex).forEach(iterateIP);
  5390. // });
  5391. // pc.setLocalDescription(sdp, noop, noop);
  5392. // }).catch(function(reason) {
  5393. // // An error occurred, so handle the failure to connect
  5394. // });
  5395. // //sten for candidate events
  5396. // pc.onicecandidate = function(ice) {
  5397. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5398. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5399. // };
  5400. // }
  5401. // U.MD.D.I.getUserIpBool = function(callback){
  5402. // U.MD.D.I.getUserIP(function(ip){
  5403. // alert("Got IP! :" + ip);
  5404. // });
  5405. //}
  5406. //#endregion
  5407. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5408. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5409. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5410. _userinfo = US.userInfo, //登录用户信息
  5411. _userid = US.userInfo.userid //登录用户id
  5412. let _iframe;
  5413. let _cid = cid,
  5414. _stage = stage,
  5415. _task = task,
  5416. _tool = tool;
  5417. var _jie = $$("div", {
  5418. "style": {
  5419. "position": "absolute",
  5420. "bottom": "50px",
  5421. "right": "50px",
  5422. "zIndex": "9999",
  5423. "backgroundColor": "#2268bc",
  5424. "color": "#fff",
  5425. "padding": "12px 20px",
  5426. "cursor": "pointer",
  5427. "borderRadius": "4px",
  5428. },
  5429. "innerHTML": "提交作业"
  5430. })
  5431. let aTool = ''
  5432. let _loading = document.createElement('div')
  5433. _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;"
  5434. // _loading.id = "";
  5435. let _lchild = document.createElement('div')
  5436. let _limg = document.createElement('img')
  5437. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5438. _limg.style = "width: 26px;margin-right: 10px;"
  5439. _lchild.appendChild(_limg)
  5440. let _lspan = document.createElement('span')
  5441. _lspan.innerHTML = "上传中..."
  5442. _lchild.appendChild(_lspan)
  5443. _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%);"
  5444. _loading.appendChild(_lchild)
  5445. var _box = $$('div', {
  5446. "style": {
  5447. "position": "relative",
  5448. "width": "100%",
  5449. "height": "100%",
  5450. },
  5451. })
  5452. _box.appendChild(_loading)
  5453. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5454. switch (str) {
  5455. case "whiteboard":
  5456. aTool = 1;
  5457. _iframe = $$("iframe", {
  5458. "frameborder": "no",
  5459. "border": "0",
  5460. "scrolling ": "no",
  5461. "style": {
  5462. "cssText": "border:0;width:100%;height:100%"
  5463. },
  5464. "src": "https://beta.iwb.cocorobo.cn/"
  5465. })
  5466. _box.appendChild(_iframe);
  5467. _box.appendChild(_jie);
  5468. _formdiv = new U.UF.UI.form(
  5469. "电子白板",
  5470. _box, {
  5471. "id": "whiteboard" + cid + stage + task + tool,
  5472. "style": {
  5473. "width": "90%",
  5474. "height": "90%",
  5475. "overflow": 'hidden'
  5476. },
  5477. "onresize": function () { }
  5478. }, {
  5479. closecallback: function () { }
  5480. }, {
  5481. "style": {
  5482. "height": "36px"
  5483. }
  5484. }).form; //创建窗体
  5485. _taskbar = {
  5486. "id": str + _formdiv.id,
  5487. "style": {
  5488. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5489. },
  5490. "name": "电子白板",
  5491. "forms": _formdiv,
  5492. "click": function () {
  5493. U.MD.D.I.openApplication(str, obj, info);
  5494. }
  5495. }
  5496. break;
  5497. case "mind":
  5498. aTool = 3;
  5499. _iframe = $$("iframe", {
  5500. "frameborder": "no",
  5501. "border": "0",
  5502. "scrolling ": "no",
  5503. "style": {
  5504. "cssText": "border:0;width:100%;height:100%"
  5505. },
  5506. "src": "/kityminder-editor/dist/index.html"
  5507. })
  5508. _box.appendChild(_iframe);
  5509. _box.appendChild(_jie);
  5510. _formdiv = new U.UF.UI.form(
  5511. "思维导图",
  5512. _box, { //"/jsmind/example/demo.html"
  5513. "id": "mind" + cid + stage + task + tool,
  5514. "style": {
  5515. "width": "90%",
  5516. "height": "90%",
  5517. "overflow": 'hidden'
  5518. },
  5519. "onresize": function () { }
  5520. }, {
  5521. closecallback: function () { }
  5522. }, {
  5523. "style": {
  5524. "height": "36px"
  5525. }
  5526. }).form; //创建窗体
  5527. _taskbar = {
  5528. "id": str + _formdiv.id,
  5529. "style": {
  5530. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5531. },
  5532. "name": "思维导图",
  5533. "forms": _formdiv,
  5534. "click": function () {
  5535. U.MD.D.I.openApplication(str, obj, info);
  5536. }
  5537. }
  5538. break;
  5539. case "MindMap":
  5540. aTool = 3;
  5541. _iframe = $$("iframe", {
  5542. "frameborder": "no",
  5543. "border": "0",
  5544. "scrolling ": "no",
  5545. "style": {
  5546. "cssText": "border:0;width:100%;height:100%"
  5547. },
  5548. "src": "//cloud.cocorobo.cn/mind/"
  5549. })
  5550. _box.appendChild(_iframe);
  5551. _box.appendChild(_jie);
  5552. _formdiv = new U.UF.UI.form(
  5553. "思维导图",
  5554. _box, { //"/jsmind/example/demo.html"
  5555. "id": "mind" + cid + stage + task + tool,
  5556. "style": {
  5557. "width": "90%",
  5558. "height": "90%",
  5559. "overflow": 'hidden'
  5560. },
  5561. "onresize": function () { }
  5562. }, {
  5563. closecallback: function () { }
  5564. }, {
  5565. "style": {
  5566. "height": "36px"
  5567. }
  5568. }).form; //创建窗体
  5569. _taskbar = {
  5570. "id": str + _formdiv.id,
  5571. "style": {
  5572. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5573. },
  5574. "name": "思维导图",
  5575. "forms": _formdiv,
  5576. "click": function () {
  5577. U.MD.D.I.openApplication(str, obj, info);
  5578. }
  5579. }
  5580. break;
  5581. case "doc":
  5582. aTool = 6;
  5583. _iframe = $$("iframe", {
  5584. "frameborder": "no",
  5585. "border": "0",
  5586. "scrolling ": "no",
  5587. "style": {
  5588. "cssText": "border:0;width:100%;height:100%"
  5589. },
  5590. "src": "/Office/Word/WordEditArea.htm"
  5591. })
  5592. _box.appendChild(_iframe);
  5593. _box.appendChild(_jie);
  5594. _formdiv = new U.UF.UI.form(
  5595. "协同文档",
  5596. _box, {
  5597. "id": "doc" + cid + stage + task + tool,
  5598. "style": {
  5599. "width": "90%",
  5600. "height": "90%",
  5601. "overflow": 'hidden'
  5602. },
  5603. "onresize": function () { }
  5604. }, {
  5605. closecallback: function () { }
  5606. }, {
  5607. "style": {
  5608. "height": "36px"
  5609. }
  5610. }).form; //创建窗体
  5611. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5612. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5613. })
  5614. _taskbar = {
  5615. "id": str + _formdiv.id,
  5616. "style": {
  5617. "backgroundImage": "url(/img/icon/doc.png)"
  5618. },
  5619. "name": "协同文档",
  5620. "forms": _formdiv,
  5621. "click": function () {
  5622. U.MD.D.I.openApplication(str, obj, info);
  5623. }
  5624. }
  5625. break;
  5626. case "mindNetwork": //好友打开
  5627. aTool = 7;
  5628. _iframe = $$("iframe", {
  5629. "webkitallowfullscreen": "",
  5630. "mozallowfullscreen": "",
  5631. "allowfullscreen": "",
  5632. "frameborder": "no",
  5633. "border": "0",
  5634. "scrolling ": "no",
  5635. "style": {
  5636. "cssText": "border:0; width:100%; height:100%;"
  5637. },
  5638. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5639. })
  5640. _box.appendChild(_iframe);
  5641. _box.appendChild(_jie);
  5642. _formdiv = new U.UF.UI.form(
  5643. "思维网格",
  5644. _box, {
  5645. "id": "mindNetwork" + cid + stage + task + tool,
  5646. "style": {
  5647. "width": "90%",
  5648. "height": "90%",
  5649. "overflow": 'hidden'
  5650. },
  5651. "onresize": function () { }
  5652. }, {
  5653. closecallback: function () { }
  5654. }, {
  5655. "style": {
  5656. "height": "36px"
  5657. }
  5658. }).form; //创建窗体
  5659. _taskbar = {
  5660. "id": str + _formdiv.id,
  5661. "style": {
  5662. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5663. },
  5664. "name": "思维网格",
  5665. "forms": _formdiv,
  5666. "click": function () {
  5667. U.MD.D.I.openApplication(str, obj, info);
  5668. }
  5669. }
  5670. break;
  5671. case "courseDesign":
  5672. _iframe = $$("iframe", {
  5673. "webkitallowfullscreen": "",
  5674. "mozallowfullscreen": "",
  5675. "allowfullscreen": "",
  5676. "frameborder": "no",
  5677. "border": "0",
  5678. "scrolling ": "no",
  5679. "style": {
  5680. "cssText": "border:0; width:100%; height:100%;"
  5681. },
  5682. "src": "/course-design-vue"
  5683. })
  5684. _box.appendChild(_iframe);
  5685. _box.appendChild(_jie);
  5686. _formdiv = new U.UF.UI.form(
  5687. "项目设计",
  5688. _box, {
  5689. "id": "courseDesign" + cid + stage + task + tool,
  5690. "style": {
  5691. "width": "90%",
  5692. "height": "90%",
  5693. "overflow": 'hidden'
  5694. },
  5695. "onresize": function () { }
  5696. }, {
  5697. closecallback: function () { }
  5698. }, {
  5699. "style": {
  5700. "height": "36px"
  5701. }
  5702. }).form; //创建窗体
  5703. _taskbar = {
  5704. "id": str + _formdiv.id,
  5705. "style": {
  5706. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5707. },
  5708. "name": "项目设计",
  5709. "forms": _formdiv,
  5710. "click": function () {
  5711. U.MD.D.I.openApplication(str, obj, info);
  5712. }
  5713. }
  5714. break;
  5715. }
  5716. const script1 = document.createElement("script");
  5717. script1.type = "text/javascript";
  5718. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5719. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5720. const script2 = document.createElement("script");
  5721. script2.type = "text/javascript";
  5722. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5723. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5724. const script3 = document.createElement("script");
  5725. script3.type = "text/javascript";
  5726. script3.charset = "UTF-8";
  5727. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5728. const script4 = document.createElement("script");
  5729. script4.type = "text/javascript";
  5730. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5731. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5732. if (_iframe) {
  5733. if (str == 'doc') {
  5734. _iframe = _formdiv.querySelector('iframe')
  5735. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5736. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5737. _iframe.contentWindow.document.body.appendChild(script1);
  5738. _iframe.contentWindow.document.body.appendChild(script2);
  5739. // _iframe.contentWindow.document.body.appendChild(script3);
  5740. _iframe.contentWindow.document.body.appendChild(script4);
  5741. })
  5742. if (onloadListener) {
  5743. _iframe.contentDocument.location.reload()
  5744. } else {
  5745. _iframe.contentDocument.location.reload()
  5746. }
  5747. } else if (str == 'courseDesign') {
  5748. U.UF.DL.iframeLoad(_iframe, function () {
  5749. // _iframe.contentWindow.U.MD.O.W.load();
  5750. // _iframe.contentWindow.document.body.appendChild(script1);
  5751. _iframe.contentWindow.document.body.appendChild(script2);
  5752. _iframe.contentWindow.document.body.appendChild(script4);
  5753. })
  5754. } else if (str == 'mind') {
  5755. _iframe = _formdiv.querySelector('iframe')
  5756. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5757. //
  5758. _iframe.contentWindow.document.body.appendChild(script1);
  5759. _iframe.contentWindow.document.body.appendChild(script2);
  5760. _iframe.contentWindow.document.body.appendChild(script4);
  5761. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5762. })
  5763. if (onloadListener) {
  5764. _iframe.contentDocument.location.reload()
  5765. } else {
  5766. _iframe.contentDocument.location.reload()
  5767. }
  5768. } else if (str == 'whiteboard') {
  5769. _iframe = _formdiv.querySelector('iframe')
  5770. let onloadListener = _iframe.onload = () => {
  5771. _iframe.contentWindow.document.body.appendChild(script1);
  5772. _iframe.contentWindow.document.body.appendChild(script2);
  5773. _iframe.contentWindow.document.body.appendChild(script4);
  5774. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5775. };
  5776. if (onloadListener) {
  5777. _iframe.contentDocument.location.reload()
  5778. } else {
  5779. _iframe.contentDocument.location.reload()
  5780. }
  5781. } else {
  5782. _iframe.onload = () => {
  5783. _iframe.contentWindow.document.body.appendChild(script1);
  5784. _iframe.contentWindow.document.body.appendChild(script2);
  5785. // _iframe.contentWindow.document.body.appendChild(script3);
  5786. _iframe.contentWindow.document.body.appendChild(script4);
  5787. };
  5788. }
  5789. _jie.onclick = async () => {
  5790. let text = ''
  5791. if (aTool == 1) {
  5792. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5793. } else if (aTool == 6) {
  5794. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5795. } else if (aTool == 3) {
  5796. text = await U.MD.D.I.getEditorContent(_iframe);
  5797. }
  5798. _loading.style.display = 'flex'
  5799. console.log(_loading);
  5800. var _ajs = _iframe.contentWindow.document.createElement("script");
  5801. _ajs.type = "text/javascript";
  5802. _ajs.innerHTML =
  5803. // 'console.log(' + _loading + ');\n' +
  5804. 'var _js = document.createElement("script");\n' +
  5805. '_js.type="text/javascript";\n' +
  5806. '_js.charset="UTF-8";\n' +
  5807. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5808. "_js.onload = function(){\n" +
  5809. ' var a = document.getElementsByTagName("img")\n' +
  5810. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5811. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5812. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5813. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5814. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5815. "beforeUpload_shishi(file," +
  5816. "'" +
  5817. _userid +
  5818. "'" +
  5819. ", " +
  5820. "'" +
  5821. _cid +
  5822. "'" +
  5823. ", " +
  5824. "'" +
  5825. _stage +
  5826. "'" +
  5827. ", " +
  5828. "'" +
  5829. _task +
  5830. "'" +
  5831. ", " +
  5832. "'" +
  5833. _tool +
  5834. "'" +
  5835. ", " +
  5836. "'" +
  5837. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5838. "'" +
  5839. ", " +
  5840. "'" +
  5841. aTool +
  5842. "'" +
  5843. ", " +
  5844. "`" +
  5845. text +
  5846. "`" +
  5847. ")\n" +
  5848. " });\n" +
  5849. "}\n" +
  5850. "document.head.appendChild(_js);\n";
  5851. _iframe.contentWindow.document.head.appendChild(_ajs);
  5852. }
  5853. }
  5854. //U.MD.D.I.openClick(str);
  5855. //如果有任务栏信息
  5856. // if (_taskbar) {
  5857. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5858. // }
  5859. }
  5860. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5861. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5862. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5863. _userinfo = US.userInfo, //登录用户信息
  5864. _userid = US.userInfo.userid //登录用户id
  5865. let _iframe;
  5866. let _cid = cid,
  5867. _stage = stage,
  5868. _task = task,
  5869. _tool = tool;
  5870. var _jie = $$("div", {
  5871. "style": {
  5872. "position": "absolute",
  5873. "bottom": "50px",
  5874. "right": "50px",
  5875. "zIndex": "9999",
  5876. "backgroundColor": "#2268bc",
  5877. "color": "#fff",
  5878. "padding": "12px 20px",
  5879. "cursor": "pointer",
  5880. "borderRadius": "4px",
  5881. },
  5882. "innerHTML": "提交作业"
  5883. })
  5884. let aTool = ''
  5885. let _loading = document.createElement('div')
  5886. _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;"
  5887. // _loading.id = "";
  5888. let _lchild = document.createElement('div')
  5889. let _limg = document.createElement('img')
  5890. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5891. _limg.style = "width: 26px;margin-right: 10px;"
  5892. _lchild.appendChild(_limg)
  5893. let _lspan = document.createElement('span')
  5894. _lspan.innerHTML = "上传中..."
  5895. _lchild.appendChild(_lspan)
  5896. _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%);"
  5897. _loading.appendChild(_lchild)
  5898. var _box = $$('div', {
  5899. "style": {
  5900. "position": "relative",
  5901. "width": "100%",
  5902. "height": "100%",
  5903. },
  5904. })
  5905. _box.appendChild(_loading)
  5906. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5907. switch (str) {
  5908. case "whiteboard":
  5909. aTool = 1;
  5910. _iframe = $$("iframe", {
  5911. "frameborder": "no",
  5912. "border": "0",
  5913. "scrolling ": "no",
  5914. "style": {
  5915. "cssText": "border:0;width:100%;height:100%"
  5916. },
  5917. "src": "https://beta.iwb.cocorobo.cn/"
  5918. })
  5919. _box.appendChild(_iframe);
  5920. _box.appendChild(_jie);
  5921. _formdiv = new U.UF.UI.form(
  5922. "电子白板",
  5923. _box, {
  5924. "id": "whiteboard" + cid + stage + task + tool,
  5925. "style": {
  5926. "width": "90%",
  5927. "height": "90%",
  5928. "overflow": 'hidden'
  5929. },
  5930. "onresize": function () { }
  5931. }, {
  5932. closecallback: function () { }
  5933. }, {
  5934. "style": {
  5935. "height": "36px"
  5936. }
  5937. }).form; //创建窗体
  5938. _taskbar = {
  5939. "id": str + _formdiv.id,
  5940. "style": {
  5941. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5942. },
  5943. "name": "电子白板",
  5944. "forms": _formdiv,
  5945. "click": function () {
  5946. U.MD.D.I.openApplication(str, obj, info);
  5947. }
  5948. }
  5949. break;
  5950. case "mind":
  5951. aTool = 3;
  5952. _iframe = $$("iframe", {
  5953. "frameborder": "no",
  5954. "border": "0",
  5955. "scrolling ": "no",
  5956. "style": {
  5957. "cssText": "border:0;width:100%;height:100%"
  5958. },
  5959. "src": "/kityminder-editor/dist/index.html"
  5960. })
  5961. _box.appendChild(_iframe);
  5962. _box.appendChild(_jie);
  5963. _formdiv = new U.UF.UI.form(
  5964. "思维导图",
  5965. _box, { //"/jsmind/example/demo.html"
  5966. "id": "mind" + cid + stage + task + tool,
  5967. "style": {
  5968. "width": "90%",
  5969. "height": "90%",
  5970. "overflow": 'hidden'
  5971. },
  5972. "onresize": function () { }
  5973. }, {
  5974. closecallback: function () { }
  5975. }, {
  5976. "style": {
  5977. "height": "36px"
  5978. }
  5979. }).form; //创建窗体
  5980. _taskbar = {
  5981. "id": str + _formdiv.id,
  5982. "style": {
  5983. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5984. },
  5985. "name": "思维导图",
  5986. "forms": _formdiv,
  5987. "click": function () {
  5988. U.MD.D.I.openApplication(str, obj, info);
  5989. }
  5990. }
  5991. break;
  5992. case "MindMap":
  5993. aTool = 3;
  5994. _iframe = $$("iframe", {
  5995. "frameborder": "no",
  5996. "border": "0",
  5997. "scrolling ": "no",
  5998. "style": {
  5999. "cssText": "border:0;width:100%;height:100%"
  6000. },
  6001. "src": "//cloud.cocorobo.cn/mind/"
  6002. })
  6003. _box.appendChild(_iframe);
  6004. _box.appendChild(_jie);
  6005. _formdiv = new U.UF.UI.form(
  6006. "思维导图",
  6007. _box, { //"/jsmind/example/demo.html"
  6008. "id": "mind" + cid + stage + task + tool,
  6009. "style": {
  6010. "width": "90%",
  6011. "height": "90%",
  6012. "overflow": 'hidden'
  6013. },
  6014. "onresize": function () { }
  6015. }, {
  6016. closecallback: function () { }
  6017. }, {
  6018. "style": {
  6019. "height": "36px"
  6020. }
  6021. }).form; //创建窗体
  6022. _taskbar = {
  6023. "id": str + _formdiv.id,
  6024. "style": {
  6025. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6026. },
  6027. "name": "思维导图",
  6028. "forms": _formdiv,
  6029. "click": function () {
  6030. U.MD.D.I.openApplication(str, obj, info);
  6031. }
  6032. }
  6033. break;
  6034. case "doc":
  6035. aTool = 6;
  6036. _iframe = $$("iframe", {
  6037. "frameborder": "no",
  6038. "border": "0",
  6039. "scrolling ": "no",
  6040. "style": {
  6041. "cssText": "border:0;width:100%;height:100%"
  6042. },
  6043. "src": "/Office/Word/WordEditArea.htm"
  6044. })
  6045. _box.appendChild(_iframe);
  6046. _box.appendChild(_jie);
  6047. _formdiv = new U.UF.UI.form(
  6048. "协同文档",
  6049. _box, {
  6050. "id": "doc" + cid + stage + task + tool,
  6051. "style": {
  6052. "width": "90%",
  6053. "height": "90%",
  6054. "overflow": 'hidden'
  6055. },
  6056. "onresize": function () { }
  6057. }, {
  6058. closecallback: function () { }
  6059. }, {
  6060. "style": {
  6061. "height": "36px"
  6062. }
  6063. }).form; //创建窗体
  6064. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6065. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6066. })
  6067. _taskbar = {
  6068. "id": str + _formdiv.id,
  6069. "style": {
  6070. "backgroundImage": "url(/img/icon/doc.png)"
  6071. },
  6072. "name": "协同文档",
  6073. "forms": _formdiv,
  6074. "click": function () {
  6075. U.MD.D.I.openApplication(str, obj, info);
  6076. }
  6077. }
  6078. break;
  6079. case "mindNetwork": //好友打开
  6080. aTool = 7;
  6081. _iframe = $$("iframe", {
  6082. "webkitallowfullscreen": "",
  6083. "mozallowfullscreen": "",
  6084. "allowfullscreen": "",
  6085. "frameborder": "no",
  6086. "border": "0",
  6087. "scrolling ": "no",
  6088. "style": {
  6089. "cssText": "border:0; width:100%; height:100%;"
  6090. },
  6091. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6092. })
  6093. _box.appendChild(_iframe);
  6094. _box.appendChild(_jie);
  6095. _formdiv = new U.UF.UI.form(
  6096. "思维网格",
  6097. _box, {
  6098. "id": "mindNetwork" + cid + stage + task + tool,
  6099. "style": {
  6100. "width": "90%",
  6101. "height": "90%",
  6102. "overflow": 'hidden'
  6103. },
  6104. "onresize": function () { }
  6105. }, {
  6106. closecallback: function () { }
  6107. }, {
  6108. "style": {
  6109. "height": "36px"
  6110. }
  6111. }).form; //创建窗体
  6112. _taskbar = {
  6113. "id": str + _formdiv.id,
  6114. "style": {
  6115. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6116. },
  6117. "name": "思维网格",
  6118. "forms": _formdiv,
  6119. "click": function () {
  6120. U.MD.D.I.openApplication(str, obj, info);
  6121. }
  6122. }
  6123. break;
  6124. case "courseDesign":
  6125. _iframe = $$("iframe", {
  6126. "webkitallowfullscreen": "",
  6127. "mozallowfullscreen": "",
  6128. "allowfullscreen": "",
  6129. "frameborder": "no",
  6130. "border": "0",
  6131. "scrolling ": "no",
  6132. "style": {
  6133. "cssText": "border:0; width:100%; height:100%;"
  6134. },
  6135. "src": "/course-design-vue"
  6136. })
  6137. _box.appendChild(_iframe);
  6138. _box.appendChild(_jie);
  6139. _formdiv = new U.UF.UI.form(
  6140. "项目设计",
  6141. _box, {
  6142. "id": "courseDesign" + cid + stage + task + tool,
  6143. "style": {
  6144. "width": "90%",
  6145. "height": "90%",
  6146. "overflow": 'hidden'
  6147. },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, {
  6152. "style": {
  6153. "height": "36px"
  6154. }
  6155. }).form; //创建窗体
  6156. _taskbar = {
  6157. "id": str + _formdiv.id,
  6158. "style": {
  6159. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6160. },
  6161. "name": "项目设计",
  6162. "forms": _formdiv,
  6163. "click": function () {
  6164. U.MD.D.I.openApplication(str, obj, info);
  6165. }
  6166. }
  6167. break;
  6168. }
  6169. const script1 = document.createElement("script");
  6170. script1.type = "text/javascript";
  6171. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6172. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6173. const script2 = document.createElement("script");
  6174. script2.type = "text/javascript";
  6175. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6176. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6177. const script3 = document.createElement("script");
  6178. script3.type = "text/javascript";
  6179. script3.charset = "UTF-8";
  6180. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6181. const script4 = document.createElement("script");
  6182. script4.type = "text/javascript";
  6183. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6184. script4.src = window.origin + "/js/Common/jietu2E.js";
  6185. if (_iframe) {
  6186. if (str == 'doc') {
  6187. _iframe = _formdiv.querySelector('iframe')
  6188. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6189. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6190. _iframe.contentWindow.document.body.appendChild(script1);
  6191. _iframe.contentWindow.document.body.appendChild(script2);
  6192. // _iframe.contentWindow.document.body.appendChild(script3);
  6193. _iframe.contentWindow.document.body.appendChild(script4);
  6194. })
  6195. if (onloadListener) {
  6196. _iframe.contentDocument.location.reload()
  6197. } else {
  6198. _iframe.contentDocument.location.reload()
  6199. }
  6200. } else if (str == 'courseDesign') {
  6201. U.UF.DL.iframeLoad(_iframe, function () {
  6202. // _iframe.contentWindow.U.MD.O.W.load();
  6203. // _iframe.contentWindow.document.body.appendChild(script1);
  6204. _iframe.contentWindow.document.body.appendChild(script2);
  6205. _iframe.contentWindow.document.body.appendChild(script4);
  6206. })
  6207. } else if (str == 'mind') {
  6208. _iframe = _formdiv.querySelector('iframe')
  6209. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6210. //
  6211. _iframe.contentWindow.document.body.appendChild(script1);
  6212. _iframe.contentWindow.document.body.appendChild(script2);
  6213. _iframe.contentWindow.document.body.appendChild(script4);
  6214. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6215. })
  6216. if (onloadListener) {
  6217. _iframe.contentDocument.location.reload()
  6218. } else {
  6219. _iframe.contentDocument.location.reload()
  6220. }
  6221. } else if (str == 'whiteboard') {
  6222. _iframe = _formdiv.querySelector('iframe')
  6223. let onloadListener = _iframe.onload = () => {
  6224. _iframe.contentWindow.document.body.appendChild(script1);
  6225. _iframe.contentWindow.document.body.appendChild(script2);
  6226. _iframe.contentWindow.document.body.appendChild(script4);
  6227. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6228. };
  6229. if (onloadListener) {
  6230. _iframe.contentDocument.location.reload()
  6231. } else {
  6232. _iframe.contentDocument.location.reload()
  6233. }
  6234. } else {
  6235. _iframe.onload = () => {
  6236. _iframe.contentWindow.document.body.appendChild(script1);
  6237. _iframe.contentWindow.document.body.appendChild(script2);
  6238. // _iframe.contentWindow.document.body.appendChild(script3);
  6239. _iframe.contentWindow.document.body.appendChild(script4);
  6240. };
  6241. }
  6242. _jie.onclick = async () => {
  6243. let text = ''
  6244. if (aTool == 1) {
  6245. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6246. } else if (aTool == 6) {
  6247. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6248. } else if (aTool == 3) {
  6249. text = await U.MD.D.I.getEditorContent(_iframe);
  6250. }
  6251. _loading.style.display = 'flex'
  6252. console.log(_loading);
  6253. var _ajs = _iframe.contentWindow.document.createElement("script");
  6254. _ajs.type = "text/javascript";
  6255. _ajs.innerHTML =
  6256. // 'console.log(' + _loading + ');\n' +
  6257. 'var _js = document.createElement("script");\n' +
  6258. '_js.type="text/javascript";\n' +
  6259. '_js.charset="UTF-8";\n' +
  6260. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6261. "_js.onload = function(){\n" +
  6262. ' var a = document.getElementsByTagName("img")\n' +
  6263. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6264. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6265. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6266. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6267. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6268. "beforeUpload_shishi(file," +
  6269. "'" +
  6270. _userid +
  6271. "'" +
  6272. ", " +
  6273. "'" +
  6274. _cid +
  6275. "'" +
  6276. ", " +
  6277. "'" +
  6278. _stage +
  6279. "'" +
  6280. ", " +
  6281. "'" +
  6282. _task +
  6283. "'" +
  6284. ", " +
  6285. "'" +
  6286. _tool +
  6287. "'" +
  6288. ", " +
  6289. "'" +
  6290. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6291. "'" +
  6292. ", " +
  6293. "'" +
  6294. aTool +
  6295. "'" +
  6296. ", " +
  6297. "`" +
  6298. text +
  6299. "`" +
  6300. ")\n" +
  6301. " });\n" +
  6302. "}\n" +
  6303. "document.head.appendChild(_js);\n";
  6304. _iframe.contentWindow.document.head.appendChild(_ajs);
  6305. }
  6306. }
  6307. //U.MD.D.I.openClick(str);
  6308. //如果有任务栏信息
  6309. // if (_taskbar) {
  6310. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6311. // }
  6312. }
  6313. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6314. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6315. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6316. _userid = student.userid, //登录用户id
  6317. _username = student.student //用户名字
  6318. let _iframe;
  6319. let _cid = cid,
  6320. _stage = stage,
  6321. _task = task,
  6322. _tool = tool;
  6323. var _jie = $$("div", {
  6324. "style": {
  6325. "position": "absolute",
  6326. "bottom": "50px",
  6327. "right": "50px",
  6328. "zIndex": "9999",
  6329. "backgroundColor": "#2268bc",
  6330. "color": "#fff",
  6331. "padding": "12px 20px",
  6332. "cursor": "pointer",
  6333. "borderRadius": "4px",
  6334. },
  6335. "innerHTML": "提交作业"
  6336. })
  6337. let aTool = ''
  6338. let _loading = document.createElement('div')
  6339. _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;"
  6340. // _loading.id = "";
  6341. let _lchild = document.createElement('div')
  6342. let _limg = document.createElement('img')
  6343. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6344. _limg.style = "width: 26px;margin-right: 10px;"
  6345. _lchild.appendChild(_limg)
  6346. let _lspan = document.createElement('span')
  6347. _lspan.innerHTML = "上传中..."
  6348. _lchild.appendChild(_lspan)
  6349. _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%);"
  6350. _loading.appendChild(_lchild)
  6351. var _box = $$('div', {
  6352. "style": {
  6353. "position": "relative",
  6354. "width": "100%",
  6355. "height": "100%",
  6356. },
  6357. })
  6358. _box.appendChild(_loading)
  6359. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6360. switch (str) {
  6361. case "whiteboard":
  6362. aTool = 1;
  6363. _iframe = $$("iframe", {
  6364. "frameborder": "no",
  6365. "border": "0",
  6366. "scrolling ": "no",
  6367. "style": {
  6368. "cssText": "border:0;width:100%;height:100%"
  6369. },
  6370. "src": "https://beta.iwb.cocorobo.cn/"
  6371. })
  6372. _box.appendChild(_iframe);
  6373. _box.appendChild(_jie);
  6374. _formdiv = new U.UF.UI.form(
  6375. "电子白板-" + _username,
  6376. _box, {
  6377. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6378. "style": {
  6379. "width": "90%",
  6380. "height": "90%",
  6381. "overflow": 'hidden'
  6382. },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, {
  6387. "style": {
  6388. "height": "36px"
  6389. }
  6390. }).form; //创建窗体
  6391. _taskbar = {
  6392. "id": str + _formdiv.id,
  6393. "style": {
  6394. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6395. },
  6396. "name": "电子白板",
  6397. "forms": _formdiv,
  6398. "click": function () {
  6399. U.MD.D.I.openApplication(str, obj, info);
  6400. }
  6401. }
  6402. break;
  6403. case "mind":
  6404. aTool = 3;
  6405. _iframe = $$("iframe", {
  6406. "frameborder": "no",
  6407. "border": "0",
  6408. "scrolling ": "no",
  6409. "style": {
  6410. "cssText": "border:0;width:100%;height:100%"
  6411. },
  6412. "src": "/kityminder-editor/dist/index.html"
  6413. })
  6414. _box.appendChild(_iframe);
  6415. _box.appendChild(_jie);
  6416. _formdiv = new U.UF.UI.form(
  6417. "思维导图-" + _username,
  6418. _box, { //"/jsmind/example/demo.html"
  6419. "id": "mind" + cid + stage + task + tool + _userid,
  6420. "style": {
  6421. "width": "90%",
  6422. "height": "90%",
  6423. "overflow": 'hidden'
  6424. },
  6425. "onresize": function () { }
  6426. }, {
  6427. closecallback: function () { }
  6428. }, {
  6429. "style": {
  6430. "height": "36px"
  6431. }
  6432. }).form; //创建窗体
  6433. _taskbar = {
  6434. "id": str + _formdiv.id,
  6435. "style": {
  6436. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6437. },
  6438. "name": "思维导图",
  6439. "forms": _formdiv,
  6440. "click": function () {
  6441. U.MD.D.I.openApplication(str, obj, info);
  6442. }
  6443. }
  6444. break;
  6445. case "MindMap":
  6446. aTool = 3;
  6447. _iframe = $$("iframe", {
  6448. "frameborder": "no",
  6449. "border": "0",
  6450. "scrolling ": "no",
  6451. "style": {
  6452. "cssText": "border:0;width:100%;height:100%"
  6453. },
  6454. "src": "//cloud.cocorobo.cn/mind/"
  6455. })
  6456. _box.appendChild(_iframe);
  6457. _box.appendChild(_jie);
  6458. _formdiv = new U.UF.UI.form(
  6459. "思维导图-" + _username,
  6460. _box, { //"/jsmind/example/demo.html"
  6461. "id": "mind" + cid + stage + task + tool + _userid,
  6462. "style": {
  6463. "width": "90%",
  6464. "height": "90%",
  6465. "overflow": 'hidden'
  6466. },
  6467. "onresize": function () { }
  6468. }, {
  6469. closecallback: function () { }
  6470. }, {
  6471. "style": {
  6472. "height": "36px"
  6473. }
  6474. }).form; //创建窗体
  6475. _taskbar = {
  6476. "id": str + _formdiv.id,
  6477. "style": {
  6478. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6479. },
  6480. "name": "思维导图",
  6481. "forms": _formdiv,
  6482. "click": function () {
  6483. U.MD.D.I.openApplication(str, obj, info);
  6484. }
  6485. }
  6486. break;
  6487. case "doc":
  6488. aTool = 6;
  6489. _iframe = $$("iframe", {
  6490. "frameborder": "no",
  6491. "border": "0",
  6492. "scrolling ": "no",
  6493. "style": {
  6494. "cssText": "border:0;width:100%;height:100%"
  6495. },
  6496. "src": "/Office/Word/WordEditArea.htm"
  6497. })
  6498. _box.appendChild(_iframe);
  6499. _box.appendChild(_jie);
  6500. _formdiv = new U.UF.UI.form(
  6501. "协同文档-" + _username,
  6502. _box, {
  6503. "id": "doc" + cid + stage + task + tool + _userid,
  6504. "style": {
  6505. "width": "90%",
  6506. "height": "90%",
  6507. "overflow": 'hidden'
  6508. },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, {
  6513. "style": {
  6514. "height": "36px"
  6515. }
  6516. }).form; //创建窗体
  6517. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6518. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6519. })
  6520. _taskbar = {
  6521. "id": str + _formdiv.id,
  6522. "style": {
  6523. "backgroundImage": "url(/img/icon/doc.png)"
  6524. },
  6525. "name": "协同文档",
  6526. "forms": _formdiv,
  6527. "click": function () {
  6528. U.MD.D.I.openApplication(str, obj, info);
  6529. }
  6530. }
  6531. break;
  6532. case "mindNetwork": //好友打开
  6533. aTool = 7;
  6534. _iframe = $$("iframe", {
  6535. "webkitallowfullscreen": "",
  6536. "mozallowfullscreen": "",
  6537. "allowfullscreen": "",
  6538. "frameborder": "no",
  6539. "border": "0",
  6540. "scrolling ": "no",
  6541. "style": {
  6542. "cssText": "border:0; width:100%; height:100%;"
  6543. },
  6544. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6545. })
  6546. _box.appendChild(_iframe);
  6547. _box.appendChild(_jie);
  6548. _formdiv = new U.UF.UI.form(
  6549. "思维网格-" + _username,
  6550. _box, {
  6551. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6552. "style": {
  6553. "width": "90%",
  6554. "height": "90%",
  6555. "overflow": 'hidden'
  6556. },
  6557. "onresize": function () { }
  6558. }, {
  6559. closecallback: function () { }
  6560. }, {
  6561. "style": {
  6562. "height": "36px"
  6563. }
  6564. }).form; //创建窗体
  6565. _taskbar = {
  6566. "id": str + _formdiv.id,
  6567. "style": {
  6568. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6569. },
  6570. "name": "思维网格",
  6571. "forms": _formdiv,
  6572. "click": function () {
  6573. U.MD.D.I.openApplication(str, obj, info);
  6574. }
  6575. }
  6576. break;
  6577. case "courseDesign":
  6578. _iframe = $$("iframe", {
  6579. "webkitallowfullscreen": "",
  6580. "mozallowfullscreen": "",
  6581. "allowfullscreen": "",
  6582. "frameborder": "no",
  6583. "border": "0",
  6584. "scrolling ": "no",
  6585. "style": {
  6586. "cssText": "border:0; width:100%; height:100%;"
  6587. },
  6588. "src": "/course-design-vue"
  6589. })
  6590. _box.appendChild(_iframe);
  6591. _box.appendChild(_jie);
  6592. _formdiv = new U.UF.UI.form(
  6593. "项目设计-" + _username,
  6594. _box, {
  6595. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6596. "style": {
  6597. "width": "90%",
  6598. "height": "90%",
  6599. "overflow": 'hidden'
  6600. },
  6601. "onresize": function () { }
  6602. }, {
  6603. closecallback: function () { }
  6604. }, {
  6605. "style": {
  6606. "height": "36px"
  6607. }
  6608. }).form; //创建窗体
  6609. _taskbar = {
  6610. "id": str + _formdiv.id,
  6611. "style": {
  6612. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6613. },
  6614. "name": "项目设计",
  6615. "forms": _formdiv,
  6616. "click": function () {
  6617. U.MD.D.I.openApplication(str, obj, info);
  6618. }
  6619. }
  6620. break;
  6621. }
  6622. const script1 = document.createElement("script");
  6623. script1.type = "text/javascript";
  6624. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6625. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6626. const script2 = document.createElement("script");
  6627. script2.type = "text/javascript";
  6628. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6629. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6630. const script3 = document.createElement("script");
  6631. script3.type = "text/javascript";
  6632. script3.charset = "UTF-8";
  6633. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6634. const script4 = document.createElement("script");
  6635. script4.type = "text/javascript";
  6636. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6637. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6638. if (_iframe) {
  6639. if (str == 'doc') {
  6640. _iframe = _formdiv.querySelector('iframe')
  6641. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6642. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6643. _iframe.contentWindow.document.body.appendChild(script1);
  6644. _iframe.contentWindow.document.body.appendChild(script2);
  6645. // _iframe.contentWindow.document.body.appendChild(script3);
  6646. _iframe.contentWindow.document.body.appendChild(script4);
  6647. })
  6648. if (onloadListener) {
  6649. _iframe.contentDocument.location.reload()
  6650. } else {
  6651. _iframe.contentDocument.location.reload()
  6652. }
  6653. } else if (str == 'courseDesign') {
  6654. U.UF.DL.iframeLoad(_iframe, function () {
  6655. // _iframe.contentWindow.U.MD.O.W.load();
  6656. // _iframe.contentWindow.document.body.appendChild(script1);
  6657. _iframe.contentWindow.document.body.appendChild(script2);
  6658. _iframe.contentWindow.document.body.appendChild(script4);
  6659. })
  6660. } else if (str == 'mind') {
  6661. _iframe = _formdiv.querySelector('iframe')
  6662. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6663. //
  6664. _iframe.contentWindow.document.body.appendChild(script1);
  6665. _iframe.contentWindow.document.body.appendChild(script2);
  6666. _iframe.contentWindow.document.body.appendChild(script4);
  6667. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6668. })
  6669. if (onloadListener) {
  6670. _iframe.contentDocument.location.reload()
  6671. } else {
  6672. _iframe.contentDocument.location.reload()
  6673. }
  6674. } else if (str == 'whiteboard') {
  6675. _iframe = _formdiv.querySelector('iframe')
  6676. let onloadListener = _iframe.onload = () => {
  6677. _iframe.contentWindow.document.body.appendChild(script1);
  6678. _iframe.contentWindow.document.body.appendChild(script2);
  6679. _iframe.contentWindow.document.body.appendChild(script4);
  6680. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6681. };
  6682. if (onloadListener) {
  6683. _iframe.contentDocument.location.reload()
  6684. } else {
  6685. _iframe.contentDocument.location.reload()
  6686. }
  6687. } else {
  6688. _iframe.onload = () => {
  6689. _iframe.contentWindow.document.body.appendChild(script1);
  6690. _iframe.contentWindow.document.body.appendChild(script2);
  6691. // _iframe.contentWindow.document.body.appendChild(script3);
  6692. _iframe.contentWindow.document.body.appendChild(script4);
  6693. };
  6694. }
  6695. _jie.onclick = async () => {
  6696. let text = ''
  6697. if (aTool == 1) {
  6698. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6699. } else if (aTool == 6) {
  6700. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6701. } else if (aTool == 3) {
  6702. text = await U.MD.D.I.getEditorContent(_iframe);
  6703. }
  6704. _loading.style.display = 'flex'
  6705. console.log(_loading);
  6706. var _ajs = _iframe.contentWindow.document.createElement("script");
  6707. _ajs.type = "text/javascript";
  6708. _ajs.innerHTML =
  6709. // 'console.log(' + _loading + ');\n' +
  6710. 'var _js = document.createElement("script");\n' +
  6711. '_js.type="text/javascript";\n' +
  6712. '_js.charset="UTF-8";\n' +
  6713. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6714. "_js.onload = function(){\n" +
  6715. ' var a = document.getElementsByTagName("img")\n' +
  6716. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6717. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6718. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6719. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6720. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6721. "beforeUpload_shishi(file," +
  6722. "'" +
  6723. _userid +
  6724. "'" +
  6725. ", " +
  6726. "'" +
  6727. _cid +
  6728. "'" +
  6729. ", " +
  6730. "'" +
  6731. _stage +
  6732. "'" +
  6733. ", " +
  6734. "'" +
  6735. _task +
  6736. "'" +
  6737. ", " +
  6738. "'" +
  6739. _tool +
  6740. "'" +
  6741. ", " +
  6742. "'" +
  6743. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6744. "'" +
  6745. ", " +
  6746. "'" +
  6747. aTool +
  6748. "'" +
  6749. ", " +
  6750. "`" +
  6751. text +
  6752. "`" +
  6753. ")\n" +
  6754. " });\n" +
  6755. "}\n" +
  6756. "document.head.appendChild(_js);\n";
  6757. _iframe.contentWindow.document.head.appendChild(_ajs);
  6758. }
  6759. }
  6760. }
  6761. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6762. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6763. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6764. _userid = student.userid, //登录用户id
  6765. _username = student.student //用户名字
  6766. let _iframe;
  6767. let _cid = cid,
  6768. _stage = stage,
  6769. _task = task,
  6770. _tool = tool;
  6771. var _jie = $$("div", {
  6772. "style": {
  6773. "position": "absolute",
  6774. "bottom": "50px",
  6775. "right": "50px",
  6776. "zIndex": "9999",
  6777. "backgroundColor": "#2268bc",
  6778. "color": "#fff",
  6779. "padding": "12px 20px",
  6780. "cursor": "pointer",
  6781. "borderRadius": "4px",
  6782. },
  6783. "innerHTML": "提交作业"
  6784. })
  6785. let aTool = ''
  6786. let _loading = document.createElement('div')
  6787. _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;"
  6788. // _loading.id = "";
  6789. let _lchild = document.createElement('div')
  6790. let _limg = document.createElement('img')
  6791. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6792. _limg.style = "width: 26px;margin-right: 10px;"
  6793. _lchild.appendChild(_limg)
  6794. let _lspan = document.createElement('span')
  6795. _lspan.innerHTML = "上传中..."
  6796. _lchild.appendChild(_lspan)
  6797. _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%);"
  6798. _loading.appendChild(_lchild)
  6799. var _box = $$('div', {
  6800. "style": {
  6801. "position": "relative",
  6802. "width": "100%",
  6803. "height": "100%",
  6804. },
  6805. })
  6806. _box.appendChild(_loading)
  6807. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6808. switch (str) {
  6809. case "whiteboard":
  6810. aTool = 1;
  6811. _iframe = $$("iframe", {
  6812. "frameborder": "no",
  6813. "border": "0",
  6814. "scrolling ": "no",
  6815. "style": {
  6816. "cssText": "border:0;width:100%;height:100%"
  6817. },
  6818. "src": "https://beta.iwb.cocorobo.cn/"
  6819. })
  6820. _box.appendChild(_iframe);
  6821. _box.appendChild(_jie);
  6822. _formdiv = new U.UF.UI.form(
  6823. "电子白板-" + _username,
  6824. _box, {
  6825. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6826. "style": {
  6827. "width": "90%",
  6828. "height": "90%",
  6829. "overflow": 'hidden'
  6830. },
  6831. "onresize": function () { }
  6832. }, {
  6833. closecallback: function () { }
  6834. }, {
  6835. "style": {
  6836. "height": "36px"
  6837. }
  6838. }).form; //创建窗体
  6839. _taskbar = {
  6840. "id": str + _formdiv.id,
  6841. "style": {
  6842. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6843. },
  6844. "name": "电子白板",
  6845. "forms": _formdiv,
  6846. "click": function () {
  6847. U.MD.D.I.openApplication(str, obj, info);
  6848. }
  6849. }
  6850. break;
  6851. case "mind":
  6852. aTool = 3;
  6853. _iframe = $$("iframe", {
  6854. "frameborder": "no",
  6855. "border": "0",
  6856. "scrolling ": "no",
  6857. "style": {
  6858. "cssText": "border:0;width:100%;height:100%"
  6859. },
  6860. "src": "/kityminder-editor/dist/index.html"
  6861. })
  6862. _box.appendChild(_iframe);
  6863. _box.appendChild(_jie);
  6864. _formdiv = new U.UF.UI.form(
  6865. "思维导图-" + _username,
  6866. _box, { //"/jsmind/example/demo.html"
  6867. "id": "mind" + cid + stage + task + tool + _userid,
  6868. "style": {
  6869. "width": "90%",
  6870. "height": "90%",
  6871. "overflow": 'hidden'
  6872. },
  6873. "onresize": function () { }
  6874. }, {
  6875. closecallback: function () { }
  6876. }, {
  6877. "style": {
  6878. "height": "36px"
  6879. }
  6880. }).form; //创建窗体
  6881. _taskbar = {
  6882. "id": str + _formdiv.id,
  6883. "style": {
  6884. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6885. },
  6886. "name": "思维导图",
  6887. "forms": _formdiv,
  6888. "click": function () {
  6889. U.MD.D.I.openApplication(str, obj, info);
  6890. }
  6891. }
  6892. break;
  6893. case "MindMap":
  6894. aTool = 3;
  6895. _iframe = $$("iframe", {
  6896. "frameborder": "no",
  6897. "border": "0",
  6898. "scrolling ": "no",
  6899. "style": {
  6900. "cssText": "border:0;width:100%;height:100%"
  6901. },
  6902. "src": "//cloud.cocorobo.cn/mind/"
  6903. })
  6904. _box.appendChild(_iframe);
  6905. _box.appendChild(_jie);
  6906. _formdiv = new U.UF.UI.form(
  6907. "思维导图-" + _username,
  6908. _box, { //"/jsmind/example/demo.html"
  6909. "id": "mind" + cid + stage + task + tool + _userid,
  6910. "style": {
  6911. "width": "90%",
  6912. "height": "90%",
  6913. "overflow": 'hidden'
  6914. },
  6915. "onresize": function () { }
  6916. }, {
  6917. closecallback: function () { }
  6918. }, {
  6919. "style": {
  6920. "height": "36px"
  6921. }
  6922. }).form; //创建窗体
  6923. _taskbar = {
  6924. "id": str + _formdiv.id,
  6925. "style": {
  6926. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6927. },
  6928. "name": "思维导图",
  6929. "forms": _formdiv,
  6930. "click": function () {
  6931. U.MD.D.I.openApplication(str, obj, info);
  6932. }
  6933. }
  6934. break;
  6935. case "doc":
  6936. aTool = 6;
  6937. _iframe = $$("iframe", {
  6938. "frameborder": "no",
  6939. "border": "0",
  6940. "scrolling ": "no",
  6941. "style": {
  6942. "cssText": "border:0;width:100%;height:100%"
  6943. },
  6944. "src": "/Office/Word/WordEditArea.htm"
  6945. })
  6946. _box.appendChild(_iframe);
  6947. _box.appendChild(_jie);
  6948. _formdiv = new U.UF.UI.form(
  6949. "协同文档-" + _username,
  6950. _box, {
  6951. "id": "doc" + cid + stage + task + tool + _userid,
  6952. "style": {
  6953. "width": "90%",
  6954. "height": "90%",
  6955. "overflow": 'hidden'
  6956. },
  6957. "onresize": function () { }
  6958. }, {
  6959. closecallback: function () { }
  6960. }, {
  6961. "style": {
  6962. "height": "36px"
  6963. }
  6964. }).form; //创建窗体
  6965. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6966. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6967. })
  6968. _taskbar = {
  6969. "id": str + _formdiv.id,
  6970. "style": {
  6971. "backgroundImage": "url(/img/icon/doc.png)"
  6972. },
  6973. "name": "协同文档",
  6974. "forms": _formdiv,
  6975. "click": function () {
  6976. U.MD.D.I.openApplication(str, obj, info);
  6977. }
  6978. }
  6979. break;
  6980. case "mindNetwork": //好友打开
  6981. aTool = 7;
  6982. _iframe = $$("iframe", {
  6983. "webkitallowfullscreen": "",
  6984. "mozallowfullscreen": "",
  6985. "allowfullscreen": "",
  6986. "frameborder": "no",
  6987. "border": "0",
  6988. "scrolling ": "no",
  6989. "style": {
  6990. "cssText": "border:0; width:100%; height:100%;"
  6991. },
  6992. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6993. })
  6994. _box.appendChild(_iframe);
  6995. _box.appendChild(_jie);
  6996. _formdiv = new U.UF.UI.form(
  6997. "思维网格-" + _username,
  6998. _box, {
  6999. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7000. "style": {
  7001. "width": "90%",
  7002. "height": "90%",
  7003. "overflow": 'hidden'
  7004. },
  7005. "onresize": function () { }
  7006. }, {
  7007. closecallback: function () { }
  7008. }, {
  7009. "style": {
  7010. "height": "36px"
  7011. }
  7012. }).form; //创建窗体
  7013. _taskbar = {
  7014. "id": str + _formdiv.id,
  7015. "style": {
  7016. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7017. },
  7018. "name": "思维网格",
  7019. "forms": _formdiv,
  7020. "click": function () {
  7021. U.MD.D.I.openApplication(str, obj, info);
  7022. }
  7023. }
  7024. break;
  7025. case "courseDesign":
  7026. _iframe = $$("iframe", {
  7027. "webkitallowfullscreen": "",
  7028. "mozallowfullscreen": "",
  7029. "allowfullscreen": "",
  7030. "frameborder": "no",
  7031. "border": "0",
  7032. "scrolling ": "no",
  7033. "style": {
  7034. "cssText": "border:0; width:100%; height:100%;"
  7035. },
  7036. "src": "/course-design-vue"
  7037. })
  7038. _box.appendChild(_iframe);
  7039. _box.appendChild(_jie);
  7040. _formdiv = new U.UF.UI.form(
  7041. "项目设计-" + _username,
  7042. _box, {
  7043. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7044. "style": {
  7045. "width": "90%",
  7046. "height": "90%",
  7047. "overflow": 'hidden'
  7048. },
  7049. "onresize": function () { }
  7050. }, {
  7051. closecallback: function () { }
  7052. }, {
  7053. "style": {
  7054. "height": "36px"
  7055. }
  7056. }).form; //创建窗体
  7057. _taskbar = {
  7058. "id": str + _formdiv.id,
  7059. "style": {
  7060. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7061. },
  7062. "name": "项目设计",
  7063. "forms": _formdiv,
  7064. "click": function () {
  7065. U.MD.D.I.openApplication(str, obj, info);
  7066. }
  7067. }
  7068. break;
  7069. }
  7070. const script1 = document.createElement("script");
  7071. script1.type = "text/javascript";
  7072. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7073. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7074. const script2 = document.createElement("script");
  7075. script2.type = "text/javascript";
  7076. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7077. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7078. const script3 = document.createElement("script");
  7079. script3.type = "text/javascript";
  7080. script3.charset = "UTF-8";
  7081. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7082. const script4 = document.createElement("script");
  7083. script4.type = "text/javascript";
  7084. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7085. script4.src = window.origin + "/js/Common/jietu2E.js";
  7086. if (_iframe) {
  7087. if (str == 'doc') {
  7088. _iframe = _formdiv.querySelector('iframe')
  7089. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7090. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7091. _iframe.contentWindow.document.body.appendChild(script1);
  7092. _iframe.contentWindow.document.body.appendChild(script2);
  7093. // _iframe.contentWindow.document.body.appendChild(script3);
  7094. _iframe.contentWindow.document.body.appendChild(script4);
  7095. })
  7096. if (onloadListener) {
  7097. _iframe.contentDocument.location.reload()
  7098. } else {
  7099. _iframe.contentDocument.location.reload()
  7100. }
  7101. } else if (str == 'courseDesign') {
  7102. U.UF.DL.iframeLoad(_iframe, function () {
  7103. // _iframe.contentWindow.U.MD.O.W.load();
  7104. // _iframe.contentWindow.document.body.appendChild(script1);
  7105. _iframe.contentWindow.document.body.appendChild(script2);
  7106. _iframe.contentWindow.document.body.appendChild(script4);
  7107. })
  7108. } else if (str == 'mind') {
  7109. _iframe = _formdiv.querySelector('iframe')
  7110. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7111. //
  7112. _iframe.contentWindow.document.body.appendChild(script1);
  7113. _iframe.contentWindow.document.body.appendChild(script2);
  7114. _iframe.contentWindow.document.body.appendChild(script4);
  7115. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7116. })
  7117. if (onloadListener) {
  7118. _iframe.contentDocument.location.reload()
  7119. } else {
  7120. _iframe.contentDocument.location.reload()
  7121. }
  7122. } else if (str == 'whiteboard') {
  7123. _iframe = _formdiv.querySelector('iframe')
  7124. let onloadListener = _iframe.onload = () => {
  7125. _iframe.contentWindow.document.body.appendChild(script1);
  7126. _iframe.contentWindow.document.body.appendChild(script2);
  7127. _iframe.contentWindow.document.body.appendChild(script4);
  7128. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7129. };
  7130. if (onloadListener) {
  7131. _iframe.contentDocument.location.reload()
  7132. } else {
  7133. _iframe.contentDocument.location.reload()
  7134. }
  7135. } else {
  7136. _iframe.onload = () => {
  7137. _iframe.contentWindow.document.body.appendChild(script1);
  7138. _iframe.contentWindow.document.body.appendChild(script2);
  7139. // _iframe.contentWindow.document.body.appendChild(script3);
  7140. _iframe.contentWindow.document.body.appendChild(script4);
  7141. };
  7142. }
  7143. _jie.onclick = async () => {
  7144. let text = ''
  7145. if (aTool == 1) {
  7146. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7147. } else if (aTool == 6) {
  7148. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7149. } else if (aTool == 3) {
  7150. text = await U.MD.D.I.getEditorContent(_iframe);
  7151. }
  7152. _loading.style.display = 'flex'
  7153. console.log(_loading);
  7154. var _ajs = _iframe.contentWindow.document.createElement("script");
  7155. _ajs.type = "text/javascript";
  7156. _ajs.innerHTML =
  7157. // 'console.log(' + _loading + ');\n' +
  7158. 'var _js = document.createElement("script");\n' +
  7159. '_js.type="text/javascript";\n' +
  7160. '_js.charset="UTF-8";\n' +
  7161. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7162. "_js.onload = function(){\n" +
  7163. ' var a = document.getElementsByTagName("img")\n' +
  7164. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7165. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7166. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7167. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7168. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7169. "beforeUpload_shishi(file," +
  7170. "'" +
  7171. _userid +
  7172. "'" +
  7173. ", " +
  7174. "'" +
  7175. _cid +
  7176. "'" +
  7177. ", " +
  7178. "'" +
  7179. _stage +
  7180. "'" +
  7181. ", " +
  7182. "'" +
  7183. _task +
  7184. "'" +
  7185. ", " +
  7186. "'" +
  7187. _tool +
  7188. "'" +
  7189. ", " +
  7190. "'" +
  7191. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7192. "'" +
  7193. ", " +
  7194. "'" +
  7195. aTool +
  7196. "'" +
  7197. ", " +
  7198. "`" +
  7199. text +
  7200. "`" +
  7201. ")\n" +
  7202. " });\n" +
  7203. "}\n" +
  7204. "document.head.appendChild(_js);\n";
  7205. _iframe.contentWindow.document.head.appendChild(_ajs);
  7206. }
  7207. }
  7208. }
  7209. U.MD.D.I.getEditorContent = function (iframe) {
  7210. return new Promise((resolve, reject) => {
  7211. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7212. console.log(content);
  7213. resolve(content)
  7214. });
  7215. });
  7216. }
  7217. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7218. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7219. // if (res.value[0].length > 0) {
  7220. // // resolve(res.value[0][0].text);
  7221. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7222. // $(fileInput).val('');
  7223. // });
  7224. // }
  7225. // }, [], { "type": "GET", "withCredentials": true });
  7226. var xmlhttp;
  7227. var Mac, Sn, DeviceId
  7228. if (window.XMLHttpRequest) {
  7229. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7230. xmlhttp = new XMLHttpRequest();
  7231. } else {
  7232. // IE6, IE5 浏览器执行代码
  7233. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7234. }
  7235. xmlhttp.onreadystatechange = function () {
  7236. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7237. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7238. // resolve(res.value[0][0].text);
  7239. if (type == '2') {
  7240. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7241. } else if (type == '3') {
  7242. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7243. }
  7244. } else {
  7245. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7246. }
  7247. }
  7248. }
  7249. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7250. xmlhttp.send();
  7251. }
  7252. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7253. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7254. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7255. _userinfo = US.userInfo, //登录用户信息
  7256. _userid = US.userInfo.userid //登录用户id
  7257. let _iframe;
  7258. let _cid = cid,
  7259. _stage = stage,
  7260. _task = task,
  7261. _tool = tool;
  7262. var _jie = $$("div", {
  7263. "style": {
  7264. "position": "absolute",
  7265. "bottom": "50px",
  7266. "right": "50px",
  7267. "zIndex": "9999",
  7268. "backgroundColor": "#2268bc",
  7269. "color": "#fff",
  7270. "padding": "12px 20px",
  7271. "cursor": "pointer",
  7272. "borderRadius": "4px",
  7273. },
  7274. "innerHTML": "确认并提交"
  7275. })
  7276. let aTool = ''
  7277. let _loading = document.createElement('div')
  7278. _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;"
  7279. // _loading.id = "";
  7280. let _lchild = document.createElement('div')
  7281. let _limg = document.createElement('img')
  7282. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7283. _limg.style = "width: 26px;margin-right: 10px;"
  7284. _lchild.appendChild(_limg)
  7285. let _lspan = document.createElement('span')
  7286. _lspan.innerHTML = "上传中..."
  7287. _lchild.appendChild(_lspan)
  7288. _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%);"
  7289. _loading.appendChild(_lchild)
  7290. var _box = $$('div', {
  7291. "style": {
  7292. "position": "relative",
  7293. "width": "100%",
  7294. "height": "100%",
  7295. },
  7296. })
  7297. _box.appendChild(_loading)
  7298. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7299. switch (str) {
  7300. case "whiteboard":
  7301. aTool = 1;
  7302. _iframe = $$("iframe", {
  7303. "frameborder": "no",
  7304. "border": "0",
  7305. "scrolling ": "no",
  7306. "style": {
  7307. "cssText": "border:0;width:100%;height:100%"
  7308. },
  7309. "src": "https://beta.iwb.cocorobo.cn/"
  7310. })
  7311. _box.appendChild(_iframe);
  7312. _box.appendChild(_jie);
  7313. _formdiv = new U.UF.UI.form(
  7314. "电子白板",
  7315. _box, {
  7316. "id": "whiteboards" + cid + stage + task + tool,
  7317. "style": {
  7318. "width": "90%",
  7319. "height": "90%",
  7320. "overflow": 'hidden'
  7321. },
  7322. "onresize": function () { }
  7323. }, {
  7324. closecallback: function () { }
  7325. }, {
  7326. "style": {
  7327. "height": "36px"
  7328. }
  7329. }).form; //创建窗体
  7330. _taskbar = {
  7331. "id": str + _formdiv.id,
  7332. "style": {
  7333. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7334. },
  7335. "name": "电子白板",
  7336. "forms": _formdiv,
  7337. "click": function () {
  7338. U.MD.D.I.openApplication(str, obj, info);
  7339. }
  7340. }
  7341. break;
  7342. case "mind":
  7343. aTool = 3;
  7344. _iframe = $$("iframe", {
  7345. "frameborder": "no",
  7346. "border": "0",
  7347. "scrolling ": "no",
  7348. "style": {
  7349. "cssText": "border:0;width:100%;height:100%"
  7350. },
  7351. "src": "/kityminder-editor/dist/index.html"
  7352. });
  7353. _box.appendChild(_iframe);
  7354. _box.appendChild(_jie);
  7355. _formdiv = new U.UF.UI.form(
  7356. "思维导图",
  7357. _box, { //"/jsmind/example/demo.html"
  7358. "id": "minds" + cid + stage + task + tool,
  7359. "style": {
  7360. "width": "90%",
  7361. "height": "90%",
  7362. "overflow": 'hidden'
  7363. },
  7364. "onresize": function () { }
  7365. }, {
  7366. closecallback: function () { }
  7367. }, {
  7368. "style": {
  7369. "height": "36px"
  7370. }
  7371. }).form; //创建窗体
  7372. _taskbar = {
  7373. "id": str + _formdiv.id,
  7374. "style": {
  7375. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7376. },
  7377. "name": "思维导图",
  7378. "forms": _formdiv,
  7379. "click": function () {
  7380. U.MD.D.I.openApplication(str, obj, info);
  7381. }
  7382. }
  7383. break;
  7384. case "doc":
  7385. aTool = 6;
  7386. _iframe = $$("iframe", {
  7387. "frameborder": "no",
  7388. "border": "0",
  7389. "scrolling ": "no",
  7390. "style": {
  7391. "cssText": "border:0;width:100%;height:100%"
  7392. },
  7393. "src": "/Office/Word/WordEditArea.htm"
  7394. })
  7395. _box.appendChild(_iframe);
  7396. _box.appendChild(_jie);
  7397. _formdiv = new U.UF.UI.form(
  7398. "协同文档",
  7399. _box, {
  7400. "id": "docs" + cid + stage + task + tool,
  7401. "style": {
  7402. "width": "90%",
  7403. "height": "90%",
  7404. "overflow": 'hidden'
  7405. },
  7406. "onresize": function () { }
  7407. }, {
  7408. closecallback: function () { }
  7409. }, {
  7410. "style": {
  7411. "height": "36px"
  7412. }
  7413. }).form; //创建窗体
  7414. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7415. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7416. })
  7417. _taskbar = {
  7418. "id": str + _formdiv.id,
  7419. "style": {
  7420. "backgroundImage": "url(/img/icon/doc.png)"
  7421. },
  7422. "name": "协同文档",
  7423. "forms": _formdiv,
  7424. "click": function () {
  7425. U.MD.D.I.openApplication(str, obj, info);
  7426. }
  7427. }
  7428. break;
  7429. }
  7430. const script1 = document.createElement("script");
  7431. script1.type = "text/javascript";
  7432. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7433. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7434. const script2 = document.createElement("script");
  7435. script2.type = "text/javascript";
  7436. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7437. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7438. const script3 = document.createElement("script");
  7439. script3.type = "text/javascript";
  7440. script3.charset = "UTF-8";
  7441. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7442. const script4 = document.createElement("script");
  7443. script4.type = "text/javascript";
  7444. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7445. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7446. if (_iframe) {
  7447. if (str == 'doc') {
  7448. _iframe = _formdiv.querySelector('iframe')
  7449. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7450. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7451. _iframe.contentWindow.document.body.appendChild(script1);
  7452. _iframe.contentWindow.document.body.appendChild(script2);
  7453. // _iframe.contentWindow.document.body.appendChild(script3);
  7454. _iframe.contentWindow.document.body.appendChild(script4);
  7455. })
  7456. if (onloadListener) {
  7457. _iframe.contentDocument.location.reload()
  7458. } else {
  7459. _iframe.contentDocument.location.reload()
  7460. }
  7461. } else if (str == 'mind') {
  7462. _iframe = _formdiv.querySelector('iframe')
  7463. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7464. _iframe.contentWindow.document.body.appendChild(script1);
  7465. _iframe.contentWindow.document.body.appendChild(script2);
  7466. _iframe.contentWindow.document.body.appendChild(script4);
  7467. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7468. })
  7469. if (onloadListener) {
  7470. _iframe.contentDocument.location.reload()
  7471. } else {
  7472. _iframe.contentDocument.location.reload()
  7473. }
  7474. } else {
  7475. _iframe.onload = () => {
  7476. _iframe.contentWindow.document.body.appendChild(script1);
  7477. _iframe.contentWindow.document.body.appendChild(script2);
  7478. // _iframe.contentWindow.document.body.appendChild(script3);
  7479. _iframe.contentWindow.document.body.appendChild(script4);
  7480. };
  7481. }
  7482. _jie.onclick = async () => {
  7483. let text = ''
  7484. if (aTool == 6) {
  7485. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7486. } else if (aTool == 3) {
  7487. text = await U.MD.D.I.getEditorContent(_iframe);
  7488. }
  7489. _loading.style.display = 'flex'
  7490. console.log(_loading);
  7491. var _ajs = _iframe.contentWindow.document.createElement("script");
  7492. _ajs.type = "text/javascript";
  7493. _ajs.innerHTML =
  7494. // 'console.log(' + _loading + ');\n' +
  7495. 'var _js = document.createElement("script");\n' +
  7496. '_js.type="text/javascript";\n' +
  7497. '_js.charset="UTF-8";\n' +
  7498. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7499. "_js.onload = function(){\n" +
  7500. ' var a = document.getElementsByTagName("img")\n' +
  7501. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7502. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7503. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7504. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7505. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7506. "beforeUpload_shishi(file," +
  7507. "'" +
  7508. _userid +
  7509. "'" +
  7510. ", " +
  7511. "'" +
  7512. _cid +
  7513. "'" +
  7514. ", " +
  7515. "'" +
  7516. _stage +
  7517. "'" +
  7518. ", " +
  7519. "'" +
  7520. _task +
  7521. "'" +
  7522. ", " +
  7523. "'" +
  7524. _tool +
  7525. "'" +
  7526. ", " +
  7527. "'" +
  7528. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7529. "'" +
  7530. ", " +
  7531. "'" +
  7532. aTool +
  7533. "'" +
  7534. ", " +
  7535. "`" +
  7536. text +
  7537. "`" +
  7538. ")\n" +
  7539. " });\n" +
  7540. "}\n" +
  7541. "document.head.appendChild(_js);\n";
  7542. _iframe.contentWindow.document.head.appendChild(_ajs);
  7543. }
  7544. }
  7545. //U.MD.D.I.openClick(str);
  7546. //如果有任务栏信息
  7547. // if (_taskbar) {
  7548. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7549. // }
  7550. }
  7551. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7552. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7553. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7554. _userinfo = US.userInfo, //登录用户信息
  7555. _userid = US.userInfo.userid //登录用户id
  7556. let _iframe;
  7557. let _cid = cid,
  7558. _stage = stage,
  7559. _task = task,
  7560. _tool = tool;
  7561. var _jie = $$("div", {
  7562. "style": {
  7563. "position": "absolute",
  7564. "bottom": "50px",
  7565. "right": "50px",
  7566. "zIndex": "9999",
  7567. "backgroundColor": "#2268bc",
  7568. "color": "#fff",
  7569. "padding": "12px 20px",
  7570. "cursor": "pointer",
  7571. "borderRadius": "4px",
  7572. },
  7573. "innerHTML": "确认并提交"
  7574. })
  7575. let aTool = ''
  7576. let _loading = document.createElement('div')
  7577. _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;"
  7578. // _loading.id = "";
  7579. let _lchild = document.createElement('div')
  7580. let _limg = document.createElement('img')
  7581. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7582. _limg.style = "width: 26px;margin-right: 10px;"
  7583. _lchild.appendChild(_limg)
  7584. let _lspan = document.createElement('span')
  7585. _lspan.innerHTML = "上传中..."
  7586. _lchild.appendChild(_lspan)
  7587. _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%);"
  7588. _loading.appendChild(_lchild)
  7589. var _box = $$('div', {
  7590. "style": {
  7591. "position": "relative",
  7592. "width": "100%",
  7593. "height": "100%",
  7594. },
  7595. })
  7596. _box.appendChild(_loading)
  7597. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7598. switch (str) {
  7599. case "whiteboard":
  7600. aTool = 1;
  7601. _iframe = $$("iframe", {
  7602. "frameborder": "no",
  7603. "border": "0",
  7604. "scrolling ": "no",
  7605. "style": {
  7606. "cssText": "border:0;width:100%;height:100%"
  7607. },
  7608. "src": "https://beta.iwb.cocorobo.cn/"
  7609. })
  7610. _box.appendChild(_iframe);
  7611. _box.appendChild(_jie);
  7612. _formdiv = new U.UF.UI.form(
  7613. "电子白板",
  7614. _box, {
  7615. "id": "whiteboards" + cid + stage + task + tool,
  7616. "style": {
  7617. "width": "90%",
  7618. "height": "90%",
  7619. "overflow": 'hidden'
  7620. },
  7621. "onresize": function () { }
  7622. }, {
  7623. closecallback: function () { }
  7624. }, {
  7625. "style": {
  7626. "height": "36px"
  7627. }
  7628. }).form; //创建窗体
  7629. _taskbar = {
  7630. "id": str + _formdiv.id,
  7631. "style": {
  7632. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7633. },
  7634. "name": "电子白板",
  7635. "forms": _formdiv,
  7636. "click": function () {
  7637. U.MD.D.I.openApplication(str, obj, info);
  7638. }
  7639. }
  7640. break;
  7641. case "mind":
  7642. aTool = 3;
  7643. _iframe = $$("iframe", {
  7644. "frameborder": "no",
  7645. "border": "0",
  7646. "scrolling ": "no",
  7647. "style": {
  7648. "cssText": "border:0;width:100%;height:100%"
  7649. },
  7650. "src": "/kityminder-editor/dist/index.html"
  7651. });
  7652. _box.appendChild(_iframe);
  7653. _box.appendChild(_jie);
  7654. _formdiv = new U.UF.UI.form(
  7655. "思维导图",
  7656. _box, { //"/jsmind/example/demo.html"
  7657. "id": "minds" + cid + stage + task + tool,
  7658. "style": {
  7659. "width": "90%",
  7660. "height": "90%",
  7661. "overflow": 'hidden'
  7662. },
  7663. "onresize": function () { }
  7664. }, {
  7665. closecallback: function () { }
  7666. }, {
  7667. "style": {
  7668. "height": "36px"
  7669. }
  7670. }).form; //创建窗体
  7671. _taskbar = {
  7672. "id": str + _formdiv.id,
  7673. "style": {
  7674. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7675. },
  7676. "name": "思维导图",
  7677. "forms": _formdiv,
  7678. "click": function () {
  7679. U.MD.D.I.openApplication(str, obj, info);
  7680. }
  7681. }
  7682. break;
  7683. case "doc":
  7684. aTool = 6;
  7685. _iframe = $$("iframe", {
  7686. "frameborder": "no",
  7687. "border": "0",
  7688. "scrolling ": "no",
  7689. "style": {
  7690. "cssText": "border:0;width:100%;height:100%"
  7691. },
  7692. "src": "/Office/Word/WordEditArea.htm"
  7693. })
  7694. _box.appendChild(_iframe);
  7695. _box.appendChild(_jie);
  7696. _formdiv = new U.UF.UI.form(
  7697. "协同文档",
  7698. _box, {
  7699. "id": "docs" + cid + stage + task + tool,
  7700. "style": {
  7701. "width": "90%",
  7702. "height": "90%",
  7703. "overflow": 'hidden'
  7704. },
  7705. "onresize": function () { }
  7706. }, {
  7707. closecallback: function () { }
  7708. }, {
  7709. "style": {
  7710. "height": "36px"
  7711. }
  7712. }).form; //创建窗体
  7713. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7714. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7715. })
  7716. _taskbar = {
  7717. "id": str + _formdiv.id,
  7718. "style": {
  7719. "backgroundImage": "url(/img/icon/doc.png)"
  7720. },
  7721. "name": "协同文档",
  7722. "forms": _formdiv,
  7723. "click": function () {
  7724. U.MD.D.I.openApplication(str, obj, info);
  7725. }
  7726. }
  7727. break;
  7728. }
  7729. const script1 = document.createElement("script");
  7730. script1.type = "text/javascript";
  7731. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7732. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7733. const script2 = document.createElement("script");
  7734. script2.type = "text/javascript";
  7735. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7736. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7737. const script3 = document.createElement("script");
  7738. script3.type = "text/javascript";
  7739. script3.charset = "UTF-8";
  7740. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7741. const script4 = document.createElement("script");
  7742. script4.type = "text/javascript";
  7743. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7744. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7745. if (_iframe) {
  7746. if (str == 'doc') {
  7747. _iframe = _formdiv.querySelector('iframe')
  7748. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7749. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7750. _iframe.contentWindow.document.body.appendChild(script1);
  7751. _iframe.contentWindow.document.body.appendChild(script2);
  7752. // _iframe.contentWindow.document.body.appendChild(script3);
  7753. _iframe.contentWindow.document.body.appendChild(script4);
  7754. })
  7755. if (onloadListener) {
  7756. _iframe.contentDocument.location.reload()
  7757. } else {
  7758. _iframe.contentDocument.location.reload()
  7759. }
  7760. } else if (str == 'mind') {
  7761. _iframe = _formdiv.querySelector('iframe')
  7762. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7763. _iframe.contentWindow.document.body.appendChild(script1);
  7764. _iframe.contentWindow.document.body.appendChild(script2);
  7765. _iframe.contentWindow.document.body.appendChild(script4);
  7766. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7767. })
  7768. if (onloadListener) {
  7769. _iframe.contentDocument.location.reload()
  7770. } else {
  7771. _iframe.contentDocument.location.reload()
  7772. }
  7773. } else {
  7774. _iframe.onload = () => {
  7775. _iframe.contentWindow.document.body.appendChild(script1);
  7776. _iframe.contentWindow.document.body.appendChild(script2);
  7777. // _iframe.contentWindow.document.body.appendChild(script3);
  7778. _iframe.contentWindow.document.body.appendChild(script4);
  7779. };
  7780. }
  7781. _jie.onclick = async () => {
  7782. let text = ''
  7783. if (aTool == 6) {
  7784. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7785. } else if (aTool == 3) {
  7786. text = await U.MD.D.I.getEditorContent(_iframe);
  7787. }
  7788. _loading.style.display = 'flex'
  7789. console.log(_loading);
  7790. var _ajs = _iframe.contentWindow.document.createElement("script");
  7791. _ajs.type = "text/javascript";
  7792. _ajs.innerHTML =
  7793. // 'console.log(' + _loading + ');\n' +
  7794. 'var _js = document.createElement("script");\n' +
  7795. '_js.type="text/javascript";\n' +
  7796. '_js.charset="UTF-8";\n' +
  7797. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7798. "_js.onload = function(){\n" +
  7799. ' var a = document.getElementsByTagName("img")\n' +
  7800. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7801. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7802. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7803. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7804. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7805. "beforeUpload_shishi(file," +
  7806. "'" +
  7807. _userid +
  7808. "'" +
  7809. ", " +
  7810. "'" +
  7811. _cid +
  7812. "'" +
  7813. ", " +
  7814. "'" +
  7815. _stage +
  7816. "'" +
  7817. ", " +
  7818. "'" +
  7819. _task +
  7820. "'" +
  7821. ", " +
  7822. "'" +
  7823. _tool +
  7824. "'" +
  7825. ", " +
  7826. "'" +
  7827. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7828. "'" +
  7829. ", " +
  7830. "'" +
  7831. aTool +
  7832. "'" +
  7833. ", " +
  7834. "`" +
  7835. text +
  7836. "`" +
  7837. ")\n" +
  7838. " });\n" +
  7839. "}\n" +
  7840. "document.head.appendChild(_js);\n";
  7841. _iframe.contentWindow.document.head.appendChild(_ajs);
  7842. }
  7843. }
  7844. //U.MD.D.I.openClick(str);
  7845. //如果有任务栏信息
  7846. // if (_taskbar) {
  7847. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7848. // }
  7849. }
  7850. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7851. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7852. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7853. _userinfo = US.userInfo, //登录用户信息
  7854. _userid = US.userInfo.userid //登录用户id
  7855. let _iframe;
  7856. let _cid = cid,
  7857. _stage = stage,
  7858. _task = task,
  7859. _tool = tool;
  7860. var _jie = $$("div", {
  7861. "style": {
  7862. "position": "absolute",
  7863. "bottom": "50px",
  7864. "right": "50px",
  7865. "zIndex": "9999",
  7866. "backgroundColor": "#2268bc",
  7867. "color": "#fff",
  7868. "padding": "12px 20px",
  7869. "cursor": "pointer",
  7870. "borderRadius": "4px",
  7871. },
  7872. "innerHTML": "上传模板"
  7873. })
  7874. let aTool = ''
  7875. let _loading = document.createElement('div')
  7876. _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;"
  7877. // _loading.id = "";
  7878. let _lchild = document.createElement('div')
  7879. let _limg = document.createElement('img')
  7880. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7881. _limg.style = "width: 26px;margin-right: 10px;"
  7882. _lchild.appendChild(_limg)
  7883. let _lspan = document.createElement('span')
  7884. _lspan.innerHTML = "上传中..."
  7885. _lchild.appendChild(_lspan)
  7886. _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%);"
  7887. _loading.appendChild(_lchild)
  7888. var _box = $$('div', {
  7889. "style": {
  7890. "position": "relative",
  7891. "width": "100%",
  7892. "height": "100%",
  7893. },
  7894. })
  7895. _box.appendChild(_loading)
  7896. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7897. switch (str) {
  7898. case "whiteboard":
  7899. aTool = 1;
  7900. _iframe = $$("iframe", {
  7901. "frameborder": "no",
  7902. "border": "0",
  7903. "scrolling ": "no",
  7904. "style": {
  7905. "cssText": "border:0;width:100%;height:100%"
  7906. },
  7907. "src": "https://beta.iwb.cocorobo.cn/"
  7908. })
  7909. _box.appendChild(_iframe);
  7910. _box.appendChild(_jie);
  7911. _formdiv = new U.UF.UI.form(
  7912. "电子白板",
  7913. _box, {
  7914. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7915. "style": {
  7916. "width": "90%",
  7917. "height": "90%",
  7918. "overflow": 'hidden'
  7919. },
  7920. "onresize": function () { }
  7921. }, {
  7922. closecallback: function () { }
  7923. }, {
  7924. "style": {
  7925. "height": "36px"
  7926. }
  7927. }).form; //创建窗体
  7928. _taskbar = {
  7929. "id": str + _formdiv.id,
  7930. "style": {
  7931. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7932. },
  7933. "name": "电子白板",
  7934. "forms": _formdiv,
  7935. "click": function () {
  7936. U.MD.D.I.openApplication(str, obj, info);
  7937. }
  7938. }
  7939. break;
  7940. case "mind":
  7941. aTool = 3;
  7942. _iframe = $$("iframe", {
  7943. "frameborder": "no",
  7944. "border": "0",
  7945. "scrolling ": "no",
  7946. "style": {
  7947. "cssText": "border:0;width:100%;height:100%"
  7948. },
  7949. "src": "/kityminder-editor/dist/index.html"
  7950. });
  7951. _box.appendChild(_iframe);
  7952. _box.appendChild(_jie);
  7953. _formdiv = new U.UF.UI.form(
  7954. "思维导图",
  7955. _box, { //"/jsmind/example/demo.html"
  7956. "id": "minds_Yu" + cid + stage + task + tool,
  7957. "style": {
  7958. "width": "90%",
  7959. "height": "90%",
  7960. "overflow": 'hidden'
  7961. },
  7962. "onresize": function () { }
  7963. }, {
  7964. closecallback: function () { }
  7965. }, {
  7966. "style": {
  7967. "height": "36px"
  7968. }
  7969. }).form; //创建窗体
  7970. _taskbar = {
  7971. "id": str + _formdiv.id,
  7972. "style": {
  7973. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7974. },
  7975. "name": "思维导图",
  7976. "forms": _formdiv,
  7977. "click": function () {
  7978. U.MD.D.I.openApplication(str, obj, info);
  7979. }
  7980. }
  7981. break;
  7982. case "doc":
  7983. aTool = 6;
  7984. _iframe = $$("iframe", {
  7985. "frameborder": "no",
  7986. "border": "0",
  7987. "scrolling ": "no",
  7988. "style": {
  7989. "cssText": "border:0;width:100%;height:100%"
  7990. },
  7991. "src": "/Office/Word/WordEditArea.htm"
  7992. })
  7993. _box.appendChild(_iframe);
  7994. _box.appendChild(_jie);
  7995. _formdiv = new U.UF.UI.form(
  7996. "协同文档",
  7997. _box, {
  7998. "id": "docs_Yu" + cid + stage + task + tool,
  7999. "style": {
  8000. "width": "90%",
  8001. "height": "90%",
  8002. "overflow": 'hidden'
  8003. },
  8004. "onresize": function () { }
  8005. }, {
  8006. closecallback: function () { }
  8007. }, {
  8008. "style": {
  8009. "height": "36px"
  8010. }
  8011. }).form; //创建窗体
  8012. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8013. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8014. })
  8015. _taskbar = {
  8016. "id": str + _formdiv.id,
  8017. "style": {
  8018. "backgroundImage": "url(/img/icon/doc.png)"
  8019. },
  8020. "name": "协同文档",
  8021. "forms": _formdiv,
  8022. "click": function () {
  8023. U.MD.D.I.openApplication(str, obj, info);
  8024. }
  8025. }
  8026. break;
  8027. case "CocoPi":
  8028. aTool = 57;
  8029. _iframe = $$("iframe", {
  8030. "allowpaymentrequest": "allowpaymentrequest",
  8031. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8032. "webkitallowfullscreen": "",
  8033. "mozallowfullscreen": "",
  8034. "frameborder": "no",
  8035. "border": "0",
  8036. "scrolling ": "no",
  8037. "style": {
  8038. "cssText": "border:0;width:100%;height:100%"
  8039. },
  8040. "src": "https://pi.cocorobo.cn/"
  8041. })
  8042. _box.appendChild(_iframe);
  8043. _box.appendChild(_jie);
  8044. _formdiv = new U.UF.UI.form(
  8045. "CocoPi",
  8046. _box, {
  8047. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8048. "style": {
  8049. "width": "90%",
  8050. "height": "90%",
  8051. "overflow": 'hidden'
  8052. },
  8053. "onresize": function () { }
  8054. }, {
  8055. closecallback: function () { }
  8056. }, {
  8057. "style": {
  8058. "height": "36px"
  8059. }
  8060. }).form; //创建窗体
  8061. _taskbar = {
  8062. "id": str + _formdiv.id,
  8063. "style": {
  8064. "backgroundImage": "url(/img/icon/cocopi.png)"
  8065. },
  8066. "name": "CocoPi",
  8067. "forms": _formdiv,
  8068. "click": function () {
  8069. U.MD.D.I.openApplication(str, obj, info);
  8070. }
  8071. }
  8072. break;
  8073. }
  8074. if (_iframe) {
  8075. if (str == 'doc') {
  8076. _iframe = _formdiv.querySelector('iframe')
  8077. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8078. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8079. })
  8080. if (onloadListener) {
  8081. _iframe.contentDocument.location.reload()
  8082. } else {
  8083. _iframe.contentDocument.location.reload()
  8084. }
  8085. } else if (str == 'mind') {
  8086. _iframe = _formdiv.querySelector('iframe')
  8087. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8088. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8089. })
  8090. if (onloadListener) {
  8091. _iframe.contentDocument.location.reload()
  8092. } else {
  8093. _iframe.contentDocument.location.reload()
  8094. }
  8095. } else if (str == 'whiteboard') {
  8096. _iframe = _formdiv.querySelector('iframe')
  8097. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8098. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8099. })
  8100. if (onloadListener) {
  8101. _iframe.contentDocument.location.reload()
  8102. } else {
  8103. _iframe.contentDocument.location.reload()
  8104. }
  8105. } else if (str == 'CocoPi') {
  8106. _iframe = _formdiv.querySelector('iframe')
  8107. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8108. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8109. })
  8110. if (onloadListener) {
  8111. _iframe.contentDocument.location.reload()
  8112. } else {
  8113. _iframe.contentDocument.location.reload()
  8114. }
  8115. } else {
  8116. _iframe.onload = () => { };
  8117. }
  8118. _jie.onclick = async () => {
  8119. let text = ''
  8120. let type = '2'
  8121. if (aTool == 1) {
  8122. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8123. type = '3'
  8124. } else if (aTool == 6) {
  8125. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8126. type = '1'
  8127. } else if (aTool == 3) {
  8128. text = await U.MD.D.I.getEditorContent(_iframe);
  8129. type = '2'
  8130. } else if (aTool == 57) {
  8131. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8132. type = '4'
  8133. }
  8134. _loading.style.display = 'flex'
  8135. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8136. }
  8137. }
  8138. //U.MD.D.I.openClick(str);
  8139. //如果有任务栏信息
  8140. // if (_taskbar) {
  8141. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8142. // }
  8143. }
  8144. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8145. var xmlhttp;
  8146. var Mac, Sn, DeviceId
  8147. if (window.XMLHttpRequest) {
  8148. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8149. xmlhttp = new XMLHttpRequest();
  8150. } else {
  8151. // IE6, IE5 浏览器执行代码
  8152. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8153. }
  8154. xmlhttp.onreadystatechange = function () {
  8155. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8156. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8157. // resolve(res.value[0][0].text);
  8158. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8159. }
  8160. }
  8161. }
  8162. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8163. xmlhttp.send();
  8164. }
  8165. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8166. var xmlhttp;
  8167. var Mac, Sn, DeviceId
  8168. if (window.XMLHttpRequest) {
  8169. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8170. xmlhttp = new XMLHttpRequest();
  8171. } else {
  8172. // IE6, IE5 浏览器执行代码
  8173. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8174. }
  8175. xmlhttp.onreadystatechange = function () {
  8176. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8177. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8178. // resolve(res.value[0][0].text);
  8179. if (type == '2') {
  8180. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8181. } else if (type == '3') {
  8182. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8183. } else if (type == '4') {
  8184. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8185. }
  8186. } else {
  8187. if (type == '2') {
  8188. iframe.contentWindow.editor.minder.importData('json', '')
  8189. } else if (type == '3') {
  8190. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8191. } else if (type == '4') {
  8192. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8193. }
  8194. }
  8195. }
  8196. }
  8197. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8198. xmlhttp.send();
  8199. }
  8200. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8201. var xmlhttp;
  8202. var Mac, Sn, DeviceId
  8203. if (window.XMLHttpRequest) {
  8204. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8205. xmlhttp = new XMLHttpRequest();
  8206. } else {
  8207. // IE6, IE5 浏览器执行代码
  8208. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8209. }
  8210. xmlhttp.onreadystatechange = function () {
  8211. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8212. if (xmlhttp.response) {
  8213. // resolve(res.value[0][0].text);
  8214. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8215. // $(fileInput).val('');
  8216. // });
  8217. span.innerHTML = '上传成功'
  8218. setTimeout(() => {
  8219. loading.style.display = 'none'
  8220. }, 1000);
  8221. }
  8222. }
  8223. }
  8224. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8225. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8226. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8227. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8228. // 设置请求头,表示请求体的编码格式
  8229. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8230. // 设置请求体,使用url-encoded格式的数据
  8231. }
  8232. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8233. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8234. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8235. _userinfo = US.userInfo, //登录用户信息
  8236. _userid = US.userInfo.userid //登录用户id
  8237. let _iframe;
  8238. let _cid = cid,
  8239. _stage = stage,
  8240. _task = task,
  8241. _tool = tool;
  8242. var _jie = $$("div", {
  8243. "style": {
  8244. "position": "absolute",
  8245. "bottom": "50px",
  8246. "right": "50px",
  8247. "zIndex": "9999",
  8248. "backgroundColor": "#2268bc",
  8249. "color": "#fff",
  8250. "padding": "12px 20px",
  8251. "cursor": "pointer",
  8252. "borderRadius": "4px",
  8253. },
  8254. "innerHTML": "提交作业"
  8255. })
  8256. let aTool = ''
  8257. let _loading = document.createElement('div')
  8258. _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;"
  8259. // _loading.id = "";
  8260. let _lchild = document.createElement('div')
  8261. let _limg = document.createElement('img')
  8262. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8263. _limg.style = "width: 26px;margin-right: 10px;"
  8264. _lchild.appendChild(_limg)
  8265. let _lspan = document.createElement('span')
  8266. _lspan.innerHTML = "上传中..."
  8267. _lchild.appendChild(_lspan)
  8268. _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%);"
  8269. _loading.appendChild(_lchild)
  8270. var _box = $$('div', {
  8271. "style": {
  8272. "position": "relative",
  8273. "width": "100%",
  8274. "height": "100%",
  8275. },
  8276. })
  8277. _box.appendChild(_loading)
  8278. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8279. switch (str) {
  8280. case "CocoPi":
  8281. aTool = 57;
  8282. _iframe = $$("iframe", {
  8283. "allowpaymentrequest": "allowpaymentrequest",
  8284. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8285. "webkitallowfullscreen": "",
  8286. "mozallowfullscreen": "",
  8287. "frameborder": "no",
  8288. "border": "0",
  8289. "scrolling ": "no",
  8290. "style": {
  8291. "cssText": "border:0;width:100%;height:100%"
  8292. },
  8293. "src": "https://pi.cocorobo.cn/"
  8294. })
  8295. _box.appendChild(_iframe);
  8296. _box.appendChild(_jie);
  8297. _formdiv = new U.UF.UI.form(
  8298. "CocoPi",
  8299. _box, {
  8300. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8301. "style": {
  8302. "width": "90%",
  8303. "height": "90%",
  8304. "overflow": 'hidden'
  8305. },
  8306. "onresize": function () { }
  8307. }, {
  8308. closecallback: function () { }
  8309. }, {
  8310. "style": {
  8311. "height": "36px"
  8312. }
  8313. }).form; //创建窗体
  8314. _taskbar = {
  8315. "id": str + _formdiv.id,
  8316. "style": {
  8317. "backgroundImage": "url(/img/icon/cocopi.png)"
  8318. },
  8319. "name": "CocoPi",
  8320. "forms": _formdiv,
  8321. "click": function () {
  8322. U.MD.D.I.openApplication(str, obj, info);
  8323. }
  8324. }
  8325. break;
  8326. }
  8327. if (_iframe) {
  8328. if (str == 'CocoPi') {
  8329. _iframe = _formdiv.querySelector('iframe')
  8330. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8331. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8332. })
  8333. if (onloadListener) {
  8334. _iframe.contentDocument.location.reload()
  8335. } else {
  8336. _iframe.contentDocument.location.reload()
  8337. }
  8338. }
  8339. _jie.onclick = async () => {
  8340. let text = ''
  8341. if (aTool == 57) {
  8342. text = _iframe.contentWindow.getLoadXmlStr()
  8343. }
  8344. _loading.style.display = 'flex'
  8345. console.log(_loading);
  8346. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8347. _loading.style.display = 'none'
  8348. let _div = document.createElement('div')
  8349. _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;"
  8350. let _inner = document.createElement('div')
  8351. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8352. _inner.innerHTML = "上传成功"
  8353. _div.appendChild(_inner)
  8354. _iframe.contentWindow.window.document.body.appendChild(_div)
  8355. _div.onclick = () => {
  8356. _iframe.contentWindow.window.document.body.removeChild(_div)
  8357. }
  8358. setTimeout(() => {
  8359. _iframe.contentWindow.window.document.body.removeChild(_div)
  8360. }, 1000);
  8361. }, [], { "type": "POST", "withCredentials": true });
  8362. }
  8363. }
  8364. }
  8365. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8366. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8367. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8368. _userid = student.userid, //登录用户id
  8369. _username = student.student //用户名字
  8370. let _iframe;
  8371. let _cid = cid,
  8372. _stage = stage,
  8373. _task = task,
  8374. _tool = tool;
  8375. var _jie = $$("div", {
  8376. "style": {
  8377. "position": "absolute",
  8378. "bottom": "50px",
  8379. "right": "50px",
  8380. "zIndex": "9999",
  8381. "backgroundColor": "#2268bc",
  8382. "color": "#fff",
  8383. "padding": "12px 20px",
  8384. "cursor": "pointer",
  8385. "borderRadius": "4px",
  8386. },
  8387. "innerHTML": "提交作业"
  8388. })
  8389. let aTool = ''
  8390. let _loading = document.createElement('div')
  8391. _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;"
  8392. // _loading.id = "";
  8393. let _lchild = document.createElement('div')
  8394. let _limg = document.createElement('img')
  8395. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8396. _limg.style = "width: 26px;margin-right: 10px;"
  8397. _lchild.appendChild(_limg)
  8398. let _lspan = document.createElement('span')
  8399. _lspan.innerHTML = "上传中..."
  8400. _lchild.appendChild(_lspan)
  8401. _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%);"
  8402. _loading.appendChild(_lchild)
  8403. var _box = $$('div', {
  8404. "style": {
  8405. "position": "relative",
  8406. "width": "100%",
  8407. "height": "100%",
  8408. },
  8409. })
  8410. _box.appendChild(_loading)
  8411. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8412. switch (str) {
  8413. case "CocoPi":
  8414. aTool = 57;
  8415. _iframe = $$("iframe", {
  8416. "allowpaymentrequest": "allowpaymentrequest",
  8417. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8418. "webkitallowfullscreen": "",
  8419. "mozallowfullscreen": "",
  8420. "frameborder": "no",
  8421. "border": "0",
  8422. "scrolling ": "no",
  8423. "style": {
  8424. "cssText": "border:0;width:100%;height:100%"
  8425. },
  8426. "src": "https://pi.cocorobo.cn/"
  8427. })
  8428. _box.appendChild(_iframe);
  8429. _box.appendChild(_jie);
  8430. _formdiv = new U.UF.UI.form(
  8431. "CocoPi-" + _username,
  8432. _box, {
  8433. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8434. "style": {
  8435. "width": "90%",
  8436. "height": "90%",
  8437. "overflow": 'hidden'
  8438. },
  8439. "onresize": function () { }
  8440. }, {
  8441. closecallback: function () { }
  8442. }, {
  8443. "style": {
  8444. "height": "36px"
  8445. }
  8446. }).form; //创建窗体
  8447. _taskbar = {
  8448. "id": str + _formdiv.id,
  8449. "style": {
  8450. "backgroundImage": "url(/img/icon/cocopi.png)"
  8451. },
  8452. "name": "CocoPi",
  8453. "forms": _formdiv,
  8454. "click": function () {
  8455. U.MD.D.I.openApplication(str, obj, info);
  8456. }
  8457. }
  8458. break;
  8459. }
  8460. if (_iframe) {
  8461. if (str == 'CocoPi') {
  8462. _iframe = _formdiv.querySelector('iframe')
  8463. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8464. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8465. })
  8466. if (onloadListener) {
  8467. _iframe.contentDocument.location.reload()
  8468. } else {
  8469. _iframe.contentDocument.location.reload()
  8470. }
  8471. }
  8472. _jie.onclick = async () => {
  8473. let text = ''
  8474. if (aTool == 57) {
  8475. text = _iframe.contentWindow.getLoadXmlStr()
  8476. }
  8477. _loading.style.display = 'flex'
  8478. console.log(_loading);
  8479. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8480. _loading.style.display = 'none'
  8481. let _div = document.createElement('div')
  8482. _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;"
  8483. let _inner = document.createElement('div')
  8484. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8485. _inner.innerHTML = "上传成功"
  8486. _div.appendChild(_inner)
  8487. _iframe.contentWindow.window.document.body.appendChild(_div)
  8488. _div.onclick = () => {
  8489. _iframe.contentWindow.window.document.body.removeChild(_div)
  8490. }
  8491. setTimeout(() => {
  8492. _iframe.contentWindow.window.document.body.removeChild(_div)
  8493. }, 1000);
  8494. }, [], { "type": "POST", "withCredentials": true });
  8495. }
  8496. }
  8497. }
  8498. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8499. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8500. if (res.value[0].length > 0) {
  8501. if (atool == 57) {
  8502. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8503. }
  8504. } else {
  8505. if (atool == 57) {
  8506. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8507. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8508. }
  8509. }
  8510. }, [], { "type": "POST", "withCredentials": true });
  8511. }