DeskTop.js 646 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390
  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.SONGteacherDeskIcon = [
  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": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "實時課堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "師生項目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "師生項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教師管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "學生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "學校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的資料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL項目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "項目進展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未來小學
  416. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未來小學admin
  433. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教師桌面圖標的全局變量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教師桌面圖標的全局變量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作項目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龍華中心小學教師桌面圖標的全局變量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院實小教師桌面圖標的全局變量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.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": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "數據融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "評測看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教師管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院實小教師桌面圖標的全局變量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小學教師桌面圖標的全局變量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小學學生桌面圖標的全局變量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. // { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //雲海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "項目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未來教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  928. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  929. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  930. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  931. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  932. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  933. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  936. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  937. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  938. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  939. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  940. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  941. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  942. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  943. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  944. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  945. ];
  946. //未來教育基地
  947. U.MD.D.I.szjkyAdminDeskIcon = [
  948. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  949. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  950. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  951. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  952. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  953. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  954. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  955. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  956. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  957. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  958. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  959. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  960. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  961. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  962. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  964. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  965. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  966. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  967. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  968. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  970. // { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  971. // { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  972. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  973. ];
  974. //未來教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成華教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成華教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成華教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  1025. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcTeacherDeskIcon = [
  1032. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的資料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "電子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "問卷調查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便簽分類", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思維導圖", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "協同文檔", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思維網格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "項目設計", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "訓練平臺", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "編程平臺", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI體驗", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI編程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源碼編輯", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻譯", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒識字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24點", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "數學畫板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //鹽田區幼兒園
  1205. U.MD.D.I.ytyTeacherDeskIcon = [
  1206. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "課程評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1209. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1212. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1215. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1216. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1217. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1218. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1219. ];
  1220. //鹽田區幼兒園
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //scnuai
  1227. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1228. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1229. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1233. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1234. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1235. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1236. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1237. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1238. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1239. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1240. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1242. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1244. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1245. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1246. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1247. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1248. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1249. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1250. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1251. ];
  1252. //scnuai
  1253. U.MD.D.I.scnuaiAdminDeskIcon = [
  1254. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1255. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1256. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1257. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1258. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1259. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1260. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1261. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1262. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1263. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1264. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1265. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1266. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1269. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1270. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1272. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1273. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1274. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1275. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1276. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiStudentDeskIcon = [
  1280. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1284. ];
  1285. //cocobiz
  1286. U.MD.D.I.cocobizteacherDeskIcon = [
  1287. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1288. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1290. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1291. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1292. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1293. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1294. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1295. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1296. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1297. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1298. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1299. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1300. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1302. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1303. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1304. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1305. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1306. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1307. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizStudentDeskIcon = [
  1311. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1312. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1313. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1314. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1316. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1317. ];
  1318. //xxzjky
  1319. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1320. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1321. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1322. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1323. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1324. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1325. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1326. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1327. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1328. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1329. { "Name": "年級管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1330. { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1331. // { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1332. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1333. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1335. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1337. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1338. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1339. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1340. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1344. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1345. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1346. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1347. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1349. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1350. ];
  1351. //nsfx
  1352. U.MD.D.I.nsfxTeacherDeskIcon = [
  1353. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1354. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1355. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1356. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1357. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1360. { "Name": "素材庫", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1361. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1362. { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1363. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1364. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1365. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1366. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1367. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1368. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1369. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1370. ];
  1371. //nsfx
  1372. U.MD.D.I.nsfxStudentDeskIcon = [
  1373. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1374. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1375. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1376. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //stia
  1379. U.MD.D.I.stiaTeacherDeskIcon = [
  1380. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1390. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1393. ];
  1394. //stia
  1395. U.MD.D.I.stiaStudentDeskIcon = [
  1396. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. ];
  1401. //szdjg
  1402. U.MD.D.I.szdjgTeacherDeskIcon = [
  1403. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1404. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgStudentDeskIcon = [
  1408. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1411. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. ];
  1413. //010607
  1414. U.MD.D.I.x010607TeacherDeskIcon = [
  1415. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1416. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1417. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1418. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1419. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1420. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1421. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1422. { "Name": "目標管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1423. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1424. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1425. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1427. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1428. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1429. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1430. ];
  1431. //010607
  1432. U.MD.D.I.x010607StudentDeskIcon = [
  1433. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1436. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. ];
  1438. //010608
  1439. U.MD.D.I.x010608TeacherDeskIcon = [
  1440. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1441. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1442. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1443. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1444. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1445. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1446. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1447. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1448. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1450. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1454. ];
  1455. //010608
  1456. U.MD.D.I.x010608StudentDeskIcon = [
  1457. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1458. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1459. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. ];
  1462. //xhly
  1463. U.MD.D.I.xhlyTeacherDeskIcon = [
  1464. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.xhlyStudentDeskIcon = [
  1468. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. ];
  1470. //北師大
  1471. U.MD.D.I.BSDNSteacherDeskIcon = [
  1472. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1475. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1476. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1479. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1480. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. ];
  1484. //北師大
  1485. U.MD.D.I.BSDNSstudentDeskIcon = [
  1486. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1489. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. ];
  1491. //CUHK_EDU
  1492. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1493. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1494. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1495. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1496. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1497. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1498. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1499. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1500. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1501. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1503. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1504. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1505. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1506. // { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1507. ];
  1508. //CUHK_EDU
  1509. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1510. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1511. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1512. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1513. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. ];
  1515. //010503
  1516. U.MD.D.I.x010503TeacherDeskIcon = [
  1517. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1518. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. ];
  1520. //010503
  1521. U.MD.D.I.x010503StudentDeskIcon = [
  1522. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1523. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1524. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1525. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1526. ];
  1527. //SPROUT Lab
  1528. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1529. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1530. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1531. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1532. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1533. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1534. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1535. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1536. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1537. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1538. ];
  1539. //SPROUT Lab
  1540. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1541. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1543. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1544. ];
  1545. //010204
  1546. U.MD.D.I.x010204TeacherDeskIcon = [
  1547. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1548. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. ];
  1550. //010204
  1551. U.MD.D.I.x010204StudentDeskIcon = [
  1552. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1556. ];
  1557. //trail
  1558. U.MD.D.I.trailTeacherDeskIcon = [
  1559. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1560. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. ];
  1562. //trail
  1563. U.MD.D.I.trailStudentDeskIcon = [
  1564. // { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. // { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1568. ];
  1569. //010504
  1570. U.MD.D.I.x010504TeacherDeskIcon = [
  1571. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1572. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1574. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1575. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1576. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1577. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1578. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. ];
  1580. //010504
  1581. U.MD.D.I.x010504StudentDeskIcon = [
  1582. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. // { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //SCNUET
  1588. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1589. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1590. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1594. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1595. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1596. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1597. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1598. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1599. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1600. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1601. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1602. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1603. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1604. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1606. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1607. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1608. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1609. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1610. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1611. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1612. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1613. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1614. ];
  1615. //SCNUET
  1616. U.MD.D.I.SCNUETAdminDeskIcon = [
  1617. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1620. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1621. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1622. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1623. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1624. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1625. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1626. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1627. // { "Name": "班級管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1628. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1629. // { "Name": "課程進展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1630. // { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. // { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1632. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1633. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1634. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1635. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1636. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1637. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1638. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1639. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1640. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1641. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1642. ];
  1643. //SCNUET
  1644. U.MD.D.I.SCNUETStudentDeskIcon = [
  1645. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. ];
  1650. //x020201
  1651. U.MD.D.I.x020201TeacherDeskIcon = [
  1652. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1653. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1654. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1655. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1656. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1657. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1658. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1659. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1660. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1661. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1662. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1663. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1664. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1665. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1666. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1667. ];
  1668. //x020201
  1669. U.MD.D.I.x020201AdminDeskIcon = [
  1670. { "Name": "課程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1671. { "Name": "課程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. { "Name": "項目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1675. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1676. { "Name": "學生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1677. { "Name": "學生評價", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1678. { "Name": "教學資源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1679. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1680. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1681. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1682. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1683. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1684. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1685. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1686. ];
  1687. //020201
  1688. U.MD.D.I.x020201StudentDeskIcon = [
  1689. { "Name": "課程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1690. { "Name": "項目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1691. { "Name": "項目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1692. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. ];
  1694. //#region 桌面初始化a
  1695. /**
  1696. * 初始化桌面的起始函數
  1697. *
  1698. */
  1699. U.MD.D.I.init = function () {
  1700. if ($("#U_MD_D_K")[0]) {
  1701. //初始化桌面圖標
  1702. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1703. // var clickUrl = ':12588/requestIp.php';
  1704. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1705. // U.MD.D.I.Ip = data;
  1706. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1707. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1708. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1709. // })
  1710. // //初始化任務欄,因為是靜態的,所以直接改變樣式即可.
  1711. // })
  1712. }
  1713. }
  1714. /**
  1715. * 模式切換
  1716. *
  1717. */
  1718. U.MD.D.I.ModeCheck = function (type) {
  1719. if (US.Config.type == type) {
  1720. return
  1721. }
  1722. US.Config.type = type
  1723. $('.U_PBL_Check .active')[0].className = ''
  1724. if (type == 1) {
  1725. $('.U_PBL_Check div')[0].className = 'active'
  1726. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1727. } else {
  1728. $('.U_PBL_Check div')[1].className = 'active'
  1729. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1730. }
  1731. //初始化桌面圖標
  1732. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1733. if (type == 2) {
  1734. U.MD.D.I.openApplication("project")
  1735. }
  1736. }
  1737. /**
  1738. * 隱藏任務欄
  1739. *
  1740. * @param {element} 桌面元素
  1741. */
  1742. U.MD.D.I.hiddenTaskbar = function (el) {
  1743. //任務欄位置變小
  1744. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1745. //桌面的位置變大
  1746. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1747. }
  1748. /**
  1749. * 隱藏任務欄
  1750. *
  1751. * @param {element} 桌面元素
  1752. */
  1753. U.MD.D.I.hiddenTaskbarout = function (el) {
  1754. //任務欄位置變小
  1755. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1756. //任務欄位置變化
  1757. U.selectEl(el).css({ "bottom": "-60px" });
  1758. //桌面的位置變大
  1759. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1760. }
  1761. }
  1762. /**
  1763. * 初始化打印桌面圖標
  1764. *
  1765. * @param {element} 桌面元素
  1766. */
  1767. U.MD.D.I.initDesktopIcons = function (el, type) {
  1768. var i, //用於循環
  1769. _content, //桌面圖標元素
  1770. _iconcontent, //桌面圖標元素
  1771. _frag = $$("frag"), //定義一個碎片元素
  1772. _type = US.userInfo.type,
  1773. _org = US.userInfo.org,
  1774. _oid = US.userInfo.organizeid,
  1775. _role = US.userInfo.role,
  1776. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //獲取教師端桌面圖標
  1777. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //極簡模式桌面圖標
  1778. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //獲取教師端桌面圖標
  1779. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //獲取學生端桌面圖標
  1780. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //獲取學生端桌面圖標
  1781. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //獲取學生端桌面圖標
  1782. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //獲取組織桌面圖標
  1783. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1784. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1785. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1786. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //獲取測試學校桌面圖標
  1787. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //獲取北師大.
  1788. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //獲取北師大.
  1789. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //獲取周佳名工作室
  1790. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //獲取松山湖
  1791. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //獲取萬科雙語
  1792. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //獲取萬科雙語
  1793. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //獲取萬科雙語
  1794. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //獲取未來小學
  1795. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //獲取未來小學
  1796. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //獲取光明學校桌面圖標
  1797. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //獲取光明學校桌面圖標
  1798. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //騰訊學生
  1799. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //騰訊學生
  1800. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1801. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1802. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未來教育基地
  1803. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未來教育基地
  1804. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未來教育基地
  1805. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成華教育局
  1806. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成華教育局
  1807. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成華教育局
  1808. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1809. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1810. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1811. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1812. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1813. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1814. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1815. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1816. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1817. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龍華中心
  1818. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1819. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1820. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1821. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1822. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //騰訊學生
  1823. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1824. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1825. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1826. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1827. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1828. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1829. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1830. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1831. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1832. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1833. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //雲海
  1834. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1835. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1836. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1837. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1838. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1839. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1840. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1841. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1842. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1843. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1844. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1845. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 鹽田幼兒園
  1846. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 鹽田幼兒園
  1847. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //網絡夏令營
  1848. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //網絡夏令營
  1849. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1850. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1851. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1852. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1853. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1854. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1855. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1856. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1857. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1858. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1859. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1860. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1861. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1862. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1863. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1864. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1865. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1866. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1867. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1868. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1869. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1870. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1871. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1872. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1873. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1874. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1875. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1876. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1877. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1878. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1879. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1880. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1881. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1882. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1883. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5'];
  1884. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3'];
  1885. //清楚桌面圖標
  1886. el.innerHTML = "";
  1887. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1888. _teacherDesktopIconInfo.push(
  1889. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1890. { "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)" } },
  1891. )
  1892. _easyDesktopIconInfo.push({ "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1893. }
  1894. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1895. _teacherDesktopIconInfo.push(
  1896. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1897. { "Name": "學習分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1898. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1899. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1900. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1901. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1902. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1903. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1904. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1905. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1906. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1907. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1908. { "Name": "觀察記錄", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1909. { "Name": "課堂觀察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1910. { "Name": "學生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1911. { "Name": "知識建構", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1912. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1913. )
  1914. }
  1915. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪學校
  1916. _teacherDesktopIconInfo.push(
  1917. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1918. )
  1919. }
  1920. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1921. // _teacherDesktopIconInfo.push(
  1922. // )
  1923. // }
  1924. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1925. _teacherDesktopIconInfo.push(
  1926. { "Name": "AI共創", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1927. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1928. )
  1929. }
  1930. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1931. _teacherDesktopIconInfo.push(
  1932. { "Name": "AI協同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1933. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1934. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1935. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1936. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1937. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1938. )
  1939. _studentDesktopIconInfo.push(
  1940. )
  1941. }
  1942. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1943. _teacherDesktopIconInfo.push(
  1944. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1945. )
  1946. _studentDesktopIconInfo.push(
  1947. )
  1948. }
  1949. //010606 組織
  1950. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  1951. _teacherDesktopIconInfo.push(
  1952. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1953. )
  1954. _studentDesktopIconInfo.push(
  1955. )
  1956. }
  1957. //麒麟二中 和 民新小學
  1958. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1959. _teacherDesktopIconInfo.push(
  1960. )
  1961. }
  1962. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1963. _teacherDesktopIconInfo.push(
  1964. { "Name": "教師管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1965. { "Name": "教師中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1966. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1967. )
  1968. }
  1969. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  1970. _hkTeacherDeskIconInfo.push(
  1971. { "Name": "教師管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1972. )
  1973. }
  1974. //北師大附中(010601)
  1975. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1976. // _teacherDesktopIconInfo.push(
  1977. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1978. // )
  1979. // _studentDesktopIconInfo.push(
  1980. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1981. // )
  1982. // }
  1983. //樂善堂余近卿中學
  1984. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1985. _teacherDesktopIconInfo.push(
  1986. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1987. )
  1988. }
  1989. // Education Artificial Intelligence
  1990. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1991. _teacherDesktopIconInfo.push(
  1992. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1993. )
  1994. }
  1995. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1996. _teacherDesktopIconInfo.push(
  1997. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1998. )
  1999. }
  2000. // 馬巒小學 和 龍華區教育科學研究院附屬學校 和 僑香學校
  2001. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2002. _teacherDesktopIconInfo.push(
  2003. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2004. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2005. )
  2006. }
  2007. //麒麟二中
  2008. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2009. _studentDesktopIconInfo.push(
  2010. // { "Name": "數據看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2011. { "Name": "綜合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2012. )
  2013. }
  2014. //萬科雙語
  2015. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2016. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2017. if (el.Name == '項目管理') {
  2018. el.Name = 'PBL項目'
  2019. }
  2020. return el
  2021. })
  2022. _studentDesktopIconInfo3.push(
  2023. { "Name": "協同建構", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2024. )
  2025. }
  2026. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2027. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2028. return el.Name != '魔盒識字' && el.Name != '24點'
  2029. })
  2030. }
  2031. 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) {
  2032. _studentDesktopIconInfo.push(
  2033. { "Name": "我的評價", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2034. { "Name": "學生評價", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2035. )
  2036. }
  2037. //循環創建桌面圖標
  2038. if (type == 1) {
  2039. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2040. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2041. _content = $$("div", {
  2042. className: "U_MD_D_KO",
  2043. "onmousedown": U.UF.C.closure(function (obj) {
  2044. //防止拖動圖標即打開了桌面應用
  2045. U.MD.D.click(this, obj);
  2046. }, [_studentDesktopIconInfo[i]]),
  2047. "onclick": U.UF.C.closure(function (obj) {
  2048. //防止拖動圖標即打開了桌面應用
  2049. U.MD.D.click(this, obj);
  2050. }, [_studentDesktopIconInfo[i]])
  2051. }, _frag); //
  2052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2055. }
  2056. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2057. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2058. _content = $$("div", {
  2059. className: "U_MD_D_KO",
  2060. "onmousedown": U.UF.C.closure(function (obj) {
  2061. //防止拖動圖標即打開了桌面應用
  2062. U.MD.D.click(this, obj);
  2063. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2064. "onclick": U.UF.C.closure(function (obj) {
  2065. //防止拖動圖標即打開了桌面應用
  2066. U.MD.D.click(this, obj);
  2067. }, [_hkZJLSStudentDeskIconInfo[i]])
  2068. }, _frag); //
  2069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2072. } //
  2073. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2074. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2075. _content = $$("div", {
  2076. className: "U_MD_D_KO",
  2077. "onmousedown": U.UF.C.closure(function (obj) {
  2078. //防止拖動圖標即打開了桌面應用
  2079. U.MD.D.click(this, obj);
  2080. }, [_ytyStudentDeskIconInfo[i]]),
  2081. "onclick": U.UF.C.closure(function (obj) {
  2082. //防止拖動圖標即打開了桌面應用
  2083. U.MD.D.click(this, obj);
  2084. }, [_ytyStudentDeskIconInfo[i]])
  2085. }, _frag); //
  2086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2089. } //
  2090. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2091. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2092. _content = $$("div", {
  2093. className: "U_MD_D_KO",
  2094. "onmousedown": U.UF.C.closure(function (obj) {
  2095. //防止拖動圖標即打開了桌面應用
  2096. U.MD.D.click(this, obj);
  2097. }, [_jccssylStudentDeskIconInfo[i]]),
  2098. "onclick": U.UF.C.closure(function (obj) {
  2099. //防止拖動圖標即打開了桌面應用
  2100. U.MD.D.click(this, obj);
  2101. }, [_jccssylStudentDeskIconInfo[i]])
  2102. }, _frag); //
  2103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2106. }
  2107. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2108. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2109. _content = $$("div", {
  2110. className: "U_MD_D_KO",
  2111. "onmousedown": U.UF.C.closure(function (obj) {
  2112. //防止拖動圖標即打開了桌面應用
  2113. U.MD.D.click(this, obj);
  2114. }, [_scnuaiStudentDeskIconInfo[i]]),
  2115. "onclick": U.UF.C.closure(function (obj) {
  2116. //防止拖動圖標即打開了桌面應用
  2117. U.MD.D.click(this, obj);
  2118. }, [_scnuaiStudentDeskIconInfo[i]])
  2119. }, _frag); //
  2120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2123. }
  2124. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2125. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2126. _content = $$("div", {
  2127. className: "U_MD_D_KO",
  2128. "onmousedown": U.UF.C.closure(function (obj) {
  2129. //防止拖動圖標即打開了桌面應用
  2130. U.MD.D.click(this, obj);
  2131. }, [_caleStudentDeskIconInfo[i]]),
  2132. "onclick": U.UF.C.closure(function (obj) {
  2133. //防止拖動圖標即打開了桌面應用
  2134. U.MD.D.click(this, obj);
  2135. }, [_caleStudentDeskIconInfo[i]])
  2136. }, _frag); //
  2137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2140. }
  2141. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2142. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2143. _content = $$("div", {
  2144. className: "U_MD_D_KO",
  2145. "onmousedown": U.UF.C.closure(function (obj) {
  2146. //防止拖動圖標即打開了桌面應用
  2147. U.MD.D.click(this, obj);
  2148. }, [_thuioeStudentDeskIconInfo[i]]),
  2149. "onclick": U.UF.C.closure(function (obj) {
  2150. //防止拖動圖標即打開了桌面應用
  2151. U.MD.D.click(this, obj);
  2152. }, [_thuioeStudentDeskIconInfo[i]])
  2153. }, _frag); //
  2154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2157. }
  2158. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2159. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2160. _content = $$("div", {
  2161. className: "U_MD_D_KO",
  2162. "onmousedown": U.UF.C.closure(function (obj) {
  2163. //防止拖動圖標即打開了桌面應用
  2164. U.MD.D.click(this, obj);
  2165. }, [_tpcStudentDeskIconInfo[i]]),
  2166. "onclick": U.UF.C.closure(function (obj) {
  2167. //防止拖動圖標即打開了桌面應用
  2168. U.MD.D.click(this, obj);
  2169. }, [_tpcStudentDeskIconInfo[i]])
  2170. }, _frag); //
  2171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2174. } //
  2175. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2176. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2177. _content = $$("div", {
  2178. className: "U_MD_D_KO",
  2179. "onmousedown": U.UF.C.closure(function (obj) {
  2180. //防止拖動圖標即打開了桌面應用
  2181. U.MD.D.click(this, obj);
  2182. }, [_chjyjStudentDeskIconInfo[i]]),
  2183. "onclick": U.UF.C.closure(function (obj) {
  2184. //防止拖動圖標即打開了桌面應用
  2185. U.MD.D.click(this, obj);
  2186. }, [_chjyjStudentDeskIconInfo[i]])
  2187. }, _frag); //
  2188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2191. }
  2192. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2193. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2194. _content = $$("div", {
  2195. className: "U_MD_D_KO",
  2196. "onmousedown": U.UF.C.closure(function (obj) {
  2197. //防止拖動圖標即打開了桌面應用
  2198. U.MD.D.click(this, obj);
  2199. }, [_szjkyStudentDeskIconInfo[i]]),
  2200. "onclick": U.UF.C.closure(function (obj) {
  2201. //防止拖動圖標即打開了桌面應用
  2202. U.MD.D.click(this, obj);
  2203. }, [_szjkyStudentDeskIconInfo[i]])
  2204. }, _frag); //
  2205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2208. }
  2209. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2210. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2211. _content = $$("div", {
  2212. className: "U_MD_D_KO",
  2213. "onmousedown": U.UF.C.closure(function (obj) {
  2214. //防止拖動圖標即打開了桌面應用
  2215. U.MD.D.click(this, obj);
  2216. }, [_x020201StudentDeskIconInfo[i]]),
  2217. "onclick": U.UF.C.closure(function (obj) {
  2218. //防止拖動圖標即打開了桌面應用
  2219. U.MD.D.click(this, obj);
  2220. }, [_x020201StudentDeskIconInfo[i]])
  2221. }, _frag); //
  2222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2225. }
  2226. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2227. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2228. _content = $$("div", {
  2229. className: "U_MD_D_KO",
  2230. "onmousedown": U.UF.C.closure(function (obj) {
  2231. //防止拖動圖標即打開了桌面應用
  2232. U.MD.D.click(this, obj);
  2233. }, [_SCNUETStudentDeskIconInfo[i]]),
  2234. "onclick": U.UF.C.closure(function (obj) {
  2235. //防止拖動圖標即打開了桌面應用
  2236. U.MD.D.click(this, obj);
  2237. }, [_SCNUETStudentDeskIconInfo[i]])
  2238. }, _frag); //
  2239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2242. }
  2243. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2244. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2245. _content = $$("div", {
  2246. className: "U_MD_D_KO",
  2247. "onmousedown": U.UF.C.closure(function (obj) {
  2248. //防止拖動圖標即打開了桌面應用
  2249. U.MD.D.click(this, obj);
  2250. }, [_dseiStudentDeskIconInfo[i]]),
  2251. "onclick": U.UF.C.closure(function (obj) {
  2252. //防止拖動圖標即打開了桌面應用
  2253. U.MD.D.click(this, obj);
  2254. }, [_dseiStudentDeskIconInfo[i]])
  2255. }, _frag); //
  2256. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2257. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2258. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2259. }
  2260. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2261. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2262. _content = $$("div", {
  2263. className: "U_MD_D_KO",
  2264. "onmousedown": U.UF.C.closure(function (obj) {
  2265. //防止拖動圖標即打開了桌面應用
  2266. U.MD.D.click(this, obj);
  2267. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2268. "onclick": U.UF.C.closure(function (obj) {
  2269. //防止拖動圖標即打開了桌面應用
  2270. U.MD.D.click(this, obj);
  2271. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2272. }, _frag); //
  2273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2276. }
  2277. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2278. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2279. _content = $$("div", {
  2280. className: "U_MD_D_KO",
  2281. "onmousedown": U.UF.C.closure(function (obj) {
  2282. //防止拖動圖標即打開了桌面應用
  2283. U.MD.D.click(this, obj);
  2284. }, [_nsfxStudentDeskIconInfo[i]]),
  2285. "onclick": U.UF.C.closure(function (obj) {
  2286. //防止拖動圖標即打開了桌面應用
  2287. U.MD.D.click(this, obj);
  2288. }, [_nsfxStudentDeskIconInfo[i]])
  2289. }, _frag); //
  2290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2293. }
  2294. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2295. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2296. _content = $$("div", {
  2297. className: "U_MD_D_KO",
  2298. "onmousedown": U.UF.C.closure(function (obj) {
  2299. //防止拖動圖標即打開了桌面應用
  2300. U.MD.D.click(this, obj);
  2301. }, [_stiaStudentDeskIconInfo[i]]),
  2302. "onclick": U.UF.C.closure(function (obj) {
  2303. //防止拖動圖標即打開了桌面應用
  2304. U.MD.D.click(this, obj);
  2305. }, [_stiaStudentDeskIconInfo[i]])
  2306. }, _frag); //
  2307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2310. }
  2311. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2312. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2313. _content = $$("div", {
  2314. className: "U_MD_D_KO",
  2315. "onmousedown": U.UF.C.closure(function (obj) {
  2316. //防止拖動圖標即打開了桌面應用
  2317. U.MD.D.click(this, obj);
  2318. }, [_szdjgStudentDeskIconInfo[i]]),
  2319. "onclick": U.UF.C.closure(function (obj) {
  2320. //防止拖動圖標即打開了桌面應用
  2321. U.MD.D.click(this, obj);
  2322. }, [_szdjgStudentDeskIconInfo[i]])
  2323. }, _frag); //
  2324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2327. }
  2328. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2329. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2330. _content = $$("div", {
  2331. className: "U_MD_D_KO",
  2332. "onmousedown": U.UF.C.closure(function (obj) {
  2333. //防止拖動圖標即打開了桌面應用
  2334. U.MD.D.click(this, obj);
  2335. }, [_x010607StudentDeskIconInfo[i]]),
  2336. "onclick": U.UF.C.closure(function (obj) {
  2337. //防止拖動圖標即打開了桌面應用
  2338. U.MD.D.click(this, obj);
  2339. }, [_x010607StudentDeskIconInfo[i]])
  2340. }, _frag); //
  2341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2344. }
  2345. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2346. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2347. _content = $$("div", {
  2348. className: "U_MD_D_KO",
  2349. "onmousedown": U.UF.C.closure(function (obj) {
  2350. //防止拖動圖標即打開了桌面應用
  2351. U.MD.D.click(this, obj);
  2352. }, [_xhlyStudentDeskIconInfo[i]]),
  2353. "onclick": U.UF.C.closure(function (obj) {
  2354. //防止拖動圖標即打開了桌面應用
  2355. U.MD.D.click(this, obj);
  2356. }, [_xhlyStudentDeskIconInfo[i]])
  2357. }, _frag); //
  2358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2361. }
  2362. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2363. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2364. _content = $$("div", {
  2365. className: "U_MD_D_KO",
  2366. "onmousedown": U.UF.C.closure(function (obj) {
  2367. //防止拖動圖標即打開了桌面應用
  2368. U.MD.D.click(this, obj);
  2369. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2370. "onclick": U.UF.C.closure(function (obj) {
  2371. //防止拖動圖標即打開了桌面應用
  2372. U.MD.D.click(this, obj);
  2373. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2374. }, _frag); //
  2375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2378. }
  2379. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2380. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2381. _content = $$("div", {
  2382. className: "U_MD_D_KO",
  2383. "onmousedown": U.UF.C.closure(function (obj) {
  2384. //防止拖動圖標即打開了桌面應用
  2385. U.MD.D.click(this, obj);
  2386. }, [_x010503StudentDeskIconInfo[i]]),
  2387. "onclick": U.UF.C.closure(function (obj) {
  2388. //防止拖動圖標即打開了桌面應用
  2389. U.MD.D.click(this, obj);
  2390. }, [_x010503StudentDeskIconInfo[i]])
  2391. }, _frag); //
  2392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2395. }
  2396. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2397. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2398. _content = $$("div", {
  2399. className: "U_MD_D_KO",
  2400. "onmousedown": U.UF.C.closure(function (obj) {
  2401. //防止拖動圖標即打開了桌面應用
  2402. U.MD.D.click(this, obj);
  2403. }, [_x010504StudentDeskIconInfo[i]]),
  2404. "onclick": U.UF.C.closure(function (obj) {
  2405. //防止拖動圖標即打開了桌面應用
  2406. U.MD.D.click(this, obj);
  2407. }, [_x010504StudentDeskIconInfo[i]])
  2408. }, _frag); //
  2409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2412. }
  2413. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2414. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2415. _content = $$("div", {
  2416. className: "U_MD_D_KO",
  2417. "onmousedown": U.UF.C.closure(function (obj) {
  2418. //防止拖動圖標即打開了桌面應用
  2419. U.MD.D.click(this, obj);
  2420. }, [_x010204StudentDeskIconInfo[i]]),
  2421. "onclick": U.UF.C.closure(function (obj) {
  2422. //防止拖動圖標即打開了桌面應用
  2423. U.MD.D.click(this, obj);
  2424. }, [_x010204StudentDeskIconInfo[i]])
  2425. }, _frag); //
  2426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2429. }
  2430. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2431. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2432. _content = $$("div", {
  2433. className: "U_MD_D_KO",
  2434. "onmousedown": U.UF.C.closure(function (obj) {
  2435. //防止拖動圖標即打開了桌面應用
  2436. U.MD.D.click(this, obj);
  2437. }, [_trailStudentDeskIconInfo[i]]),
  2438. "onclick": U.UF.C.closure(function (obj) {
  2439. //防止拖動圖標即打開了桌面應用
  2440. U.MD.D.click(this, obj);
  2441. }, [_trailStudentDeskIconInfo[i]])
  2442. }, _frag); //
  2443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2446. }
  2447. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2448. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2449. _content = $$("div", {
  2450. className: "U_MD_D_KO",
  2451. "onmousedown": U.UF.C.closure(function (obj) {
  2452. //防止拖動圖標即打開了桌面應用
  2453. U.MD.D.click(this, obj);
  2454. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2455. "onclick": U.UF.C.closure(function (obj) {
  2456. //防止拖動圖標即打開了桌面應用
  2457. U.MD.D.click(this, obj);
  2458. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2459. }, _frag); //
  2460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2463. }
  2464. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2465. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2466. _content = $$("div", {
  2467. className: "U_MD_D_KO",
  2468. "onmousedown": U.UF.C.closure(function (obj) {
  2469. //防止拖動圖標即打開了桌面應用
  2470. U.MD.D.click(this, obj);
  2471. }, [_x010608StudentDeskIconInfo[i]]),
  2472. "onclick": U.UF.C.closure(function (obj) {
  2473. //防止拖動圖標即打開了桌面應用
  2474. U.MD.D.click(this, obj);
  2475. }, [_x010608StudentDeskIconInfo[i]])
  2476. }, _frag); //
  2477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2480. }
  2481. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2482. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2483. _content = $$("div", {
  2484. className: "U_MD_D_KO",
  2485. "onmousedown": U.UF.C.closure(function (obj) {
  2486. //防止拖動圖標即打開了桌面應用
  2487. U.MD.D.click(this, obj);
  2488. }, [_siesStudentDeskIconInfo[i]]),
  2489. "onclick": U.UF.C.closure(function (obj) {
  2490. //防止拖動圖標即打開了桌面應用
  2491. U.MD.D.click(this, obj);
  2492. }, [_siesStudentDeskIconInfo[i]])
  2493. }, _frag); //
  2494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2497. }
  2498. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2499. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2500. _content = $$("div", {
  2501. className: "U_MD_D_KO",
  2502. "onmousedown": U.UF.C.closure(function (obj) {
  2503. //防止拖動圖標即打開了桌面應用
  2504. U.MD.D.click(this, obj);
  2505. }, [_guzmsStudentDeskIconInfo[i]]),
  2506. "onclick": U.UF.C.closure(function (obj) {
  2507. //防止拖動圖標即打開了桌面應用
  2508. U.MD.D.click(this, obj);
  2509. }, [_guzmsStudentDeskIconInfo[i]])
  2510. }, _frag); //
  2511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2514. }
  2515. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2516. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2517. _content = $$("div", {
  2518. className: "U_MD_D_KO",
  2519. "onmousedown": U.UF.C.closure(function (obj) {
  2520. //防止拖動圖標即打開了桌面應用
  2521. U.MD.D.click(this, obj);
  2522. }, [_hkStudentDeskIconInfo[i]]),
  2523. "onclick": U.UF.C.closure(function (obj) {
  2524. //防止拖動圖標即打開了桌面應用
  2525. U.MD.D.click(this, obj);
  2526. }, [_hkStudentDeskIconInfo[i]])
  2527. }, _frag); //
  2528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2531. }
  2532. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2533. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2534. _content = $$("div", {
  2535. className: "U_MD_D_KO",
  2536. "onmousedown": U.UF.C.closure(function (obj) {
  2537. //防止拖動圖標即打開了桌面應用
  2538. U.MD.D.click(this, obj);
  2539. }, [_hkaceStudentDeskIconInfo[i]]),
  2540. "onclick": U.UF.C.closure(function (obj) {
  2541. //防止拖動圖標即打開了桌面應用
  2542. U.MD.D.click(this, obj);
  2543. }, [_hkaceStudentDeskIconInfo[i]])
  2544. }, _frag); //
  2545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2548. }
  2549. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2550. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2551. _content = $$("div", {
  2552. className: "U_MD_D_KO",
  2553. "onmousedown": U.UF.C.closure(function (obj) {
  2554. //防止拖動圖標即打開了桌面應用
  2555. U.MD.D.click(this, obj);
  2556. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2557. "onclick": U.UF.C.closure(function (obj) {
  2558. //防止拖動圖標即打開了桌面應用
  2559. U.MD.D.click(this, obj);
  2560. }, [_BSDNSstudentDesktopIconInfo[i]])
  2561. }, _frag); //
  2562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2565. }
  2566. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2567. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2568. _content = $$("div", {
  2569. className: "U_MD_D_KO",
  2570. "onmousedown": U.UF.C.closure(function (obj) {
  2571. //防止拖動圖標即打開了桌面應用
  2572. U.MD.D.click(this, obj);
  2573. }, [_cocobizStudentDeskIconInfo[i]]),
  2574. "onclick": U.UF.C.closure(function (obj) {
  2575. //防止拖動圖標即打開了桌面應用
  2576. U.MD.D.click(this, obj);
  2577. }, [_cocobizStudentDeskIconInfo[i]])
  2578. }, _frag); //
  2579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2582. }
  2583. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2584. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2585. _content = $$("div", {
  2586. className: "U_MD_D_KO",
  2587. "onmousedown": U.UF.C.closure(function (obj) {
  2588. //防止拖動圖標即打開了桌面應用
  2589. U.MD.D.click(this, obj);
  2590. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2591. "onclick": U.UF.C.closure(function (obj) {
  2592. //防止拖動圖標即打開了桌面應用
  2593. U.MD.D.click(this, obj);
  2594. }, [_xxzjkyStudentDeskIconInfo[i]])
  2595. }, _frag); //
  2596. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2597. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2598. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2599. }
  2600. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2601. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2602. _content = $$("div", {
  2603. className: "U_MD_D_KO",
  2604. "onmousedown": U.UF.C.closure(function (obj) {
  2605. //防止拖動圖標即打開了桌面應用
  2606. U.MD.D.click(this, obj);
  2607. }, [_studentDesktopIconInfo[i]]),
  2608. "onclick": U.UF.C.closure(function (obj) {
  2609. //防止拖動圖標即打開了桌面應用
  2610. U.MD.D.click(this, obj);
  2611. }, [_studentDesktopIconInfo[i]])
  2612. }, _frag); //
  2613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2616. }
  2617. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2618. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2619. _content = $$("div", {
  2620. className: "U_MD_D_KO",
  2621. "onmousedown": U.UF.C.closure(function (obj) {
  2622. //防止拖動圖標即打開了桌面應用
  2623. U.MD.D.click(this, obj);
  2624. }, [_tcStudentDeskIconInfo[i]]),
  2625. "onclick": U.UF.C.closure(function (obj) {
  2626. //防止拖動圖標即打開了桌面應用
  2627. U.MD.D.click(this, obj);
  2628. }, [_tcStudentDeskIconInfo[i]])
  2629. }, _frag); //
  2630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2633. }
  2634. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2635. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2636. _content = $$("div", {
  2637. className: "U_MD_D_KO",
  2638. "onmousedown": U.UF.C.closure(function (obj) {
  2639. //防止拖動圖標即打開了桌面應用
  2640. U.MD.D.click(this, obj);
  2641. }, [_szscStudentDeskIconInfo[i]]),
  2642. "onclick": U.UF.C.closure(function (obj) {
  2643. //防止拖動圖標即打開了桌面應用
  2644. U.MD.D.click(this, obj);
  2645. }, [_szscStudentDeskIconInfo[i]])
  2646. }, _frag); //
  2647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2650. }
  2651. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2652. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2653. _content = $$("div", {
  2654. className: "U_MD_D_KO",
  2655. "onmousedown": U.UF.C.closure(function (obj) {
  2656. //防止拖動圖標即打開了桌面應用
  2657. U.MD.D.click(this, obj);
  2658. }, [_studentDesktopIconInfo3[i]]),
  2659. "onclick": U.UF.C.closure(function (obj) {
  2660. //防止拖動圖標即打開了桌面應用
  2661. U.MD.D.click(this, obj);
  2662. }, [_studentDesktopIconInfo3[i]])
  2663. }, _frag); //
  2664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2667. }
  2668. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2669. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2670. _content = $$("div", {
  2671. className: "U_MD_D_KO",
  2672. "onmousedown": U.UF.C.closure(function (obj) {
  2673. //防止拖動圖標即打開了桌面應用
  2674. U.MD.D.click(this, obj);
  2675. }, [_studentDesktopIconInfo2[i]]),
  2676. "onclick": U.UF.C.closure(function (obj) {
  2677. //防止拖動圖標即打開了桌面應用
  2678. U.MD.D.click(this, obj);
  2679. }, [_studentDesktopIconInfo2[i]])
  2680. }, _frag); //
  2681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2684. }
  2685. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2686. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2687. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2688. continue
  2689. }
  2690. _content = $$("div", {
  2691. className: "U_MD_D_KO",
  2692. "onmousedown": U.UF.C.closure(function (obj) {
  2693. //防止拖動圖標即打開了桌面應用
  2694. U.MD.D.click(this, obj);
  2695. }, [_wanketeacherDesktopIconInfo[i]]),
  2696. "onclick": U.UF.C.closure(function (obj) {
  2697. //防止拖動圖標即打開了桌面應用
  2698. U.MD.D.click(this, obj);
  2699. }, [_wanketeacherDesktopIconInfo[i]])
  2700. }, _frag); //
  2701. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2702. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2703. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2704. }
  2705. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2706. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2707. _content = $$("div", {
  2708. className: "U_MD_D_KO",
  2709. "onmousedown": U.UF.C.closure(function (obj) {
  2710. //防止拖動圖標即打開了桌面應用
  2711. U.MD.D.click(this, obj);
  2712. }, [_wankeAdminDesktopIconInfo[i]]),
  2713. "onclick": U.UF.C.closure(function (obj) {
  2714. //防止拖動圖標即打開了桌面應用
  2715. U.MD.D.click(this, obj);
  2716. }, [_wankeAdminDesktopIconInfo[i]])
  2717. }, _frag); //
  2718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2721. }
  2722. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2723. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2724. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2725. continue
  2726. }
  2727. _content = $$("div", {
  2728. className: "U_MD_D_KO",
  2729. "onmousedown": U.UF.C.closure(function (obj) {
  2730. //防止拖動圖標即打開了桌面應用
  2731. U.MD.D.click(this, obj);
  2732. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2733. "onclick": U.UF.C.closure(function (obj) {
  2734. //防止拖動圖標即打開了桌面應用
  2735. U.MD.D.click(this, obj);
  2736. }, [_scnuaiTeacherDeskIconInfo[i]])
  2737. }, _frag); //
  2738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2741. }
  2742. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2743. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2744. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2745. continue
  2746. }
  2747. _content = $$("div", {
  2748. className: "U_MD_D_KO",
  2749. "onmousedown": U.UF.C.closure(function (obj) {
  2750. //防止拖動圖標即打開了桌面應用
  2751. U.MD.D.click(this, obj);
  2752. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2753. "onclick": U.UF.C.closure(function (obj) {
  2754. //防止拖動圖標即打開了桌面應用
  2755. U.MD.D.click(this, obj);
  2756. }, [_BSDNSteacherDesktopIconInfo[i]])
  2757. }, _frag); //
  2758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2761. }
  2762. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2763. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2764. _content = $$("div", {
  2765. className: "U_MD_D_KO",
  2766. "onmousedown": U.UF.C.closure(function (obj) {
  2767. //防止拖動圖標即打開了桌面應用
  2768. U.MD.D.click(this, obj);
  2769. }, [_scnuaiAdminDeskIconInfo[i]]),
  2770. "onclick": U.UF.C.closure(function (obj) {
  2771. //防止拖動圖標即打開了桌面應用
  2772. U.MD.D.click(this, obj);
  2773. }, [_scnuaiAdminDeskIconInfo[i]])
  2774. }, _frag); //
  2775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2778. }
  2779. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2780. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2781. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2782. continue
  2783. }
  2784. _content = $$("div", {
  2785. className: "U_MD_D_KO",
  2786. "onmousedown": U.UF.C.closure(function (obj) {
  2787. //防止拖動圖標即打開了桌面應用
  2788. U.MD.D.click(this, obj);
  2789. }, [_jccssylTeacherDeskIconInfo[i]]),
  2790. "onclick": U.UF.C.closure(function (obj) {
  2791. //防止拖動圖標即打開了桌面應用
  2792. U.MD.D.click(this, obj);
  2793. }, [_jccssylTeacherDeskIconInfo[i]])
  2794. }, _frag); //
  2795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2798. }
  2799. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2800. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2801. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2802. continue
  2803. }
  2804. _content = $$("div", {
  2805. className: "U_MD_D_KO",
  2806. "onmousedown": U.UF.C.closure(function (obj) {
  2807. //防止拖動圖標即打開了桌面應用
  2808. U.MD.D.click(this, obj);
  2809. }, [_caleTeacherDeskIconInfo[i]]),
  2810. "onclick": U.UF.C.closure(function (obj) {
  2811. //防止拖動圖標即打開了桌面應用
  2812. U.MD.D.click(this, obj);
  2813. }, [_caleTeacherDeskIconInfo[i]])
  2814. }, _frag); //
  2815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2818. }
  2819. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2820. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2821. _content = $$("div", {
  2822. className: "U_MD_D_KO",
  2823. "onmousedown": U.UF.C.closure(function (obj) {
  2824. //防止拖動圖標即打開了桌面應用
  2825. U.MD.D.click(this, obj);
  2826. }, [_tpcOrganizerDeskIconInfo[i]]),
  2827. "onclick": U.UF.C.closure(function (obj) {
  2828. //防止拖動圖標即打開了桌面應用
  2829. U.MD.D.click(this, obj);
  2830. }, [_tpcOrganizerDeskIconInfo[i]])
  2831. }, _frag); //
  2832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2835. }
  2836. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2837. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2838. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2839. continue
  2840. }
  2841. _content = $$("div", {
  2842. className: "U_MD_D_KO",
  2843. "onmousedown": U.UF.C.closure(function (obj) {
  2844. //防止拖動圖標即打開了桌面應用
  2845. U.MD.D.click(this, obj);
  2846. }, [_tpcTeacherDeskIconInfo[i]]),
  2847. "onclick": U.UF.C.closure(function (obj) {
  2848. //防止拖動圖標即打開了桌面應用
  2849. U.MD.D.click(this, obj);
  2850. }, [_tpcTeacherDeskIconInfo[i]])
  2851. }, _frag); //
  2852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2855. }
  2856. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2857. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2858. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2859. continue
  2860. }
  2861. _content = $$("div", {
  2862. className: "U_MD_D_KO",
  2863. "onmousedown": U.UF.C.closure(function (obj) {
  2864. //防止拖動圖標即打開了桌面應用
  2865. U.MD.D.click(this, obj);
  2866. }, [_teacherDesktopIconInfo2[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖動圖標即打開了桌面應用
  2869. U.MD.D.click(this, obj);
  2870. }, [_teacherDesktopIconInfo2[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2875. }
  2876. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2877. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2878. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2879. continue
  2880. }
  2881. _content = $$("div", {
  2882. className: "U_MD_D_KO",
  2883. "onmousedown": U.UF.C.closure(function (obj) {
  2884. //防止拖動圖標即打開了桌面應用
  2885. U.MD.D.click(this, obj);
  2886. }, [_thuioeTeacherDeskIconInfo[i]]),
  2887. "onclick": U.UF.C.closure(function (obj) {
  2888. //防止拖動圖標即打開了桌面應用
  2889. U.MD.D.click(this, obj);
  2890. }, [_thuioeTeacherDeskIconInfo[i]])
  2891. }, _frag); //
  2892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2895. }
  2896. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2897. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2898. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2899. continue
  2900. }
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖動圖標即打開了桌面應用
  2905. U.MD.D.click(this, obj);
  2906. }, [_lotechTeacherDeskIconInfo[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖動圖標即打開了桌面應用
  2909. U.MD.D.click(this, obj);
  2910. }, [_lotechTeacherDeskIconInfo[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2915. }//
  2916. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2917. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2918. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2919. continue
  2920. }
  2921. _content = $$("div", {
  2922. className: "U_MD_D_KO",
  2923. "onmousedown": U.UF.C.closure(function (obj) {
  2924. //防止拖動圖標即打開了桌面應用
  2925. U.MD.D.click(this, obj);
  2926. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2927. "onclick": U.UF.C.closure(function (obj) {
  2928. //防止拖動圖標即打開了桌面應用
  2929. U.MD.D.click(this, obj);
  2930. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2931. }, _frag); //
  2932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2935. }
  2936. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2937. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2938. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2939. continue
  2940. }
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖動圖標即打開了桌面應用
  2945. U.MD.D.click(this, obj);
  2946. }, [_siesTeacherDeskIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖動圖標即打開了桌面應用
  2949. U.MD.D.click(this, obj);
  2950. }, [_siesTeacherDeskIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2957. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2958. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2959. continue
  2960. }
  2961. _content = $$("div", {
  2962. className: "U_MD_D_KO",
  2963. "onmousedown": U.UF.C.closure(function (obj) {
  2964. //防止拖動圖標即打開了桌面應用
  2965. U.MD.D.click(this, obj);
  2966. }, [_guzmsTeacherDeskIconInfo[i]]),
  2967. "onclick": U.UF.C.closure(function (obj) {
  2968. //防止拖動圖標即打開了桌面應用
  2969. U.MD.D.click(this, obj);
  2970. }, [_guzmsTeacherDeskIconInfo[i]])
  2971. }, _frag); //
  2972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2975. }
  2976. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2977. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2978. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2979. continue
  2980. }
  2981. _content = $$("div", {
  2982. className: "U_MD_D_KO",
  2983. "onmousedown": U.UF.C.closure(function (obj) {
  2984. //防止拖動圖標即打開了桌面應用
  2985. U.MD.D.click(this, obj);
  2986. }, [_longhuaTeacherDeskIconInfo[i]]),
  2987. "onclick": U.UF.C.closure(function (obj) {
  2988. //防止拖動圖標即打開了桌面應用
  2989. U.MD.D.click(this, obj);
  2990. }, [_longhuaTeacherDeskIconInfo[i]])
  2991. }, _frag); //
  2992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2995. }
  2996. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2997. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2998. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2999. continue
  3000. }
  3001. _content = $$("div", {
  3002. className: "U_MD_D_KO",
  3003. "onmousedown": U.UF.C.closure(function (obj) {
  3004. //防止拖動圖標即打開了桌面應用
  3005. U.MD.D.click(this, obj);
  3006. }, [_ytyTeacherDeskIconInfo[i]]),
  3007. "onclick": U.UF.C.closure(function (obj) {
  3008. //防止拖動圖標即打開了桌面應用
  3009. U.MD.D.click(this, obj);
  3010. }, [_ytyTeacherDeskIconInfo[i]])
  3011. }, _frag); //
  3012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3015. }
  3016. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3017. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3018. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3019. continue
  3020. }
  3021. _content = $$("div", {
  3022. className: "U_MD_D_KO",
  3023. "onmousedown": U.UF.C.closure(function (obj) {
  3024. //防止拖動圖標即打開了桌面應用
  3025. U.MD.D.click(this, obj);
  3026. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3027. "onclick": U.UF.C.closure(function (obj) {
  3028. //防止拖動圖標即打開了桌面應用
  3029. U.MD.D.click(this, obj);
  3030. }, [_yunhaiTeacherDeskIconInfo[i]])
  3031. }, _frag); //
  3032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3035. } //_hkStudentDeskIconInfo
  3036. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3037. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3038. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3039. continue
  3040. }
  3041. _content = $$("div", {
  3042. className: "U_MD_D_KO",
  3043. "onmousedown": U.UF.C.closure(function (obj) {
  3044. //防止拖動圖標即打開了桌面應用
  3045. U.MD.D.click(this, obj);
  3046. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3047. "onclick": U.UF.C.closure(function (obj) {
  3048. //防止拖動圖標即打開了桌面應用
  3049. U.MD.D.click(this, obj);
  3050. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3051. }, _frag); //
  3052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3055. }
  3056. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3057. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3058. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3059. continue
  3060. }
  3061. _content = $$("div", {
  3062. className: "U_MD_D_KO",
  3063. "onmousedown": U.UF.C.closure(function (obj) {
  3064. //防止拖動圖標即打開了桌面應用
  3065. U.MD.D.click(this, obj);
  3066. }, [_hkTeacherDeskIconInfo[i]]),
  3067. "onclick": U.UF.C.closure(function (obj) {
  3068. //防止拖動圖標即打開了桌面應用
  3069. U.MD.D.click(this, obj);
  3070. }, [_hkTeacherDeskIconInfo[i]])
  3071. }, _frag); //
  3072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3075. }
  3076. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3077. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3078. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3079. continue
  3080. }
  3081. _content = $$("div", {
  3082. className: "U_MD_D_KO",
  3083. "onmousedown": U.UF.C.closure(function (obj) {
  3084. //防止拖動圖標即打開了桌面應用
  3085. U.MD.D.click(this, obj);
  3086. }, [_hkaceTeacherDeskIconInfo[i]]),
  3087. "onclick": U.UF.C.closure(function (obj) {
  3088. //防止拖動圖標即打開了桌面應用
  3089. U.MD.D.click(this, obj);
  3090. }, [_hkaceTeacherDeskIconInfo[i]])
  3091. }, _frag); //
  3092. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3093. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3094. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3095. }
  3096. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3097. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3098. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3099. continue
  3100. }
  3101. _content = $$("div", {
  3102. className: "U_MD_D_KO",
  3103. "onmousedown": U.UF.C.closure(function (obj) {
  3104. //防止拖動圖標即打開了桌面應用
  3105. U.MD.D.click(this, obj);
  3106. }, [_cocobizTeacherDeskIconInfo[i]]),
  3107. "onclick": U.UF.C.closure(function (obj) {
  3108. //防止拖動圖標即打開了桌面應用
  3109. U.MD.D.click(this, obj);
  3110. }, [_cocobizTeacherDeskIconInfo[i]])
  3111. }, _frag); //
  3112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3115. }
  3116. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3117. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3118. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3119. continue
  3120. }
  3121. _content = $$("div", {
  3122. className: "U_MD_D_KO",
  3123. "onmousedown": U.UF.C.closure(function (obj) {
  3124. //防止拖動圖標即打開了桌面應用
  3125. U.MD.D.click(this, obj);
  3126. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3127. "onclick": U.UF.C.closure(function (obj) {
  3128. //防止拖動圖標即打開了桌面應用
  3129. U.MD.D.click(this, obj);
  3130. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3131. }, _frag); //
  3132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3135. }
  3136. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3137. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3138. _content = $$("div", {
  3139. className: "U_MD_D_KO",
  3140. "onmousedown": U.UF.C.closure(function (obj) {
  3141. //防止拖動圖標即打開了桌面應用
  3142. U.MD.D.click(this, obj);
  3143. }, [_gdjgAdminDeskIconInfo[i]]),
  3144. "onclick": U.UF.C.closure(function (obj) {
  3145. //防止拖動圖標即打開了桌面應用
  3146. U.MD.D.click(this, obj);
  3147. }, [_gdjgAdminDeskIconInfo[i]])
  3148. }, _frag); //
  3149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3152. }
  3153. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3154. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3155. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3156. continue
  3157. }
  3158. _content = $$("div", {
  3159. className: "U_MD_D_KO",
  3160. "onmousedown": U.UF.C.closure(function (obj) {
  3161. //防止拖動圖標即打開了桌面應用
  3162. U.MD.D.click(this, obj);
  3163. }, [_gdjgTeacherDeskIconInfo[i]]),
  3164. "onclick": U.UF.C.closure(function (obj) {
  3165. //防止拖動圖標即打開了桌面應用
  3166. U.MD.D.click(this, obj);
  3167. }, [_gdjgTeacherDeskIconInfo[i]])
  3168. }, _frag); //
  3169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3172. }
  3173. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3174. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3175. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3176. continue
  3177. }
  3178. _content = $$("div", {
  3179. className: "U_MD_D_KO",
  3180. "onmousedown": U.UF.C.closure(function (obj) {
  3181. //防止拖動圖標即打開了桌面應用
  3182. U.MD.D.click(this, obj);
  3183. }, [_szherTeacherDeskIconInfo[i]]),
  3184. "onclick": U.UF.C.closure(function (obj) {
  3185. //防止拖動圖標即打開了桌面應用
  3186. U.MD.D.click(this, obj);
  3187. }, [_szherTeacherDeskIconInfo[i]])
  3188. }, _frag); //
  3189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3192. }
  3193. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3194. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3195. _content = $$("div", {
  3196. className: "U_MD_D_KO",
  3197. "onmousedown": U.UF.C.closure(function (obj) {
  3198. //防止拖動圖標即打開了桌面應用
  3199. U.MD.D.click(this, obj);
  3200. }, [_heyuannAdminDeskIconInfo[i]]),
  3201. "onclick": U.UF.C.closure(function (obj) {
  3202. //防止拖動圖標即打開了桌面應用
  3203. U.MD.D.click(this, obj);
  3204. }, [_heyuannAdminDeskIconInfo[i]])
  3205. }, _frag); //
  3206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3209. }
  3210. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3211. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3212. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3213. continue
  3214. }
  3215. _content = $$("div", {
  3216. className: "U_MD_D_KO",
  3217. "onmousedown": U.UF.C.closure(function (obj) {
  3218. //防止拖動圖標即打開了桌面應用
  3219. U.MD.D.click(this, obj);
  3220. }, [_heyuanTeacherDeskIconInfo[i]]),
  3221. "onclick": U.UF.C.closure(function (obj) {
  3222. //防止拖動圖標即打開了桌面應用
  3223. U.MD.D.click(this, obj);
  3224. }, [_heyuanTeacherDeskIconInfo[i]])
  3225. }, _frag); //
  3226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3229. } //
  3230. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3231. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3232. _content = $$("div", {
  3233. className: "U_MD_D_KO",
  3234. "onmousedown": U.UF.C.closure(function (obj) {
  3235. //防止拖動圖標即打開了桌面應用
  3236. U.MD.D.click(this, obj);
  3237. }, [_dseiAdminDeskIconInfo[i]]),
  3238. "onclick": U.UF.C.closure(function (obj) {
  3239. //防止拖動圖標即打開了桌面應用
  3240. U.MD.D.click(this, obj);
  3241. }, [_dseiAdminDeskIconInfo[i]])
  3242. }, _frag); //
  3243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3246. }
  3247. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3248. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3249. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3250. continue
  3251. }
  3252. _content = $$("div", {
  3253. className: "U_MD_D_KO",
  3254. "onmousedown": U.UF.C.closure(function (obj) {
  3255. //防止拖動圖標即打開了桌面應用
  3256. U.MD.D.click(this, obj);
  3257. }, [_dseiTeacherDeskIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖動圖標即打開了桌面應用
  3260. U.MD.D.click(this, obj);
  3261. }, [_dseiTeacherDeskIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3266. } //
  3267. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3268. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖動圖標即打開了桌面應用
  3273. U.MD.D.click(this, obj);
  3274. }, [_chjyjAdminDeskIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖動圖標即打開了桌面應用
  3277. U.MD.D.click(this, obj);
  3278. }, [_chjyjAdminDeskIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3283. }//
  3284. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3285. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3287. continue
  3288. }
  3289. _content = $$("div", {
  3290. className: "U_MD_D_KO",
  3291. "onmousedown": U.UF.C.closure(function (obj) {
  3292. //防止拖動圖標即打開了桌面應用
  3293. U.MD.D.click(this, obj);
  3294. }, [_chjyjTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖動圖標即打開了桌面應用
  3297. U.MD.D.click(this, obj);
  3298. }, [_chjyjTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3305. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3306. _content = $$("div", {
  3307. className: "U_MD_D_KO",
  3308. "onmousedown": U.UF.C.closure(function (obj) {
  3309. //防止拖動圖標即打開了桌面應用
  3310. U.MD.D.click(this, obj);
  3311. }, [_szjkyAdminDeskIconInfo[i]]),
  3312. "onclick": U.UF.C.closure(function (obj) {
  3313. //防止拖動圖標即打開了桌面應用
  3314. U.MD.D.click(this, obj);
  3315. }, [_szjkyAdminDeskIconInfo[i]])
  3316. }, _frag); //
  3317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3320. }//
  3321. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3322. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3323. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3324. continue
  3325. }
  3326. _content = $$("div", {
  3327. className: "U_MD_D_KO",
  3328. "onmousedown": U.UF.C.closure(function (obj) {
  3329. //防止拖動圖標即打開了桌面應用
  3330. U.MD.D.click(this, obj);
  3331. }, [_szjkyTeacherDeskIconInfo[i]]),
  3332. "onclick": U.UF.C.closure(function (obj) {
  3333. //防止拖動圖標即打開了桌面應用
  3334. U.MD.D.click(this, obj);
  3335. }, [_szjkyTeacherDeskIconInfo[i]])
  3336. }, _frag); //
  3337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3340. }
  3341. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3342. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3343. _content = $$("div", {
  3344. className: "U_MD_D_KO",
  3345. "onmousedown": U.UF.C.closure(function (obj) {
  3346. //防止拖動圖標即打開了桌面應用
  3347. U.MD.D.click(this, obj);
  3348. }, [_x020201AdminDeskIconInfo[i]]),
  3349. "onclick": U.UF.C.closure(function (obj) {
  3350. //防止拖動圖標即打開了桌面應用
  3351. U.MD.D.click(this, obj);
  3352. }, [_x020201AdminDeskIconInfo[i]])
  3353. }, _frag); //
  3354. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3357. }//
  3358. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3359. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3360. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3361. continue
  3362. }
  3363. _content = $$("div", {
  3364. className: "U_MD_D_KO",
  3365. "onmousedown": U.UF.C.closure(function (obj) {
  3366. //防止拖動圖標即打開了桌面應用
  3367. U.MD.D.click(this, obj);
  3368. }, [_x020201TeacherDeskIconInfo[i]]),
  3369. "onclick": U.UF.C.closure(function (obj) {
  3370. //防止拖動圖標即打開了桌面應用
  3371. U.MD.D.click(this, obj);
  3372. }, [_x020201TeacherDeskIconInfo[i]])
  3373. }, _frag); //
  3374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3377. }
  3378. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3379. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3380. _content = $$("div", {
  3381. className: "U_MD_D_KO",
  3382. "onmousedown": U.UF.C.closure(function (obj) {
  3383. //防止拖動圖標即打開了桌面應用
  3384. U.MD.D.click(this, obj);
  3385. }, [_SCNUETAdminDeskIconInfo[i]]),
  3386. "onclick": U.UF.C.closure(function (obj) {
  3387. //防止拖動圖標即打開了桌面應用
  3388. U.MD.D.click(this, obj);
  3389. }, [_SCNUETAdminDeskIconInfo[i]])
  3390. }, _frag); //
  3391. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3392. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3393. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3394. }//
  3395. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3396. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3397. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3398. continue
  3399. }
  3400. _content = $$("div", {
  3401. className: "U_MD_D_KO",
  3402. "onmousedown": U.UF.C.closure(function (obj) {
  3403. //防止拖動圖標即打開了桌面應用
  3404. U.MD.D.click(this, obj);
  3405. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3406. "onclick": U.UF.C.closure(function (obj) {
  3407. //防止拖動圖標即打開了桌面應用
  3408. U.MD.D.click(this, obj);
  3409. }, [_SCNUETTeacherDeskIconInfo[i]])
  3410. }, _frag); //
  3411. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3412. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3413. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3414. }
  3415. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3416. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3417. _content = $$("div", {
  3418. className: "U_MD_D_KO",
  3419. "onmousedown": U.UF.C.closure(function (obj) {
  3420. //防止拖動圖標即打開了桌面應用
  3421. U.MD.D.click(this, obj);
  3422. }, [_futianAdminDeskIconInfo[i]]),
  3423. "onclick": U.UF.C.closure(function (obj) {
  3424. //防止拖動圖標即打開了桌面應用
  3425. U.MD.D.click(this, obj);
  3426. }, [_futianAdminDeskIconInfo[i]])
  3427. }, _frag); //
  3428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3431. }
  3432. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3433. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3434. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3435. continue
  3436. }
  3437. _content = $$("div", {
  3438. className: "U_MD_D_KO",
  3439. "onmousedown": U.UF.C.closure(function (obj) {
  3440. //防止拖動圖標即打開了桌面應用
  3441. U.MD.D.click(this, obj);
  3442. }, [_futianTeacherDeskIconInfo[i]]),
  3443. "onclick": U.UF.C.closure(function (obj) {
  3444. //防止拖動圖標即打開了桌面應用
  3445. U.MD.D.click(this, obj);
  3446. }, [_futianTeacherDeskIconInfo[i]])
  3447. }, _frag); //
  3448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3451. }
  3452. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3453. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3454. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3455. continue
  3456. }
  3457. _content = $$("div", {
  3458. className: "U_MD_D_KO",
  3459. "onmousedown": U.UF.C.closure(function (obj) {
  3460. //防止拖動圖標即打開了桌面應用
  3461. U.MD.D.click(this, obj);
  3462. }, [_MingdeTeacherDeskIcon[i]]),
  3463. "onclick": U.UF.C.closure(function (obj) {
  3464. //防止拖動圖標即打開了桌面應用
  3465. U.MD.D.click(this, obj);
  3466. }, [_MingdeTeacherDeskIcon[i]])
  3467. }, _frag); //
  3468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3471. }
  3472. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3473. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3474. _content = $$("div", {
  3475. className: "U_MD_D_KO",
  3476. "onmousedown": U.UF.C.closure(function (obj) {
  3477. //防止拖動圖標即打開了桌面應用
  3478. U.MD.D.click(this, obj);
  3479. }, [_lhsAdminDesktopIconInfo[i]]),
  3480. "onclick": U.UF.C.closure(function (obj) {
  3481. //防止拖動圖標即打開了桌面應用
  3482. U.MD.D.click(this, obj);
  3483. }, [_lhsAdminDesktopIconInfo[i]])
  3484. }, _frag); //
  3485. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3486. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3487. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3488. }
  3489. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3490. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3491. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3492. continue
  3493. }
  3494. _content = $$("div", {
  3495. className: "U_MD_D_KO",
  3496. "onmousedown": U.UF.C.closure(function (obj) {
  3497. //防止拖動圖標即打開了桌面應用
  3498. U.MD.D.click(this, obj);
  3499. }, [_lhsteacherDesktopIconInfo[i]]),
  3500. "onclick": U.UF.C.closure(function (obj) {
  3501. //防止拖動圖標即打開了桌面應用
  3502. U.MD.D.click(this, obj);
  3503. }, [_lhsteacherDesktopIconInfo[i]])
  3504. }, _frag); //
  3505. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3506. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3507. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3508. }
  3509. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3510. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3511. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3512. continue
  3513. }
  3514. _content = $$("div", {
  3515. className: "U_MD_D_KO",
  3516. "onmousedown": U.UF.C.closure(function (obj) {
  3517. //防止拖動圖標即打開了桌面應用
  3518. U.MD.D.click(this, obj);
  3519. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3520. "onclick": U.UF.C.closure(function (obj) {
  3521. //防止拖動圖標即打開了桌面應用
  3522. U.MD.D.click(this, obj);
  3523. }, [_zhoujiateacherDesktopIconInfo[i]])
  3524. }, _frag); //
  3525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3528. }
  3529. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3530. for (i = 0; i < _hanDeskIcon.length; i++) {
  3531. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3532. continue
  3533. }
  3534. _content = $$("div", {
  3535. className: "U_MD_D_KO",
  3536. "onmousedown": U.UF.C.closure(function (obj) {
  3537. //防止拖動圖標即打開了桌面應用
  3538. U.MD.D.click(this, obj);
  3539. }, [_hanDeskIcon[i]]),
  3540. "onclick": U.UF.C.closure(function (obj) {
  3541. //防止拖動圖標即打開了桌面應用
  3542. U.MD.D.click(this, obj);
  3543. }, [_hanDeskIcon[i]])
  3544. }, _frag); //
  3545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3548. }
  3549. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3550. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3551. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3552. continue
  3553. }
  3554. _content = $$("div", {
  3555. className: "U_MD_D_KO",
  3556. "onmousedown": U.UF.C.closure(function (obj) {
  3557. //防止拖動圖標即打開了桌面應用
  3558. U.MD.D.click(this, obj);
  3559. }, [_orgStemDeskIcon[i]]),
  3560. "onclick": U.UF.C.closure(function (obj) {
  3561. //防止拖動圖標即打開了桌面應用
  3562. U.MD.D.click(this, obj);
  3563. }, [_orgStemDeskIcon[i]])
  3564. }, _frag); //
  3565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3568. }
  3569. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3570. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3571. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3572. continue
  3573. }
  3574. _content = $$("div", {
  3575. className: "U_MD_D_KO",
  3576. "onmousedown": U.UF.C.closure(function (obj) {
  3577. //防止拖動圖標即打開了桌面應用
  3578. U.MD.D.click(this, obj);
  3579. }, [_szulsDeskIcon[i]]),
  3580. "onclick": U.UF.C.closure(function (obj) {
  3581. //防止拖動圖標即打開了桌面應用
  3582. U.MD.D.click(this, obj);
  3583. }, [_szulsDeskIcon[i]])
  3584. }, _frag); //
  3585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3588. }
  3589. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3590. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3591. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3592. continue
  3593. }
  3594. _content = $$("div", {
  3595. className: "U_MD_D_KO",
  3596. "onmousedown": U.UF.C.closure(function (obj) {
  3597. //防止拖動圖標即打開了桌面應用
  3598. U.MD.D.click(this, obj);
  3599. }, [_orgDesktopIconInfo[i]]),
  3600. "onclick": U.UF.C.closure(function (obj) {
  3601. //防止拖動圖標即打開了桌面應用
  3602. U.MD.D.click(this, obj);
  3603. }, [_orgDesktopIconInfo[i]])
  3604. }, _frag); //
  3605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3608. }
  3609. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3610. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3611. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3612. continue
  3613. }
  3614. _content = $$("div", {
  3615. className: "U_MD_D_KO",
  3616. "onmousedown": U.UF.C.closure(function (obj) {
  3617. //防止拖動圖標即打開了桌面應用
  3618. U.MD.D.click(this, obj);
  3619. }, [_schoolDesktopIconInfo[i]]),
  3620. "onclick": U.UF.C.closure(function (obj) {
  3621. //防止拖動圖標即打開了桌面應用
  3622. U.MD.D.click(this, obj);
  3623. }, [_schoolDesktopIconInfo[i]])
  3624. }, _frag); //
  3625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3628. }
  3629. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3630. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3631. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3632. continue
  3633. }
  3634. _content = $$("div", {
  3635. className: "U_MD_D_KO",
  3636. "onmousedown": U.UF.C.closure(function (obj) {
  3637. //防止拖動圖標即打開了桌面應用
  3638. U.MD.D.click(this, obj);
  3639. }, [_GMteacherDesktopIconInfo[i]]),
  3640. "onclick": U.UF.C.closure(function (obj) {
  3641. //防止拖動圖標即打開了桌面應用
  3642. U.MD.D.click(this, obj);
  3643. }, [_GMteacherDesktopIconInfo[i]])
  3644. }, _frag); //
  3645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3648. }
  3649. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3650. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3651. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3652. continue
  3653. }
  3654. _content = $$("div", {
  3655. className: "U_MD_D_KO",
  3656. "onmousedown": U.UF.C.closure(function (obj) {
  3657. //防止拖動圖標即打開了桌面應用
  3658. U.MD.D.click(this, obj);
  3659. }, [_SONGteacherDesktopIconInfo[i]]),
  3660. "onclick": U.UF.C.closure(function (obj) {
  3661. //防止拖動圖標即打開了桌面應用
  3662. U.MD.D.click(this, obj);
  3663. }, [_SONGteacherDesktopIconInfo[i]])
  3664. }, _frag); //
  3665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3668. }
  3669. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3670. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3671. _content = $$("div", {
  3672. className: "U_MD_D_KO",
  3673. "onmousedown": U.UF.C.closure(function (obj) {
  3674. //防止拖動圖標即打開了桌面應用
  3675. U.MD.D.click(this, obj);
  3676. }, [_GMstudentDesktopIconInfo[i]]),
  3677. "onclick": U.UF.C.closure(function (obj) {
  3678. //防止拖動圖標即打開了桌面應用
  3679. U.MD.D.click(this, obj);
  3680. }, [_GMstudentDesktopIconInfo[i]])
  3681. }, _frag); //
  3682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3685. }
  3686. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3687. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3688. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3689. continue
  3690. }
  3691. _content = $$("div", {
  3692. className: "U_MD_D_KO",
  3693. "onmousedown": U.UF.C.closure(function (obj) {
  3694. //防止拖動圖標即打開了桌面應用
  3695. U.MD.D.click(this, obj);
  3696. }, [_tcTeacherDeskIconInfo[i]]),
  3697. "onclick": U.UF.C.closure(function (obj) {
  3698. //防止拖動圖標即打開了桌面應用
  3699. U.MD.D.click(this, obj);
  3700. }, [_tcTeacherDeskIconInfo[i]])
  3701. }, _frag); //
  3702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3705. }
  3706. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3707. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3708. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3709. continue
  3710. }
  3711. _content = $$("div", {
  3712. className: "U_MD_D_KO",
  3713. "onmousedown": U.UF.C.closure(function (obj) {
  3714. //防止拖動圖標即打開了桌面應用
  3715. U.MD.D.click(this, obj);
  3716. }, [_tcOrganizerDeskIconInfo[i]]),
  3717. "onclick": U.UF.C.closure(function (obj) {
  3718. //防止拖動圖標即打開了桌面應用
  3719. U.MD.D.click(this, obj);
  3720. }, [_tcOrganizerDeskIconInfo[i]])
  3721. }, _frag); //
  3722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3725. }
  3726. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3727. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3728. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3729. continue
  3730. }
  3731. _content = $$("div", {
  3732. className: "U_MD_D_KO",
  3733. "onmousedown": U.UF.C.closure(function (obj) {
  3734. //防止拖動圖標即打開了桌面應用
  3735. U.MD.D.click(this, obj);
  3736. }, [_szscTeacherDeskIconInfo[i]]),
  3737. "onclick": U.UF.C.closure(function (obj) {
  3738. //防止拖動圖標即打開了桌面應用
  3739. U.MD.D.click(this, obj);
  3740. }, [_szscTeacherDeskIconInfo[i]])
  3741. }, _frag); //
  3742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3745. }
  3746. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3747. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3748. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3749. continue
  3750. }
  3751. _content = $$("div", {
  3752. className: "U_MD_D_KO",
  3753. "onmousedown": U.UF.C.closure(function (obj) {
  3754. //防止拖動圖標即打開了桌面應用
  3755. U.MD.D.click(this, obj);
  3756. }, [_szscOrganizerDeskIconInfo[i]]),
  3757. "onclick": U.UF.C.closure(function (obj) {
  3758. //防止拖動圖標即打開了桌面應用
  3759. U.MD.D.click(this, obj);
  3760. }, [_szscOrganizerDeskIconInfo[i]])
  3761. }, _frag); //
  3762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3765. }
  3766. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3767. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3768. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3769. continue
  3770. }
  3771. _content = $$("div", {
  3772. className: "U_MD_D_KO",
  3773. "onmousedown": U.UF.C.closure(function (obj) {
  3774. //防止拖動圖標即打開了桌面應用
  3775. U.MD.D.click(this, obj);
  3776. }, [_nsfxTeacherDeskIconInfo[i]]),
  3777. "onclick": U.UF.C.closure(function (obj) {
  3778. //防止拖動圖標即打開了桌面應用
  3779. U.MD.D.click(this, obj);
  3780. }, [_nsfxTeacherDeskIconInfo[i]])
  3781. }, _frag); //
  3782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3785. }
  3786. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3787. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3788. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3789. continue
  3790. }
  3791. _content = $$("div", {
  3792. className: "U_MD_D_KO",
  3793. "onmousedown": U.UF.C.closure(function (obj) {
  3794. //防止拖動圖標即打開了桌面應用
  3795. U.MD.D.click(this, obj);
  3796. }, [_stiaTeacherDeskIconInfo[i]]),
  3797. "onclick": U.UF.C.closure(function (obj) {
  3798. //防止拖動圖標即打開了桌面應用
  3799. U.MD.D.click(this, obj);
  3800. }, [_stiaTeacherDeskIconInfo[i]])
  3801. }, _frag); //
  3802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3805. }
  3806. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3807. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3808. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3809. continue
  3810. }
  3811. _content = $$("div", {
  3812. className: "U_MD_D_KO",
  3813. "onmousedown": U.UF.C.closure(function (obj) {
  3814. //防止拖動圖標即打開了桌面應用
  3815. U.MD.D.click(this, obj);
  3816. }, [_szdjgTeacherDeskIconInfo[i]]),
  3817. "onclick": U.UF.C.closure(function (obj) {
  3818. //防止拖動圖標即打開了桌面應用
  3819. U.MD.D.click(this, obj);
  3820. }, [_szdjgTeacherDeskIconInfo[i]])
  3821. }, _frag); //
  3822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3825. }
  3826. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3827. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3828. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3829. continue
  3830. }
  3831. _content = $$("div", {
  3832. className: "U_MD_D_KO",
  3833. "onmousedown": U.UF.C.closure(function (obj) {
  3834. //防止拖動圖標即打開了桌面應用
  3835. U.MD.D.click(this, obj);
  3836. }, [_x010607TeacherDeskIconInfo[i]]),
  3837. "onclick": U.UF.C.closure(function (obj) {
  3838. //防止拖動圖標即打開了桌面應用
  3839. U.MD.D.click(this, obj);
  3840. }, [_x010607TeacherDeskIconInfo[i]])
  3841. }, _frag); //
  3842. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3843. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3844. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3845. }
  3846. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3847. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3848. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3849. continue
  3850. }
  3851. _content = $$("div", {
  3852. className: "U_MD_D_KO",
  3853. "onmousedown": U.UF.C.closure(function (obj) {
  3854. //防止拖動圖標即打開了桌面應用
  3855. U.MD.D.click(this, obj);
  3856. }, [_xhlyTeacherDeskIconInfo[i]]),
  3857. "onclick": U.UF.C.closure(function (obj) {
  3858. //防止拖動圖標即打開了桌面應用
  3859. U.MD.D.click(this, obj);
  3860. }, [_xhlyTeacherDeskIconInfo[i]])
  3861. }, _frag); //
  3862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3865. }
  3866. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3867. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3868. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3869. continue
  3870. }
  3871. _content = $$("div", {
  3872. className: "U_MD_D_KO",
  3873. "onmousedown": U.UF.C.closure(function (obj) {
  3874. //防止拖動圖標即打開了桌面應用
  3875. U.MD.D.click(this, obj);
  3876. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3877. "onclick": U.UF.C.closure(function (obj) {
  3878. //防止拖動圖標即打開了桌面應用
  3879. U.MD.D.click(this, obj);
  3880. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3881. }, _frag); //
  3882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3885. }
  3886. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3887. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3888. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3889. continue
  3890. }
  3891. _content = $$("div", {
  3892. className: "U_MD_D_KO",
  3893. "onmousedown": U.UF.C.closure(function (obj) {
  3894. //防止拖動圖標即打開了桌面應用
  3895. U.MD.D.click(this, obj);
  3896. }, [_x010503TeacherDeskIconInfo[i]]),
  3897. "onclick": U.UF.C.closure(function (obj) {
  3898. //防止拖動圖標即打開了桌面應用
  3899. U.MD.D.click(this, obj);
  3900. }, [_x010503TeacherDeskIconInfo[i]])
  3901. }, _frag); //
  3902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3905. }
  3906. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3907. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3908. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3909. continue
  3910. }
  3911. _content = $$("div", {
  3912. className: "U_MD_D_KO",
  3913. "onmousedown": U.UF.C.closure(function (obj) {
  3914. //防止拖動圖標即打開了桌面應用
  3915. U.MD.D.click(this, obj);
  3916. }, [_x010504TeacherDeskIconInfo[i]]),
  3917. "onclick": U.UF.C.closure(function (obj) {
  3918. //防止拖動圖標即打開了桌面應用
  3919. U.MD.D.click(this, obj);
  3920. }, [_x010504TeacherDeskIconInfo[i]])
  3921. }, _frag); //
  3922. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3923. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  3924. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  3925. }
  3926. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3927. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3928. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3929. continue
  3930. }
  3931. _content = $$("div", {
  3932. className: "U_MD_D_KO",
  3933. "onmousedown": U.UF.C.closure(function (obj) {
  3934. //防止拖動圖標即打開了桌面應用
  3935. U.MD.D.click(this, obj);
  3936. }, [_x010204TeacherDeskIconInfo[i]]),
  3937. "onclick": U.UF.C.closure(function (obj) {
  3938. //防止拖動圖標即打開了桌面應用
  3939. U.MD.D.click(this, obj);
  3940. }, [_x010204TeacherDeskIconInfo[i]])
  3941. }, _frag); //
  3942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3945. }
  3946. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  3947. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  3948. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3949. continue
  3950. }
  3951. _content = $$("div", {
  3952. className: "U_MD_D_KO",
  3953. "onmousedown": U.UF.C.closure(function (obj) {
  3954. //防止拖動圖標即打開了桌面應用
  3955. U.MD.D.click(this, obj);
  3956. }, [_trailTeacherDeskIconInfo[i]]),
  3957. "onclick": U.UF.C.closure(function (obj) {
  3958. //防止拖動圖標即打開了桌面應用
  3959. U.MD.D.click(this, obj);
  3960. }, [_trailTeacherDeskIconInfo[i]])
  3961. }, _frag); //
  3962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  3964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  3965. }
  3966. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3967. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3968. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3969. continue
  3970. }
  3971. _content = $$("div", {
  3972. className: "U_MD_D_KO",
  3973. "onmousedown": U.UF.C.closure(function (obj) {
  3974. //防止拖動圖標即打開了桌面應用
  3975. U.MD.D.click(this, obj);
  3976. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3977. "onclick": U.UF.C.closure(function (obj) {
  3978. //防止拖動圖標即打開了桌面應用
  3979. U.MD.D.click(this, obj);
  3980. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3981. }, _frag); //
  3982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3985. }
  3986. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3987. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3988. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3989. continue
  3990. }
  3991. _content = $$("div", {
  3992. className: "U_MD_D_KO",
  3993. "onmousedown": U.UF.C.closure(function (obj) {
  3994. //防止拖動圖標即打開了桌面應用
  3995. U.MD.D.click(this, obj);
  3996. }, [_x010608TeacherDeskIconInfo[i]]),
  3997. "onclick": U.UF.C.closure(function (obj) {
  3998. //防止拖動圖標即打開了桌面應用
  3999. U.MD.D.click(this, obj);
  4000. }, [_x010608TeacherDeskIconInfo[i]])
  4001. }, _frag); //
  4002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4005. }
  4006. } else {
  4007. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4008. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4009. continue
  4010. }
  4011. _content = $$("div", {
  4012. className: "U_MD_D_KO",
  4013. "onmousedown": U.UF.C.closure(function (obj) {
  4014. //防止拖動圖標即打開了桌面應用
  4015. U.MD.D.click(this, obj);
  4016. }, [_teacherDesktopIconInfo[i]]),
  4017. "onclick": U.UF.C.closure(function (obj) {
  4018. //防止拖動圖標即打開了桌面應用
  4019. U.MD.D.click(this, obj);
  4020. }, [_teacherDesktopIconInfo[i]])
  4021. }, _frag); //
  4022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4025. }
  4026. }
  4027. } else {
  4028. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4029. _content = $$("div", {
  4030. className: "U_MD_D_KO",
  4031. style: { 'width': '124px', 'height': '145px' },
  4032. "onmousedown": U.UF.C.closure(function (obj) {
  4033. //防止拖動圖標即打開了桌面應用
  4034. U.MD.D.click(this, obj);
  4035. }, [_easyDesktopIconInfo[i]]),
  4036. "onclick": U.UF.C.closure(function (obj) {
  4037. //防止拖動圖標即打開了桌面應用
  4038. U.MD.D.click(this, obj);
  4039. }, [_easyDesktopIconInfo[i]])
  4040. }, _frag); //
  4041. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4044. }
  4045. }
  4046. if (type == 1) {
  4047. //加載好後給圖標定位
  4048. U.MD.D.iconPostion($(_frag).Child());
  4049. } else {
  4050. //加載好後給圖標定位
  4051. U.MD.D.iconPostion2($(_frag).Child());
  4052. }
  4053. //把圖標加載到頁面
  4054. el.appendChild(_frag);
  4055. }
  4056. /**
  4057. * 顯示任務欄
  4058. *
  4059. * @param {element} 桌面元素
  4060. */
  4061. U.MD.D.I.displayTaskbar = function (el) {
  4062. //判斷是否需要形式任務欄,由於用了mouseover事件會冒泡響應多次,這裏做了過濾
  4063. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4064. //任務欄位置變化
  4065. U.selectEl(el).css({ "bottom": "0px" });
  4066. //桌面位置變話
  4067. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4068. }
  4069. }
  4070. //#region 桌面圖標拖動邏輯
  4071. /**
  4072. * 桌面排列圖標
  4073. *
  4074. * @param {element} 桌面元素
  4075. * @param {object} 上下相距的距離
  4076. * @param {object} 左右相距的距離
  4077. * @return {object} 命名空間
  4078. */
  4079. U.MD.D.iconPostion = function (childs, top, left) {
  4080. var i; //用於循環處理
  4081. top = top || 15; //如果沒有設置元素的間距處理默認上間距為15
  4082. left = left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4083. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4084. for (i = 0; i < childs.length; i++) {
  4085. //如果豎排top超過了範圍處理
  4086. if (top + 95 > US.height - 10) {
  4087. //left超過了頁面範圍處理,則向上重疊打印處理
  4088. if ((left + 180) > US.width) {
  4089. top -= 110;
  4090. left -= 90;
  4091. }
  4092. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4093. else {
  4094. left += 90;
  4095. top = 15;
  4096. };
  4097. }
  4098. //給圖標的位置賦值
  4099. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4100. if (i < childs.length - 1) {
  4101. //頁面圖標每次向下加95
  4102. top += 95;
  4103. }
  4104. }
  4105. //返回最後調用的圖標的位置
  4106. return [top, left];
  4107. }
  4108. /**
  4109. * 桌面排列圖標
  4110. *
  4111. * @param {element} 桌面元素
  4112. * @param {object} 上下相距的距離
  4113. * @param {object} 左右相距的距離
  4114. * @return {object} 命名空間
  4115. */
  4116. U.MD.D.iconPostion2 = function (childs, top, left) {
  4117. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用於循環處理
  4118. top = top || 70; //如果沒有設置元素的間距處理默認上間距為15
  4119. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果沒有設置元素的間距處理默認左間距為15
  4120. //循環所有的圖標,設置每個圖標的間距,打印順序是豎排打印的方式
  4121. for (i = 0; i < childs.length; i++) {
  4122. //如果豎排top超過了範圍處理
  4123. if (left + 150 > US.width - 10) {
  4124. //left超過了頁面範圍處理,則向上重疊打印處理
  4125. if ((top + 180) > US.Height) {
  4126. top -= 150;
  4127. left -= 150;
  4128. }
  4129. //沒有超過範圍,那麼left+90添加到下一個豎排打印
  4130. else {
  4131. top += 150;
  4132. left = ol;
  4133. };
  4134. }
  4135. //給圖標的位置賦值
  4136. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4137. if (i < childs.length - 1) {
  4138. //頁面圖標每次向下加95
  4139. left += 150;
  4140. }
  4141. }
  4142. //返回最後調用的圖標的位置
  4143. return [top, left];
  4144. }
  4145. /**
  4146. * 桌面點擊事件邏輯
  4147. *
  4148. * @param {element} 桌面元素
  4149. * @param {object} 上下相距的距離
  4150. * @param {object} 左右相距的距離
  4151. * @return {object} 命名空間
  4152. */
  4153. U.MD.D.click = function (el, obj) {
  4154. var _buttonnumber = event.button; //點擊的按鈕的事件值
  4155. var _userinfo = US.userInfo;
  4156. U.UF.EV.stopBubble(); //阻止向上冒泡
  4157. //onmousedown 包含了左鍵和右鍵 這裏大於2是為了兼容 所有瀏覽器的右鍵處理
  4158. if (_buttonnumber < 2) {
  4159. //如果是click事件的處理
  4160. if (event.type == "click") {
  4161. //如果元素在mousemove事件中沒有移動則出發click事件
  4162. if (!U.MD.D.I.IsDrag) {
  4163. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4164. U.alert("請先登錄您的賬號!");
  4165. setTimeout(() => {
  4166. U.MD.U.L.login();
  4167. }, 2000);
  4168. } else {
  4169. //打開應用處理
  4170. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4171. }
  4172. }
  4173. }
  4174. //如果是mouse事件的處理
  4175. else {
  4176. if (US.Config.type == '1') {
  4177. //拖動處理,添加拖動和拖動結束事件
  4178. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4179. }
  4180. }
  4181. U.MD.D.I.IsDrag = false;
  4182. }
  4183. }
  4184. /**
  4185. * 拖動的處理
  4186. *
  4187. */
  4188. U.MD.D.iconMove = function () {
  4189. //如果當前位置點擊初始化的位置出現了變化,則設置是否拖動的屬性 U.MD.D.I.IsDrag為true
  4190. U.MD.D.I.IsDrag = true;
  4191. }
  4192. /**
  4193. * 拖動結束後,這裏是定位處理,以網狀的形式定位
  4194. *
  4195. * @param {element} 拖動的元素
  4196. * @return {object} 命名空間
  4197. */
  4198. U.MD.D.iconUp = function (el) {
  4199. var _top = 15,
  4200. _left = 20,
  4201. _margin,
  4202. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的圖標
  4203. _positioninfo = U.UF.EL.getElementInfo(el); //獲取拖動結束的元素的位置
  4204. if (_positioninfo["OT"] > 15) {
  4205. //網狀的形式定位,如果差超過了55,那麼向下定位,否則向上定位
  4206. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4207. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4208. }
  4209. if (_positioninfo["OL"] > 20) {
  4210. //網狀的形式定位,如果差超過了90,那麼向右定位,否則向左定位
  4211. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4212. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4213. }
  4214. //while循環判斷麼一個重疊的元素
  4215. do {
  4216. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //給重疊的元素向下定位
  4217. _top = _positioninfo[0] + 95; //得到定位後的top
  4218. _left = _positioninfo[1]; //得到定位後的left
  4219. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4220. }
  4221. /**
  4222. * 判斷拖動後圖標是否重疊
  4223. *
  4224. * @param {element} 拖動的元素
  4225. * @param {element} 桌面所有的元素
  4226. * @param {array} 拖動元素的位置
  4227. ----------[0] 上 top
  4228. ----------[1] 左 left
  4229. * @return {object} 命名空間
  4230. */
  4231. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4232. //循環所有的圖標
  4233. for (var i = 0; i < childs.length; i++) {
  4234. //判斷有沒有和該圖標誒子重疊的元素
  4235. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4236. return childs[i]; //如果有返回
  4237. }
  4238. }
  4239. }
  4240. //#endregion
  4241. //#endregion
  4242. //#region 桌面應用
  4243. /**
  4244. * 打開應用
  4245. *
  4246. * @param {string} 類型
  4247. -----------------Disk 網盤系統
  4248. -----------------PDisk 學習系統網盤
  4249. -----------------Poto 圖片
  4250. -----------------Video 視頻
  4251. -----------------Music 音樂
  4252. -----------------Word word
  4253. -----------------Excel excel
  4254. -----------------Txt 記事本
  4255. -----------------PB 學習系統
  4256. -----------------Blog 朋友圈系統
  4257. -----------------FTP ftp系統
  4258. -----------------Group 好友群
  4259. -----------------SY 首頁系統
  4260. -----------------Set 個人設置
  4261. -----------------XSet 系統設置
  4262. -----------------App 我們所有的app
  4263. -----------------BC c.1473.cn 平臺
  4264. -----------------CWeb d.1473.cn 變成平臺
  4265. -----------------其他的外聯系統 我們統一用iframe打開
  4266. * @param {array} 類型
  4267. 如果第一個參數為"disk",則第二個參數為object,裏面包含了用戶id和目錄id{userid:"",directoryid:""}
  4268. 如果第一個參數為"word"或者"excel","txt",則第二個參數為文件信息fileinfo。
  4269. 如果第一個參數為"blog"或者"PDisk"。建議刪除。
  4270. 如果第一個參數為其他,則無第二個參數
  4271. * @returns {array}
  4272. */
  4273. window.addEventListener('message', function (e) { // 監聽 message 事件
  4274. // alert(e.data.type);
  4275. if (e.data.screenType && e.data.screenType == "2") { //課程管理傳入
  4276. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4277. //3是展示全部階段 2學生 1老師 4專家
  4278. } else if (e.data.screenType && e.data.screenType == "2s") { //課程管理傳入
  4279. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4280. //3是展示全部階段 2學生 1老師 4專家
  4281. } else if (e.data.screenType && e.data.screenType == "2studio") { //課程管理傳入
  4282. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4283. //3是展示全部階段 2學生 1老師 4專家
  4284. } else if (e.data.screenType && e.data.screenType == "3") { //課程管理傳入
  4285. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4286. } else if (e.data.screenType && e.data.screenType == "3train") { //培訓管理傳入
  4287. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4288. } else if (e.data.screenType && e.data.screenType == "3NT") { //課程管理傳入
  4289. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4290. } else if (e.data.screenType && e.data.screenType == "3s") { //課程管理傳入
  4291. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4292. } else if (e.data.screenType && e.data.screenType == "3studio") { //課程管理傳入
  4293. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4294. } else if (e.data.screenType && e.data.screenType == "3s2") { //課程管理傳入
  4295. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4296. } else if (e.data.screenType && e.data.screenType == "2gm") { //課程管理傳入
  4297. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4298. //3是展示全部階段 2學生 1老師 4專家
  4299. } else if (e.data.screenType && e.data.screenType == "3gm") { //課程管理傳入
  4300. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4301. } else if (e.data.close && e.data.close == "1") { //更新用戶信息
  4302. U.MD.D.I.selectUser();
  4303. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4304. var _formel = document.getElementById("study");
  4305. U.UF.F.windowZooming(_formel);
  4306. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4307. var _formel = document.getElementById("studyDetail");
  4308. U.UF.F.windowZooming(_formel);
  4309. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4310. var _formel = document.getElementById("studyDetail");
  4311. U.UF.F.windowZooming(_formel);
  4312. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4313. var _formel = document.getElementById("studentStudy");
  4314. U.UF.F.windowZooming(_formel);
  4315. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4316. // var _formel = document.getElementById("study");
  4317. //如果最大化了,那麼就把他縮小
  4318. // if (_formel.ismaximize) {
  4319. // return;
  4320. // }
  4321. // U.UF.F.windowZooming(_formel);
  4322. // U.UF.F.topWindow(_formel);
  4323. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4324. // var _formel = document.getElementById("studyDetail");
  4325. //如果最大化了,那麼就把他縮小
  4326. // if (_formel.ismaximize) {
  4327. // return;
  4328. // }
  4329. // U.UF.F.windowZooming(_formel);
  4330. // U.UF.F.topWindow(_formel);
  4331. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4332. // var _formel = document.getElementById("studentStudy");
  4333. // if (_formel.ismaximize) {
  4334. // return;
  4335. // }
  4336. // U.UF.F.windowZooming(_formel);
  4337. // U.UF.F.topWindow(_formel);
  4338. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4339. var _formel = document.getElementById("study");
  4340. // if (_formel.ismaximize) {
  4341. // return;
  4342. // }
  4343. // U.UF.F.windowZooming(_formel);
  4344. U.UF.F.topWindow(_formel);
  4345. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4346. var _formel = document.getElementById("studentIndex");
  4347. U.UF.F.windowZooming(_formel);
  4348. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4349. var _formel = document.getElementById("studyDetailS");
  4350. U.UF.F.windowZooming(_formel);
  4351. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4352. var _formel = document.getElementById("studioIndex");
  4353. U.UF.F.windowZooming(_formel);
  4354. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4355. var _formel = document.getElementById("studyDetailStudio");
  4356. U.UF.F.windowZooming(_formel);
  4357. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4358. var _formel = document.getElementById("studyDetailStudio");
  4359. U.UF.F.windowZooming(_formel);
  4360. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4361. var _formel = document.getElementById("studyDetailNT");
  4362. U.UF.F.windowZooming(_formel);
  4363. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4364. var _formel = document.getElementById("studyDetailS");
  4365. U.UF.F.windowZooming(_formel);
  4366. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4367. var _formel = document.getElementById("studyDetailS");
  4368. U.UF.F.topWindow(_formel);
  4369. } else if (e.data.tools && e.data.tools == "1") {
  4370. // U.MD.D.I.openApplication("whiteboard")
  4371. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4372. } else if (e.data.tools && e.data.tools == "2") {
  4373. U.MD.D.I.openApplication("note")
  4374. } else if (e.data.tools && e.data.tools == "3") {
  4375. // U.MD.D.I.openApplication("mind")
  4376. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4377. } else if (e.data.tools && e.data.tools == "4") {
  4378. U.MD.D.I.openApplication("investigation")
  4379. } else if (e.data.tools && e.data.tools == "6") {
  4380. // U.MD.D.I.openApplication("doc")
  4381. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4382. } else if (e.data.tools && e.data.tools == "7") {
  4383. // U.MD.D.I.openApplication("mindNetwork")
  4384. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4385. } else if (e.data.tools && e.data.tools == "8") {
  4386. U.MD.D.I.openApplication("library")
  4387. } else if (e.data.tools && e.data.tools == "17") {
  4388. U.MD.D.I.openApplication("stuLibrary")
  4389. } else if (e.data.tools && e.data.tools == "18") {
  4390. U.MD.D.I.openApplication("train")
  4391. } else if (e.data.tools && e.data.tools == "21") {
  4392. U.MD.D.I.openApplication("program")
  4393. } else if (e.data.tools && e.data.tools == "22") {
  4394. U.MD.D.I.openApplication("AIprogram2")
  4395. } else if (e.data.tools && e.data.tools == "23") {
  4396. U.MD.D.I.openApplication("Pythonprogram")
  4397. } else if (e.data.tools && e.data.tools == "24") {
  4398. U.MD.D.I.openApplication("AIprogram")
  4399. } else if (e.data.tools && e.data.tools == "25") {
  4400. U.MD.D.I.openApplication("sys")
  4401. } else if (e.data.tools && e.data.tools == "26") {
  4402. // U.MD.D.I.openApplication("courseDesign")
  4403. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4404. } else if (e.data.tools && e.data.tools == "31") {
  4405. U.MD.D.I.openApplication("netWorkPanel")
  4406. } else if (e.data.tools && e.data.tools == "32") {
  4407. U.MD.D.I.openApplication("codeEdit")
  4408. } else if (e.data.tools && e.data.tools == "57") {
  4409. U.MD.D.I.openApplication("CocoPi")
  4410. } else if (e.data.tools && e.data.tools == "63") {
  4411. U.MD.D.I.openApplication("Wood")
  4412. } else if (e.data.tools && e.data.tools == "58") {
  4413. U.MD.D.I.openApplication("car")
  4414. } else if (e.data.tools && e.data.tools == "59") {
  4415. U.MD.D.I.openApplication("lineSearch")
  4416. } else if (e.data.tools && e.data.tools == "60") {
  4417. U.MD.D.I.openApplication("deepLearning")
  4418. } else if (e.data.tools && e.data.tools == "61") {
  4419. U.MD.D.I.openApplication("allHistory")
  4420. } else if (e.data.tools && e.data.tools == "28") {
  4421. U.MD.D.I.openApplication("translation")
  4422. } else if (e.data.tools && e.data.tools == "37") {
  4423. U.MD.D.I.openApplication("mohe")
  4424. } else if (e.data.tools && e.data.tools == "38") {
  4425. U.MD.D.I.openApplication("24game")
  4426. } else if (e.data.tools && e.data.tools == "39") {
  4427. U.MD.D.I.openApplication("GeoGebra")
  4428. } else if (e.data.tools && e.data.tools == "43") {
  4429. U.MD.D.I.openApplication("studentEvaluate")
  4430. } else if (e.data.tools && e.data.tools == "44") {
  4431. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4432. } else if (e.data.tools && e.data.tools == "46") {
  4433. U.MD.D.I.openApplication("project")
  4434. } else if (e.data.tools && e.data.tools == "71") {
  4435. U.MD.D.I.openApplication("aigptCourse")
  4436. } else if (e.data.tools && e.data.tools == "1s") {
  4437. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4438. } else if (e.data.tools && e.data.tools == "3s") {
  4439. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4440. } else if (e.data.tools && e.data.tools == "6s") {
  4441. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4442. } else if (e.data.tools && e.data.tools == "1studio") {
  4443. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4444. } else if (e.data.tools && e.data.tools == "3studio") {
  4445. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4446. } else if (e.data.tools && e.data.tools == "6studio") {
  4447. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4448. } else if (e.data.tools && e.data.tools == "3y") {
  4449. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4450. } else if (e.data.tools && e.data.tools == "1y") {
  4451. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4452. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4453. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4454. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4455. U.MD.D.I.openApplication("AIAnalyse")
  4456. } else if (e.data.tools && e.data.tools == "1teacher") {
  4457. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4458. } else if (e.data.tools && e.data.tools == "3teacher") {
  4459. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4460. } else if (e.data.tools && e.data.tools == "7teacher") {
  4461. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4462. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4463. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4464. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4465. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4466. } else if (e.data.tools && e.data.tools == "1E") {
  4467. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4468. } else if (e.data.tools && e.data.tools == "3E") {
  4469. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4470. } else if (e.data.tools && e.data.tools == "57y") {
  4471. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4472. } else if (e.data.tools && e.data.tools == "57u") {
  4473. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4474. } else if (e.data.tools && e.data.tools == "57teacher") {
  4475. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4476. } else if (e.data.tools && e.data.tools == "64") {
  4477. U.MD.D.I.openApplication("AIChat")
  4478. } else if (e.data.tools && e.data.tools == "66") {
  4479. U.MD.D.I.openApplication("formulaEdi")
  4480. } else if (e.data.tools && e.data.tools == "67") {
  4481. U.MD.D.I.openApplication("molStr")
  4482. } else if (e.data.tools && e.data.tools == "68") {
  4483. U.MD.D.I.openApplication("timeAxis")
  4484. } else if (e.data.tools && e.data.tools == "openCourse") {
  4485. let _data = {
  4486. typea: e.data.typea || '',
  4487. typeb: e.data.typeb || '',
  4488. typed: e.data.typed || '',
  4489. }
  4490. U.MD.D.I.openInApplication("index", _data)
  4491. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4492. let _data = {
  4493. classid: e.data.classid || '',
  4494. }
  4495. U.MD.D.I.openInApplication("dataClass", _data)
  4496. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4497. let _data = {
  4498. cid: e.data.cid || '',
  4499. gid: e.data.gid || '',
  4500. }
  4501. U.MD.D.I.openInApplication("opencCscl", _data)
  4502. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4503. U.MD.D.I.openApplication("dataBoardTest")
  4504. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4505. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4506. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4507. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4508. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4509. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4510. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4511. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4512. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4513. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4514. }else if (e.data.tools && e.data.tools == "loginSz") {
  4515. U.MD.D.I.openInApplication("loginSz")
  4516. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4517. if($('#classroom_observation_board')[0]){
  4518. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4519. }
  4520. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4521. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4522. if($('#classroom_observation_ob_comment')[0]){
  4523. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4524. }
  4525. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4526. }
  4527. });
  4528. U.MD.D.I.selectUser = function () {
  4529. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4530. if (res.value[0].length > 0) {
  4531. US.userInfo = res.value[0][0];
  4532. $(".userName")[0].innerHTML = US.userInfo.username;
  4533. }
  4534. }, [], { "type": "GET", "withCredentials": true });
  4535. }
  4536. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4537. var _userinfo = US.userInfo, //登錄用戶信息
  4538. _userid = US.userInfo.userid, //登錄用戶id
  4539. _oid = _userinfo.organizeid,
  4540. _type = US.userInfo.type,
  4541. _org = US.userInfo.org,
  4542. _role = US.userInfo.role,
  4543. _classId = US.userInfo.classid;
  4544. if (_type == 4) {
  4545. tType = 4
  4546. }
  4547. switch (str) {
  4548. case "studyDetailNT": //無終端模式
  4549. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4550. setTimeout(() => {
  4551. U.MD.U.L.login();
  4552. }, 2000);
  4553. } else {
  4554. _formdiv = new U.UF.UI.form(
  4555. "課程詳情",
  4556. $$("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 }), {
  4557. "id": "studyDetailNT",
  4558. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4559. "onresize": function () { }
  4560. }, {
  4561. closecallback: function () { }
  4562. }, { "style": { "height": "36px" } }).form; //創建窗體
  4563. _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); } }
  4564. break;
  4565. }
  4566. case "studyDetail":
  4567. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4568. setTimeout(() => {
  4569. U.MD.U.L.login();
  4570. }, 2000);
  4571. } else {
  4572. _formdiv = new U.UF.UI.form(
  4573. "課程詳情",
  4574. $$("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 }), {
  4575. "id": "studyDetail",
  4576. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4577. "onresize": function () { }
  4578. }, {
  4579. closecallback: function () { }
  4580. }, { "style": { "height": "36px" } }).form; //創建窗體
  4581. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4582. break;
  4583. }
  4584. case "studyDetailTrain":
  4585. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4586. setTimeout(() => {
  4587. U.MD.U.L.login();
  4588. }, 2000);
  4589. } else {
  4590. _formdiv = new U.UF.UI.form(
  4591. "培訓詳情",
  4592. $$("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 }), {
  4593. "id": "studyDetailTrain",
  4594. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4595. "onresize": function () { }
  4596. }, {
  4597. closecallback: function () { }
  4598. }, { "style": { "height": "36px" } }).form; //創建窗體
  4599. _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); } }
  4600. break;
  4601. }
  4602. case "studyDetailS":
  4603. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4604. setTimeout(() => {
  4605. U.MD.U.L.login();
  4606. }, 2000);
  4607. } else {
  4608. _formdiv = new U.UF.UI.form(
  4609. "項目詳情",
  4610. $$("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 }), {
  4611. "id": "studyDetailS",
  4612. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4613. "onresize": function () { }
  4614. }, {
  4615. closecallback: function () { }
  4616. }, { "style": { "height": "36px" } }).form; //創建窗體
  4617. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4618. break;
  4619. }
  4620. case "studyDetailStudio":
  4621. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4622. setTimeout(() => {
  4623. U.MD.U.L.login();
  4624. }, 2000);
  4625. } else {
  4626. _formdiv = new U.UF.UI.form(
  4627. "工作詳情",
  4628. $$("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 }), {
  4629. "id": "studyDetailStudio",
  4630. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4631. "onresize": function () { }
  4632. }, {
  4633. closecallback: function () { }
  4634. }, { "style": { "height": "36px" } }).form; //創建窗體
  4635. _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); } }
  4636. break;
  4637. }
  4638. case "studyDetailS5":
  4639. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4640. setTimeout(() => {
  4641. U.MD.U.L.login();
  4642. }, 2000);
  4643. } else {
  4644. _formdiv = new U.UF.UI.form(
  4645. "項目詳情",
  4646. $$("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 }), {
  4647. "id": "studyDetailS",
  4648. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4649. "onresize": function () { }
  4650. }, {
  4651. closecallback: function () { }
  4652. }, { "style": { "height": "36px" } }).form; //創建窗體
  4653. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4654. break;
  4655. }
  4656. case "studyDetailGM":
  4657. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4658. setTimeout(() => {
  4659. U.MD.U.L.login();
  4660. }, 2000);
  4661. } else {
  4662. _formdiv = new U.UF.UI.form(
  4663. "課程詳情",
  4664. $$("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 }), {
  4665. "id": "studyDetail",
  4666. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4667. "onresize": function () { }
  4668. }, {
  4669. closecallback: function () { }
  4670. }, { "style": { "height": "36px" } }).form; //創建窗體
  4671. _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); } }
  4672. break;
  4673. }
  4674. case "hanUrl":
  4675. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4676. setTimeout(() => {
  4677. U.MD.U.L.login();
  4678. }, 2000);
  4679. } else {
  4680. _formdiv = new U.UF.UI.form(
  4681. "漢字宮",
  4682. $$("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" }), {
  4683. "id": "hanUrl",
  4684. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4685. "onresize": function () { }
  4686. }, {
  4687. closecallback: function () { }
  4688. }, { "style": { "height": "36px" } }).form; //創建窗體
  4689. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "漢字宮", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4690. break;
  4691. }
  4692. case "index":
  4693. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4694. setTimeout(() => {
  4695. U.MD.U.L.login();
  4696. }, 2000);
  4697. } else {
  4698. _formdiv = new U.UF.UI.form(
  4699. "課程中心",
  4700. $$("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 }), {
  4701. "id": "study",
  4702. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4703. "onresize": function () { }
  4704. }, {
  4705. closecallback: function () { }
  4706. }, { "style": { "height": "36px" } }).form; //創建窗體
  4707. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4708. break;
  4709. }
  4710. case "dataClass":
  4711. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4712. setTimeout(() => {
  4713. U.MD.U.L.login();
  4714. }, 2000);
  4715. } else {
  4716. _formdiv = new U.UF.UI.form(
  4717. "數據報告",
  4718. $$("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 }), {
  4719. "id": "dataClass",
  4720. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4721. "onresize": function () { }
  4722. }, {
  4723. closecallback: function () { }
  4724. }, { "style": { "height": "36px" } }).form; //創建窗體
  4725. _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); } }
  4726. break;
  4727. }
  4728. case "opencCscl":
  4729. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4730. setTimeout(() => {
  4731. U.MD.U.L.login();
  4732. }, 2000);
  4733. } else {
  4734. _formdiv = new U.UF.UI.form(
  4735. "協同建構",
  4736. $$("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://cscl.cocorobo.hk?cid=" + data.cid + "&gid=" + data.gid }), {
  4737. "id": "futureClass",
  4738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4739. "onresize": function () { }
  4740. }, {
  4741. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4742. }, { "style": { "height": "36px" } }).form; //創建窗體
  4743. _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); } }
  4744. break;
  4745. }
  4746. case "openCourseUpdate":
  4747. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4748. setTimeout(() => {
  4749. U.MD.U.L.login();
  4750. }, 2000);
  4751. } else {
  4752. _formdiv = new U.UF.UI.form(
  4753. "課程管理",
  4754. $$("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 }), {
  4755. "id": "openCourseUpdate",
  4756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4757. "onresize": function () { }
  4758. }, {
  4759. closecallback: function () { }
  4760. }, { "style": { "height": "36px" } }).form; //創建窗體
  4761. break;
  4762. }
  4763. case "openNewCourseUpdate":
  4764. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4765. setTimeout(() => {
  4766. U.MD.U.L.login();
  4767. }, 2000);
  4768. } else {
  4769. _formdiv = new U.UF.UI.form(
  4770. "課程管理",
  4771. $$("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 }), {
  4772. "id": "openCourseUpdate",
  4773. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4774. "onresize": function () { }
  4775. }, {
  4776. closecallback: function () { }
  4777. }, { "style": { "height": "36px" } }).form; //創建窗體
  4778. break;
  4779. }
  4780. case "openCourseEUpdate":
  4781. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4782. setTimeout(() => {
  4783. U.MD.U.L.login();
  4784. }, 2000);
  4785. } else {
  4786. _formdiv = new U.UF.UI.form(
  4787. "課程管理",
  4788. $$("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 }), {
  4789. "id": "openCourseUpdate",
  4790. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4791. "onresize": function () { }
  4792. }, {
  4793. closecallback: function () { }
  4794. }, { "style": { "height": "36px" } }).form; //創建窗體
  4795. break;
  4796. }
  4797. case "openCourseAiUpdate":
  4798. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4799. setTimeout(() => {
  4800. U.MD.U.L.login();
  4801. }, 2000);
  4802. } else {
  4803. _formdiv = new U.UF.UI.form(
  4804. "課程管理",
  4805. $$("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/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4806. "id": "openCourseUpdate",
  4807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4808. "onresize": function () { }
  4809. }, {
  4810. closecallback: function () { }
  4811. }, { "style": { "height": "36px" } }).form; //創建窗體
  4812. break;
  4813. }
  4814. case "openCourseNewUpdate":
  4815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4816. setTimeout(() => {
  4817. U.MD.U.L.login();
  4818. }, 2000);
  4819. } else {
  4820. _formdiv = new U.UF.UI.form(
  4821. "課程管理",
  4822. $$("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 }), {
  4823. "id": "openCourseUpdate",
  4824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4825. "onresize": function () { }
  4826. }, {
  4827. closecallback: function () { }
  4828. }, { "style": { "height": "36px" } }).form; //創建窗體
  4829. break;
  4830. }
  4831. case "inviteLoginSz":
  4832. _formdiv = new U.UF.UI.form(
  4833. "隨機碼登錄",
  4834. $$("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 }), {
  4835. "id": "loginSz",
  4836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4837. "onresize": function () { }
  4838. }, {
  4839. closecallback: function () { }
  4840. }, { "style": { "height": "36px" } }).form; //創建窗體
  4841. break;
  4842. case "loginSz":
  4843. _formdiv = new U.UF.UI.form(
  4844. "教師登錄",
  4845. $$("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" }), {
  4846. "id": "loginSz",
  4847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4848. "onresize": function () { }
  4849. }, {
  4850. closecallback: function () { }
  4851. }, { "style": { "height": "36px" } }).form; //創建窗體
  4852. break;
  4853. case "teacher":
  4854. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4855. setTimeout(() => {
  4856. U.MD.U.L.login();
  4857. }, 2000);
  4858. } else {
  4859. _formdiv = new U.UF.UI.form(
  4860. "教師管理",
  4861. $$("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 }), {
  4862. "id": "teacher",
  4863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4864. "onresize": function () { }
  4865. }, {
  4866. closecallback: function () { }
  4867. }, { "style": { "height": "36px" } }).form; //創建窗體
  4868. break;
  4869. }
  4870. case "dataBoardSZArea":
  4871. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4872. setTimeout(() => {
  4873. U.MD.U.L.login();
  4874. }, 2000);
  4875. } else {
  4876. _formdiv = new U.UF.UI.form(
  4877. "綜合數據看板",
  4878. $$("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 }), {
  4879. "id": "dataBoardSZArea",
  4880. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4881. "onresize": function () { }
  4882. }, {
  4883. closecallback: function () { }
  4884. }, { "style": { "height": "36px" } }).form; //創建窗體
  4885. break;
  4886. }
  4887. case "dataBoardSZCity":
  4888. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4889. setTimeout(() => {
  4890. U.MD.U.L.login();
  4891. }, 2000);
  4892. } else {
  4893. _formdiv = new U.UF.UI.form(
  4894. "綜合數據看板",
  4895. $$("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 }), {
  4896. "id": "dataBoardSZCity",
  4897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4898. "onresize": function () { }
  4899. }, {
  4900. closecallback: function () { }
  4901. }, { "style": { "height": "36px" } }).form; //創建窗體
  4902. break;
  4903. }
  4904. case "classroom_observation_board":
  4905. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4906. setTimeout(() => {
  4907. U.MD.U.L.login();
  4908. }, 2000);
  4909. } else {
  4910. _formdiv = new U.UF.UI.form(
  4911. "課堂觀察",
  4912. $$("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 }), {
  4913. "id": "classroom_observation_board",
  4914. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4915. "onresize": function () { }
  4916. }, {
  4917. closecallback: function () { }
  4918. }, { "style": { "height": "36px" } }).form; //創建窗體
  4919. break;
  4920. }
  4921. case "classroom_observation_ob_comment":
  4922. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4923. setTimeout(() => {
  4924. U.MD.U.L.login();
  4925. }, 2000);
  4926. } else {
  4927. _formdiv = new U.UF.UI.form(
  4928. "課堂審核",
  4929. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  4930. "id": "classroom_observation_ob_comment",
  4931. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4932. "onresize": function () { }
  4933. }, {
  4934. closecallback: function () { }
  4935. }, { "style": { "height": "36px" } }).form; //創建窗體
  4936. break;
  4937. }
  4938. }
  4939. }
  4940. U.MD.D.I.openApplication = function (str, obj, info) {
  4941. obj = obj || {};
  4942. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  4943. _formdiv, //創建任務欄時同時彈出的窗體元素。
  4944. _userinfo = US.userInfo, //登錄用戶信息
  4945. _userid = obj.userid || US.userInfo.userid, //登錄用戶id
  4946. _oid = obj.organizeid || _userinfo.organizeid,
  4947. _type = US.userInfo.type,
  4948. _org = US.userInfo.org,
  4949. _role = US.userInfo.role,
  4950. _classId = US.userInfo.classid,
  4951. _TscreenType = 1
  4952. _screenType = 2,
  4953. _SscreenType = 3;
  4954. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4955. return;
  4956. }
  4957. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4958. switch (str) {
  4959. case "studnetProject": //好友打開
  4960. _formdiv = new U.UF.UI.form(
  4961. "我的項目",
  4962. $$("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 }), {
  4963. "id": "studnetProject",
  4964. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4965. "onresize": function () { }
  4966. }, {
  4967. closecallback: function () { }
  4968. }, { "style": { "height": "36px" } }).form; //創建窗體
  4969. _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); } }
  4970. break;
  4971. case "studentEvaluate": //好友打開
  4972. _formdiv = new U.UF.UI.form(
  4973. "我的評價",
  4974. $$("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 }), {
  4975. "id": "studentEvaluate",
  4976. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4977. "onresize": function () { }
  4978. }, {
  4979. closecallback: function () { }
  4980. }, { "style": { "height": "36px" } }).form; //創建窗體
  4981. _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); } }
  4982. break;
  4983. case "my":
  4984. _formdiv = new U.UF.UI.form(
  4985. "我的資料",
  4986. $$("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 }), {
  4987. "id": "my",
  4988. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4989. "onresize": function () { }
  4990. }, {
  4991. closecallback: function () { }
  4992. }, { "style": { "height": "36px" } }).form; //創建窗體
  4993. _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); } }
  4994. break;
  4995. case "program":
  4996. _formdiv = new U.UF.UI.form(
  4997. "編程平臺",
  4998. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4999. "id": "program",
  5000. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5001. "onresize": function () { }
  5002. }, {
  5003. closecallback: function () { }
  5004. }, { "style": { "height": "36px" } }).form; //創建窗體
  5005. _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); } }
  5006. break;
  5007. case "library":
  5008. _formdiv = new U.UF.UI.form(
  5009. "素材庫",
  5010. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5011. "id": "library",
  5012. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5013. "onresize": function () { }
  5014. }, {
  5015. closecallback: function () { }
  5016. }, { "style": { "height": "36px" } }).form; //創建窗體
  5017. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材庫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5018. break;
  5019. case "whiteboard":
  5020. _formdiv = new U.UF.UI.form(
  5021. "電子白板",
  5022. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5023. "id": "whiteboard",
  5024. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5025. "onresize": function () { }
  5026. }, {
  5027. closecallback: function () { }
  5028. }, { "style": { "height": "36px" } }).form; //創建窗體
  5029. _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); } }
  5030. break;
  5031. case "investigation":
  5032. _formdiv = new U.UF.UI.form(
  5033. "問卷調查",
  5034. $$("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 }), {
  5035. "id": "investigation",
  5036. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5037. "onresize": function () { }
  5038. }, {
  5039. closecallback: function () { }
  5040. }, { "style": { "height": "36px" } }).form; //創建窗體
  5041. _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); } }
  5042. break;
  5043. case "note":
  5044. _formdiv = new U.UF.UI.form(
  5045. "便簽分類",
  5046. $$("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 }), {
  5047. "id": "note",
  5048. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5049. "onresize": function () { }
  5050. }, {
  5051. closecallback: function () { }
  5052. }, { "style": { "height": "36px" } }).form; //創建窗體
  5053. _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); } }
  5054. break;
  5055. // case "score":
  5056. // _formdiv = new U.UF.UI.form(
  5057. // "量規評分",
  5058. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5059. // "id": "score",
  5060. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5061. // "onresize": function() {}
  5062. // }, {
  5063. // closecallback: function() {}
  5064. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5065. // _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); } }
  5066. // break;
  5067. case "mind":
  5068. _formdiv = new U.UF.UI.form(
  5069. "思維導圖",
  5070. $$("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"
  5071. "id": "mind",
  5072. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5073. "onresize": function () { }
  5074. }, {
  5075. closecallback: function () { }
  5076. }, { "style": { "height": "36px" } }).form; //創建窗體
  5077. _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); } }
  5078. break;
  5079. case "doc":
  5080. // U.MD.D.I.isRoom();
  5081. _formdiv = new U.UF.UI.form(
  5082. "協同文檔",
  5083. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5084. "id": "doc",
  5085. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5086. "onresize": function () { }
  5087. }, {
  5088. closecallback: function () { }
  5089. }, { "style": { "height": "36px" } }).form; //創建窗體
  5090. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5091. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5092. // })
  5093. _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); } }
  5094. break;
  5095. case "studentStudy":
  5096. _formdiv = new U.UF.UI.form(
  5097. "課程中心",
  5098. $$("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
  5099. "id": "studentStudy",
  5100. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5101. "onresize": function () { }
  5102. }, {
  5103. closecallback: function () { }
  5104. }, { "style": { "height": "36px" } }).form; //創建窗體
  5105. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "課程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5106. break;
  5107. case "train": //好友打開
  5108. _formdiv = new U.UF.UI.form(
  5109. "訓練平臺",
  5110. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5111. "id": "train",
  5112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //創建窗體
  5117. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "訓練平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5118. break;
  5119. case "mindNetwork": //好友打開
  5120. _formdiv = new U.UF.UI.form(
  5121. "思維網格",
  5122. $$("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 }), {
  5123. "id": "mindNetwork",
  5124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5125. "onresize": function () { }
  5126. }, {
  5127. closecallback: function () { }
  5128. }, { "style": { "height": "36px" } }).form; //創建窗體
  5129. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5130. break;
  5131. case "studentClassRoom": //好友打開
  5132. _formdiv = new U.UF.UI.form(
  5133. "實時課堂",
  5134. $$("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 }), {
  5135. "id": "studentClassRoom",
  5136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5137. "onresize": function () { }
  5138. }, {
  5139. closecallback: function () { }
  5140. }, { "style": { "height": "36px" } }).form; //創建窗體
  5141. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5142. setTimeout(() => {
  5143. U.UF.F.windowZooming(_formdiv)
  5144. }, 0);
  5145. break;
  5146. }
  5147. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5148. switch (str) {
  5149. case "studnetProject": //好友打開
  5150. _formdiv = new U.UF.UI.form(
  5151. "我的項目",
  5152. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5153. "id": "studnetProject",
  5154. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5155. "onresize": function () { }
  5156. }, {
  5157. closecallback: function () { }
  5158. }, { "style": { "height": "36px" } }).form; //創建窗體
  5159. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的項目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5160. break;
  5161. case "studentEvaluate": //好友打開
  5162. _formdiv = new U.UF.UI.form(
  5163. "我的評價",
  5164. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5165. "id": "studentEvaluate",
  5166. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5167. "onresize": function () { }
  5168. }, {
  5169. closecallback: function () { }
  5170. }, { "style": { "height": "36px" } }).form; //創建窗體
  5171. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的評價", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5172. break;
  5173. case "my":
  5174. _formdiv = new U.UF.UI.form(
  5175. "我的資料",
  5176. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5177. "id": "my",
  5178. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5179. "onresize": function () { }
  5180. }, {
  5181. closecallback: function () { }
  5182. }, { "style": { "height": "36px" } }).form; //創建窗體
  5183. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的資料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5184. break;
  5185. case "program":
  5186. _formdiv = new U.UF.UI.form(
  5187. "編程平臺",
  5188. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5189. "id": "program",
  5190. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5191. "onresize": function () { }
  5192. }, {
  5193. closecallback: function () { }
  5194. }, { "style": { "height": "36px" } }).form; //創建窗體
  5195. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "編程平臺", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5196. break;
  5197. case "library":
  5198. _formdiv = new U.UF.UI.form(
  5199. "素材庫",
  5200. $$("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 }), {
  5201. "id": "library",
  5202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5203. "onresize": function () { }
  5204. }, {
  5205. closecallback: function () { }
  5206. }, { "style": { "height": "36px" } }).form; //創建窗體
  5207. _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); } }
  5208. break;
  5209. case "whiteboard":
  5210. _formdiv = new U.UF.UI.form(
  5211. "電子白板",
  5212. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5213. "id": "whiteboard",
  5214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5215. "onresize": function () { }
  5216. }, {
  5217. closecallback: function () { }
  5218. }, { "style": { "height": "36px" } }).form; //創建窗體
  5219. _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); } }
  5220. break;
  5221. case "investigation":
  5222. _formdiv = new U.UF.UI.form(
  5223. "問卷調查",
  5224. $$("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 }), {
  5225. "id": "investigation",
  5226. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5227. "onresize": function () { }
  5228. }, {
  5229. closecallback: function () { }
  5230. }, { "style": { "height": "36px" } }).form; //創建窗體
  5231. _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); } }
  5232. break;
  5233. case "note":
  5234. _formdiv = new U.UF.UI.form(
  5235. "便簽分類",
  5236. $$("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 }), {
  5237. "id": "note",
  5238. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5239. "onresize": function () { }
  5240. }, {
  5241. closecallback: function () { }
  5242. }, { "style": { "height": "36px" } }).form; //創建窗體
  5243. _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); } }
  5244. break;
  5245. // case "score":
  5246. // _formdiv = new U.UF.UI.form(
  5247. // "量規評分",
  5248. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5249. // "id": "score",
  5250. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5251. // "onresize": function() {}
  5252. // }, {
  5253. // closecallback: function() {}
  5254. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5255. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量規評分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5256. // break;
  5257. case "mind":
  5258. _formdiv = new U.UF.UI.form(
  5259. "思維導圖",
  5260. $$("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"
  5261. "id": "mind",
  5262. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5263. "onresize": function () { }
  5264. }, {
  5265. closecallback: function () { }
  5266. }, { "style": { "height": "36px" } }).form; //創建窗體
  5267. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思維導圖", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5268. break;
  5269. case "doc":
  5270. // U.MD.D.I.isRoom();
  5271. _formdiv = new U.UF.UI.form(
  5272. "協同文檔",
  5273. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5274. "id": "doc",
  5275. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5276. "onresize": function () { }
  5277. }, {
  5278. closecallback: function () { }
  5279. }, { "style": { "height": "36px" } }).form; //創建窗體
  5280. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5281. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5282. })
  5283. _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); } }
  5284. break;
  5285. case "train": //好友打開
  5286. _formdiv = new U.UF.UI.form(
  5287. "訓練平臺",
  5288. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5289. "id": "train",
  5290. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5291. "onresize": function () { }
  5292. }, {
  5293. closecallback: function () { }
  5294. }, { "style": { "height": "36px" } }).form; //創建窗體
  5295. _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); } }
  5296. break;
  5297. case "studentStudy":
  5298. _formdiv = new U.UF.UI.form(
  5299. "課程中心",
  5300. $$("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
  5301. "id": "studentStudy",
  5302. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5303. "onresize": function () { }
  5304. }, {
  5305. closecallback: function () { }
  5306. }, { "style": { "height": "36px" } }).form; //創建窗體
  5307. _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); } }
  5308. break;
  5309. case "mindNetwork": //好友打開
  5310. _formdiv = new U.UF.UI.form(
  5311. "思維網格",
  5312. $$("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 }), {
  5313. "id": "mindNetwork",
  5314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //創建窗體
  5319. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思維網格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5320. break;
  5321. case "studentClassRoom": //好友打開
  5322. _formdiv = new U.UF.UI.form(
  5323. "實時課堂",
  5324. $$("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 }), {
  5325. "id": "studentClassRoom",
  5326. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5327. "onresize": function () { }
  5328. }, {
  5329. closecallback: function () { }
  5330. }, { "style": { "height": "36px" } }).form; //創建窗體
  5331. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "實時課堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5332. setTimeout(() => {
  5333. U.UF.F.windowZooming(_formdiv)
  5334. }, 0);
  5335. break;
  5336. }
  5337. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5338. //選擇應用處理
  5339. switch (str) {
  5340. case "project": //好友打開
  5341. _formdiv = new U.UF.UI.form(
  5342. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作項目' : "課程管理",
  5343. $$("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 }), {
  5344. "id": "project",
  5345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5346. "onresize": function () { }
  5347. }, {
  5348. closecallback: function () { }
  5349. }, { "style": { "height": "36px" } }).form; //創建窗體
  5350. _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); } }
  5351. break;
  5352. case "student":
  5353. _formdiv = new U.UF.UI.form(
  5354. "學生管理",
  5355. $$("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 }), {
  5356. "id": "student",
  5357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5358. "onresize": function () { }
  5359. }, {
  5360. closecallback: function () { }
  5361. }, { "style": { "height": "36px" } }).form; //創建窗體
  5362. _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); } }
  5363. break;
  5364. case "evaluate":
  5365. _formdiv = new U.UF.UI.form(
  5366. "學生評價",
  5367. $$("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 }), {
  5368. "id": "evaluate",
  5369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5370. "onresize": function () { }
  5371. }, {
  5372. closecallback: function () { }
  5373. }, { "style": { "height": "36px" } }).form; //創建窗體
  5374. _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); } }
  5375. break;
  5376. case "sys":
  5377. _formdiv = new U.UF.UI.form(
  5378. "目標管理",
  5379. $$("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 }), {
  5380. "id": "sys",
  5381. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5382. "onresize": function () { }
  5383. }, {
  5384. closecallback: function () { }
  5385. }, { "style": { "height": "36px" } }).form; //創建窗體
  5386. _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); } }
  5387. break;
  5388. case "courseDesign":
  5389. _formdiv = new U.UF.UI.form(
  5390. "項目設計",
  5391. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5392. "id": "courseDesign",
  5393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5394. "onresize": function () { }
  5395. }, {
  5396. closecallback: function () { }
  5397. }, { "style": { "height": "36px" } }).form; //創建窗體
  5398. _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); } }
  5399. break;
  5400. case "program":
  5401. _formdiv = new U.UF.UI.form(
  5402. "編程平臺",
  5403. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5404. "id": "program",
  5405. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5406. "onresize": function () { }
  5407. }, {
  5408. closecallback: function () { }
  5409. }, { "style": { "height": "36px" } }).form; //創建窗體
  5410. _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); } }
  5411. break;
  5412. case "class":
  5413. _formdiv = new U.UF.UI.form(
  5414. "班級管理",
  5415. $$("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 }), {
  5416. "id": "class",
  5417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5418. "onresize": function () { }
  5419. }, {
  5420. closecallback: function () { }
  5421. }, { "style": { "height": "36px" } }).form; //創建窗體
  5422. _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); } }
  5423. break;
  5424. case "Grade":
  5425. _formdiv = new U.UF.UI.form(
  5426. "年級管理",
  5427. $$("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 }), {
  5428. "id": "Grade",
  5429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //創建窗體
  5434. _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); } }
  5435. break;
  5436. case "teacherOffice":
  5437. _formdiv = new U.UF.UI.form(
  5438. "教研室",
  5439. $$("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 }), {
  5440. "id": "teacherOffice",
  5441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //創建窗體
  5446. _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); } }
  5447. break;
  5448. case "my":
  5449. _formdiv = new U.UF.UI.form(
  5450. "我的資料",
  5451. $$("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 }), {
  5452. "id": "my",
  5453. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5454. "onresize": function () { }
  5455. }, {
  5456. closecallback: function () { }
  5457. }, { "style": { "height": "36px" } }).form; //創建窗體
  5458. _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); } }
  5459. break;
  5460. case "notice":
  5461. _formdiv = new U.UF.UI.form(
  5462. "通知公告",
  5463. $$("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 }), {
  5464. "id": "notice",
  5465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5466. "onresize": function () { }
  5467. }, {
  5468. closecallback: function () { }
  5469. }, { "style": { "height": "36px" } }).form; //創建窗體
  5470. _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); } }
  5471. break;
  5472. case "library":
  5473. _formdiv = new U.UF.UI.form(
  5474. "素材庫",
  5475. $$("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 }), {
  5476. "id": "library",
  5477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5478. "onresize": function () { }
  5479. }, {
  5480. closecallback: function () { }
  5481. }, { "style": { "height": "36px" } }).form; //創建窗體
  5482. _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); } }
  5483. break;
  5484. case "whiteboard":
  5485. _formdiv = new U.UF.UI.form(
  5486. "電子白板",
  5487. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5488. "id": "whiteboard",
  5489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5490. "onresize": function () { }
  5491. }, {
  5492. closecallback: function () { }
  5493. }, { "style": { "height": "36px" } }).form; //創建窗體
  5494. _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); } }
  5495. break;
  5496. case "investigation":
  5497. _formdiv = new U.UF.UI.form(
  5498. "問卷調查",
  5499. $$("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 }), {
  5500. "id": "investigation",
  5501. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5502. "onresize": function () { }
  5503. }, {
  5504. closecallback: function () { }
  5505. }, { "style": { "height": "36px" } }).form; //創建窗體
  5506. _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); } }
  5507. break;
  5508. case "note":
  5509. _formdiv = new U.UF.UI.form(
  5510. "便簽分類",
  5511. $$("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 }), {
  5512. "id": "note",
  5513. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5514. "onresize": function () { }
  5515. }, {
  5516. closecallback: function () { }
  5517. }, { "style": { "height": "36px" } }).form; //創建窗體
  5518. _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); } }
  5519. break;
  5520. // case "score":
  5521. // _formdiv = new U.UF.UI.form(
  5522. // "量規評分",
  5523. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5524. // "id": "score",
  5525. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5526. // "onresize": function() {}
  5527. // }, {
  5528. // closecallback: function() {}
  5529. // }, { "style": { "height": "36px" } }).form; //創建窗體
  5530. // _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); } }
  5531. // break;
  5532. case "mind":
  5533. _formdiv = new U.UF.UI.form(
  5534. "思維導圖",
  5535. $$("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"
  5536. "id": "mind",
  5537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5538. "onresize": function () { }
  5539. }, {
  5540. closecallback: function () { }
  5541. }, { "style": { "height": "36px" } }).form; //創建窗體
  5542. _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); } }
  5543. break;
  5544. case "doc":
  5545. // U.MD.D.I.isRoom();
  5546. _formdiv = new U.UF.UI.form(
  5547. "協同文檔",
  5548. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5549. "id": "doc",
  5550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //創建窗體
  5555. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5556. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5557. })
  5558. _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); } }
  5559. break;
  5560. case "study":
  5561. _formdiv = new U.UF.UI.form(
  5562. "課程中心",
  5563. $$("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
  5564. "id": "study",
  5565. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //創建窗體
  5570. _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); } }
  5571. break;
  5572. case "mindNetwork": //好友打開
  5573. _formdiv = new U.UF.UI.form(
  5574. "思維網格",
  5575. $$("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 }), {
  5576. "id": "mindNetwork",
  5577. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //創建窗體
  5582. _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); } }
  5583. break;
  5584. case "train": //好友打開
  5585. _formdiv = new U.UF.UI.form(
  5586. "訓練平臺",
  5587. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5588. "id": "mindNetwork",
  5589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //創建窗體
  5594. _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); } }
  5595. break;
  5596. case "teacherClassRoom": //好友打開
  5597. _formdiv = new U.UF.UI.form(
  5598. "實時課堂",
  5599. $$("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 }), {
  5600. "id": "teacherClassRoom",
  5601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //創建窗體
  5606. _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); } }
  5607. setTimeout(() => {
  5608. U.UF.F.windowZooming(_formdiv)
  5609. }, 0);
  5610. break;
  5611. }
  5612. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5613. switch (str) {
  5614. case "project": //好友打開
  5615. _formdiv = new U.UF.UI.form(
  5616. "課程管理",
  5617. $$("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 }), {
  5618. "id": "project",
  5619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5620. "onresize": function () { }
  5621. }, {
  5622. closecallback: function () { }
  5623. }, { "style": { "height": "36px" } }).form; //創建窗體
  5624. _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); } }
  5625. break;
  5626. case "evaluate":
  5627. _formdiv = new U.UF.UI.form(
  5628. "學生評價",
  5629. $$("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 }), {
  5630. "id": "evaluate",
  5631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5632. "onresize": function () { }
  5633. }, {
  5634. closecallback: function () { }
  5635. }, { "style": { "height": "36px" } }).form; //創建窗體
  5636. _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); } }
  5637. break;
  5638. case "notice":
  5639. _formdiv = new U.UF.UI.form(
  5640. "通知公告",
  5641. $$("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 }), {
  5642. "id": "notice",
  5643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5644. "onresize": function () { }
  5645. }, {
  5646. closecallback: function () { }
  5647. }, { "style": { "height": "36px" } }).form; //創建窗體
  5648. _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); } }
  5649. break;
  5650. case "stuLibrary":
  5651. _formdiv = new U.UF.UI.form(
  5652. "學習資料",
  5653. $$("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 }), {
  5654. "id": "stuLibrary",
  5655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5656. "onresize": function () { }
  5657. }, {
  5658. closecallback: function () { }
  5659. }, { "style": { "height": "36px" } }).form; //創建窗體
  5660. _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); } }
  5661. break;
  5662. case "program":
  5663. _formdiv = new U.UF.UI.form(
  5664. "編程平臺",
  5665. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5666. "id": "program",
  5667. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5668. "onresize": function () { }
  5669. }, {
  5670. closecallback: function () { }
  5671. }, { "style": { "height": "36px" } }).form; //創建窗體
  5672. _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); } }
  5673. break;
  5674. case "whiteboard":
  5675. _formdiv = new U.UF.UI.form(
  5676. "電子白板",
  5677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.hk/" }), {
  5678. "id": "whiteboard",
  5679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //創建窗體
  5684. _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); } }
  5685. break;
  5686. case "investigation":
  5687. _formdiv = new U.UF.UI.form(
  5688. "問卷調查",
  5689. $$("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 }), {
  5690. "id": "investigation",
  5691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5692. "onresize": function () { }
  5693. }, {
  5694. closecallback: function () { }
  5695. }, { "style": { "height": "36px" } }).form; //創建窗體
  5696. _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); } }
  5697. break;
  5698. case "mind":
  5699. _formdiv = new U.UF.UI.form(
  5700. "思維導圖",
  5701. $$("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"
  5702. "id": "mind",
  5703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5704. "onresize": function () { }
  5705. }, {
  5706. closecallback: function () { }
  5707. }, { "style": { "height": "36px" } }).form; //創建窗體
  5708. _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); } }
  5709. break;
  5710. case "doc":
  5711. // U.MD.D.I.isRoom();
  5712. _formdiv = new U.UF.UI.form(
  5713. "協同文檔",
  5714. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5715. "id": "doc",
  5716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //創建窗體
  5721. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5722. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5723. })
  5724. _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); } }
  5725. break;
  5726. case "study":
  5727. _formdiv = new U.UF.UI.form(
  5728. "課程中心",
  5729. $$("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
  5730. "id": "study",
  5731. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //創建窗體
  5736. _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); } }
  5737. break;
  5738. case "mindNetwork": //好友打開
  5739. _formdiv = new U.UF.UI.form(
  5740. "思維網格",
  5741. $$("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 }), {
  5742. "id": "mindNetwork",
  5743. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5744. "onresize": function () { }
  5745. }, {
  5746. closecallback: function () { }
  5747. }, { "style": { "height": "36px" } }).form; //創建窗體
  5748. _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); } }
  5749. break;
  5750. case "train": //好友打開
  5751. _formdiv = new U.UF.UI.form(
  5752. "訓練平臺",
  5753. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5754. "id": "train",
  5755. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //創建窗體
  5760. _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); } }
  5761. break;
  5762. case "sys":
  5763. _formdiv = new U.UF.UI.form(
  5764. "目標管理",
  5765. $$("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 }), {
  5766. "id": "sys",
  5767. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //創建窗體
  5772. _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); } }
  5773. break;
  5774. case "courseDesign":
  5775. _formdiv = new U.UF.UI.form(
  5776. "項目設計",
  5777. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5778. "id": "courseDesign",
  5779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5780. "onresize": function () { }
  5781. }, {
  5782. closecallback: function () { }
  5783. }, { "style": { "height": "36px" } }).form; //創建窗體
  5784. _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); } }
  5785. break;
  5786. }
  5787. } else if (!_type) {
  5788. switch (str) {
  5789. case "my":
  5790. _formdiv = new U.UF.UI.form(
  5791. "我的資料",
  5792. $$("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 }), {
  5793. "id": "my",
  5794. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5795. "onresize": function () { }
  5796. }, {
  5797. closecallback: function () { }
  5798. }, { "style": { "height": "36px" } }).form; //創建窗體
  5799. _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); } }
  5800. break;
  5801. }
  5802. }
  5803. switch (str) {
  5804. // AIprogram2 AI體驗 aihub.cocorobo.cn
  5805. // Pythonprogram Python編程 python-blockly.cocorobo.cn
  5806. // AIprogram AI編程 ai-blockly.cocorobo.cn
  5807. case "formulaEdi": //公式編輯
  5808. _formdiv = new U.UF.UI.form(
  5809. "公式編輯",
  5810. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5811. "id": "formulaEdi",
  5812. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5813. "onresize": function () { }
  5814. }, {
  5815. closecallback: function () { }
  5816. }, { "style": { "height": "36px" } }).form; //創建窗體
  5817. _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); } }
  5818. break;
  5819. case "molStr": //分子結構
  5820. _formdiv = new U.UF.UI.form(
  5821. "分子結構",
  5822. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5823. "id": "molStr",
  5824. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //創建窗體
  5829. _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); } }
  5830. break;
  5831. case "timeAxis": //時間軸
  5832. _formdiv = new U.UF.UI.form(
  5833. "時間軸",
  5834. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5835. "id": "timeAxis",
  5836. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5837. "onresize": function () { }
  5838. }, {
  5839. closecallback: function () { }
  5840. }, { "style": { "height": "36px" } }).form; //創建窗體
  5841. _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); } }
  5842. break;
  5843. case "AIprogram2": //AI體驗
  5844. _formdiv = new U.UF.UI.form(
  5845. "AI體驗",
  5846. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5847. "id": "AIprogram2",
  5848. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5849. "onresize": function () { }
  5850. }, {
  5851. closecallback: function () { }
  5852. }, { "style": { "height": "36px" } }).form; //創建窗體
  5853. _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); } }
  5854. break;
  5855. case "Pythonprogram": //python編程
  5856. _formdiv = new U.UF.UI.form(
  5857. "Python編程",
  5858. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5859. "id": "Pythonprogram",
  5860. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //創建窗體
  5865. _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); } }
  5866. break;
  5867. case "AIprogram": //ai編程
  5868. _formdiv = new U.UF.UI.form(
  5869. "AI編程平臺",
  5870. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5871. "id": "AIprogram",
  5872. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5873. "onresize": function () { }
  5874. }, {
  5875. closecallback: function () { }
  5876. }, { "style": { "height": "36px" } }).form; //創建窗體
  5877. _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); } }
  5878. break;
  5879. case "CocoPi": //CocoPi
  5880. _formdiv = new U.UF.UI.form(
  5881. "CocoPi",
  5882. $$("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.hk/?lang=zh-hant" }), {
  5883. "id": "CocoPi",
  5884. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5885. "onresize": function () { }
  5886. }, {
  5887. closecallback: function () { }
  5888. }, { "style": { "height": "36px" } }).form; //創建窗體
  5889. _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); } }
  5890. break;
  5891. case "Wood": //Wood
  5892. _formdiv = new U.UF.UI.form(
  5893. "海龜編程",
  5894. $$("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/" }), {
  5895. "id": "Wood",
  5896. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5897. "onresize": function () { }
  5898. }, {
  5899. closecallback: function () { }
  5900. }, { "style": { "height": "36px" } }).form; //創建窗體
  5901. _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); } }
  5902. break;
  5903. case "car": //模擬駕駛
  5904. _formdiv = new U.UF.UI.form(
  5905. "模擬駕駛",
  5906. $$("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/" }), {
  5907. "id": "car",
  5908. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5909. "onresize": function () { }
  5910. }, {
  5911. closecallback: function () { }
  5912. }, { "style": { "height": "36px" } }).form; //創建窗體
  5913. _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); } }
  5914. break;
  5915. case "lineSearch": //路徑搜索
  5916. _formdiv = new U.UF.UI.form(
  5917. "路徑搜索",
  5918. $$("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/" }), {
  5919. "id": "lineSearch",
  5920. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5921. "onresize": function () { }
  5922. }, {
  5923. closecallback: function () { }
  5924. }, { "style": { "height": "36px" } }).form; //創建窗體
  5925. _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); } }
  5926. break;
  5927. case "deepLearning": //深度學習
  5928. _formdiv = new U.UF.UI.form(
  5929. "深度學習",
  5930. $$("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/#" }), {
  5931. "id": "deepLearning",
  5932. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5933. "onresize": function () { }
  5934. }, {
  5935. closecallback: function () { }
  5936. }, { "style": { "height": "36px" } }).form; //創建窗體
  5937. _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); } }
  5938. break;
  5939. case "allHistory": //深度學習
  5940. _formdiv = new U.UF.UI.form(
  5941. "全歷史",
  5942. $$("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/" }), {
  5943. "id": "allHistory",
  5944. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5945. "onresize": function () { }
  5946. }, {
  5947. closecallback: function () { }
  5948. }, { "style": { "height": "36px" } }).form; //創建窗體
  5949. _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); } }
  5950. break;
  5951. case "chatPDF": //ai編程
  5952. _formdiv = new U.UF.UI.form(
  5953. "chatPDF",
  5954. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5955. "id": "chatPDF",
  5956. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5957. "onresize": function () { }
  5958. }, {
  5959. closecallback: function () { }
  5960. }, { "style": { "height": "36px" } }).form; //創建窗體
  5961. _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); } }
  5962. break;
  5963. case "resources": //國家教育
  5964. _formdiv = new U.UF.UI.form(
  5965. "國家教育",
  5966. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5967. "id": "resources",
  5968. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5969. "onresize": function () { }
  5970. }, {
  5971. closecallback: function () { }
  5972. }, { "style": { "height": "36px" } }).form; //創建窗體
  5973. _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); } }
  5974. break;
  5975. case "codeEdit": //源碼編輯
  5976. _formdiv = new U.UF.UI.form(
  5977. "源碼編輯",
  5978. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5979. "id": "codeEdit",
  5980. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5981. "onresize": function () { }
  5982. }, {
  5983. closecallback: function () { }
  5984. }, { "style": { "height": "36px" } }).form; //創建窗體
  5985. _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); } }
  5986. break; //
  5987. case "MindMap": //MindMap
  5988. _formdiv = new U.UF.UI.form(
  5989. "MindMap",
  5990. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5991. "id": "MindMap",
  5992. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5993. "onresize": function () { }
  5994. }, {
  5995. closecallback: function () { }
  5996. }, { "style": { "height": "36px" } }).form; //創建窗體
  5997. _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); } }
  5998. break;
  5999. case "netWorkPanel": //netWorkPanel
  6000. _formdiv = new U.UF.UI.form(
  6001. "netWorkPanel",
  6002. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6003. "id": "netWorkPanel",
  6004. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6005. "onresize": function () { }
  6006. }, {
  6007. closecallback: function () { }
  6008. }, { "style": { "height": "36px" } }).form; //創建窗體
  6009. _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); } }
  6010. break;
  6011. case "GeoGebra": //GeoGebra
  6012. _formdiv = new U.UF.UI.form(
  6013. "GeoGebra",
  6014. $$("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" }), {
  6015. "id": "GeoGebra",
  6016. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6017. "onresize": function () { }
  6018. }, {
  6019. closecallback: function () { }
  6020. }, { "style": { "height": "36px" } }).form; //創建窗體
  6021. _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); } }
  6022. break;
  6023. case "translation": //翻譯
  6024. _formdiv = new U.UF.UI.form(
  6025. "翻譯",
  6026. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6027. "id": "translation",
  6028. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6029. "onresize": function () { }
  6030. }, {
  6031. closecallback: function () { }
  6032. }, { "style": { "height": "36px" } }).form; //創建窗體
  6033. _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); } }
  6034. break;
  6035. case "mohe": //魔盒
  6036. _formdiv = new U.UF.UI.form(
  6037. "魔盒識字",
  6038. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6039. "id": "mohe",
  6040. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6041. "onresize": function () { }
  6042. }, {
  6043. closecallback: function () { }
  6044. }, { "style": { "height": "36px" } }).form; //創建窗體
  6045. _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); } }
  6046. break;
  6047. case "24game": //24點
  6048. _formdiv = new U.UF.UI.form(
  6049. "24點",
  6050. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6051. "id": "24game",
  6052. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6053. "onresize": function () { }
  6054. }, {
  6055. closecallback: function () { }
  6056. }, { "style": { "height": "36px" } }).form; //創建窗體
  6057. _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); } }
  6058. break;
  6059. case "case":
  6060. _formdiv = new U.UF.UI.form(
  6061. "課程進展",
  6062. $$("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 }), {
  6063. "id": "case",
  6064. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6065. "onresize": function () { }
  6066. }, {
  6067. closecallback: function () { }
  6068. }, { "style": { "height": "36px" } }).form; //創建窗體
  6069. _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); } }
  6070. break;
  6071. case "snf":
  6072. _formdiv = new U.UF.UI.form(
  6073. "賽諾梵",
  6074. $$("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" }), {
  6075. "id": "snf",
  6076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6077. "onresize": function () { }
  6078. }, {
  6079. closecallback: function () { }
  6080. }, { "style": { "height": "36px" } }).form; //創建窗體
  6081. _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); } }
  6082. break;
  6083. case "hanFamily":
  6084. _formdiv = new U.UF.UI.form(
  6085. "漢字家族",
  6086. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6087. "id": "hanFamily",
  6088. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6089. "onresize": function () { }
  6090. }, {
  6091. closecallback: function () { }
  6092. }, { "style": { "height": "36px" } }).form; //創建窗體
  6093. _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); } }
  6094. break;
  6095. case "hanClassics":
  6096. _formdiv = new U.UF.UI.form(
  6097. "國學經典",
  6098. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6099. "id": "hanClassics",
  6100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6101. "onresize": function () { }
  6102. }, {
  6103. closecallback: function () { }
  6104. }, { "style": { "height": "36px" } }).form; //創建窗體
  6105. _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); } }
  6106. break;
  6107. case "hanTraining":
  6108. _formdiv = new U.UF.UI.form(
  6109. "筆畫訓練",
  6110. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6111. "id": "hanTraining",
  6112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6113. "onresize": function () { }
  6114. }, {
  6115. closecallback: function () { }
  6116. }, { "style": { "height": "36px" } }).form; //創建窗體
  6117. _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); } }
  6118. break;
  6119. case "hanClass":
  6120. _formdiv = new U.UF.UI.form(
  6121. "書法課堂",
  6122. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6123. "id": "hanClass",
  6124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6125. "onresize": function () { }
  6126. }, {
  6127. closecallback: function () { }
  6128. }, { "style": { "height": "36px" } }).form; //創建窗體
  6129. _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); } }
  6130. break;
  6131. case "han":
  6132. _formdiv = new U.UF.UI.form(
  6133. "漢字宮",
  6134. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6135. "id": "han",
  6136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6137. "onresize": function () { }
  6138. }, {
  6139. closecallback: function () { }
  6140. }, { "style": { "height": "36px" } }).form; //創建窗體
  6141. _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); } }
  6142. break;
  6143. case "projectGM": //課程管理
  6144. _formdiv = new U.UF.UI.form(
  6145. "課程管理",
  6146. $$("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 }), {
  6147. "id": "projectGM",
  6148. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6149. "onresize": function () { }
  6150. }, {
  6151. closecallback: function () { }
  6152. }, { "style": { "height": "36px" } }).form; //創建窗體
  6153. _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); } }
  6154. break;
  6155. case "studyGM": //課程中心
  6156. _formdiv = new U.UF.UI.form(
  6157. "課程中心",
  6158. $$("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
  6159. "id": "study",
  6160. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6161. "onresize": function () { }
  6162. }, {
  6163. closecallback: function () { }
  6164. }, { "style": { "height": "36px" } }).form; //創建窗體
  6165. _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); } }
  6166. break;
  6167. // studentGM
  6168. case "studentGM": //學生管理
  6169. _formdiv = new U.UF.UI.form(
  6170. "學生管理",
  6171. $$("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 }), {
  6172. "id": "studentGM",
  6173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () { }
  6177. }, { "style": { "height": "36px" } }).form; //創建窗體
  6178. _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); } }
  6179. break;
  6180. case "evaluateGM": //學生評價
  6181. _formdiv = new U.UF.UI.form(
  6182. "學生評價",
  6183. $$("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 }), {
  6184. "id": "evaluateGM",
  6185. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6186. "onresize": function () { }
  6187. }, {
  6188. closecallback: function () { }
  6189. }, { "style": { "height": "36px" } }).form; //創建窗體
  6190. _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); } }
  6191. break;
  6192. // classGM
  6193. case "classGM": //班級管理
  6194. _formdiv = new U.UF.UI.form(
  6195. "班級管理",
  6196. $$("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 }), {
  6197. "id": "classGM",
  6198. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6199. "onresize": function () { }
  6200. }, {
  6201. closecallback: function () { }
  6202. }, { "style": { "height": "36px" } }).form; //創建窗體
  6203. _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); } }
  6204. break;
  6205. // dataGM
  6206. case "dataGM":
  6207. _formdiv = new U.UF.UI.form(
  6208. "我的資料",
  6209. $$("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 }), {
  6210. "id": "dataGM",
  6211. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6212. "onresize": function () { }
  6213. }, {
  6214. closecallback: function () { }
  6215. }, { "style": { "height": "36px" } }).form; //創建窗體
  6216. _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); } }
  6217. break;
  6218. // caseGM
  6219. case "caseGM": //課程進展
  6220. _formdiv = new U.UF.UI.form(
  6221. "課程進展",
  6222. $$("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 }), {
  6223. "id": "caseGM",
  6224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6225. "onresize": function () { }
  6226. }, {
  6227. closecallback: function () { }
  6228. }, { "style": { "height": "36px" } }).form; //創建窗體
  6229. _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); } }
  6230. break;
  6231. // meterialGM
  6232. case "meterialGM": //素材庫
  6233. _formdiv = new U.UF.UI.form(
  6234. "素材庫",
  6235. $$("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 }), {
  6236. "id": "meterialGM",
  6237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () { }
  6241. }, { "style": { "height": "36px" } }).form; //創建窗體
  6242. _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); } }
  6243. break;
  6244. // evaluateSGM
  6245. case "evaluateSGM": //我的評價
  6246. _formdiv = new U.UF.UI.form(
  6247. "我的評價",
  6248. $$("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 }), {
  6249. "id": "evaluateSGM",
  6250. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //創建窗體
  6255. _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); } }
  6256. break;
  6257. case "jupyter": //jupyter
  6258. _formdiv = new U.UF.UI.form(
  6259. "jupyter",
  6260. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6261. "id": "jupyter",
  6262. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6263. "onresize": function () { }
  6264. }, {
  6265. closecallback: function () { }
  6266. }, { "style": { "height": "36px" } }).form; //創建窗體
  6267. _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); } }
  6268. break;
  6269. case "number": //數字實驗室
  6270. _formdiv = new U.UF.UI.form(
  6271. "數字實驗室",
  6272. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6273. "id": "number",
  6274. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6275. "onresize": function () { }
  6276. }, {
  6277. closecallback: function () { }
  6278. }, { "style": { "height": "36px" } }).form; //創建窗體
  6279. _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); } }
  6280. break;
  6281. case "studentCourse": //項目管理 學生
  6282. _formdiv = new U.UF.UI.form(
  6283. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6284. $$("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 }), {
  6285. "id": "studentCourse",
  6286. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6287. "onresize": function () { }
  6288. }, {
  6289. closecallback: function () { }
  6290. }, { "style": { "height": "36px" } }).form; //創建窗體
  6291. _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); } }
  6292. break;
  6293. case "studentCourseS": //項目管理 老師
  6294. _formdiv = new U.UF.UI.form(
  6295. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "師生項目" : "項目管理",
  6296. $$("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 }), {
  6297. "id": "studentCourseS",
  6298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, { "style": { "height": "36px" } }).form; //創建窗體
  6303. _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); } }
  6304. break;
  6305. case "studentIndex": //項目中心
  6306. _formdiv = new U.UF.UI.form(
  6307. "項目中心",
  6308. $$("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 }), {
  6309. "id": "studentIndex",
  6310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, { "style": { "height": "36px" } }).form; //創建窗體
  6315. _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); } }
  6316. break;
  6317. case "CaseDesignS":
  6318. _formdiv = new U.UF.UI.form(
  6319. "項目進展",
  6320. $$("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 }), {
  6321. "id": "case",
  6322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6323. "onresize": function () { }
  6324. }, {
  6325. closecallback: function () { }
  6326. }, { "style": { "height": "36px" } }).form; //創建窗體
  6327. _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); } }
  6328. break;
  6329. case "tcStudent": //騰訊學生管理
  6330. _formdiv = new U.UF.UI.form(
  6331. "學生管理",
  6332. $$("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 }), {
  6333. "id": "tcStudent",
  6334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //創建窗體
  6339. _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); } }
  6340. break;
  6341. case "tcSchool": //騰訊學校管理
  6342. _formdiv = new U.UF.UI.form(
  6343. "學校管理",
  6344. $$("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 }), {
  6345. "id": "tcSchool",
  6346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //創建窗體
  6351. _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); } }
  6352. break;
  6353. case "tcTeacher": //騰訊學校管理
  6354. _formdiv = new U.UF.UI.form(
  6355. "教師管理",
  6356. $$("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 }), {
  6357. "id": "tcTeacher",
  6358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //創建窗體
  6363. _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); } }
  6364. break;
  6365. case "teacher":
  6366. _formdiv = new U.UF.UI.form(
  6367. "教師管理",
  6368. $$("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 }), {
  6369. "id": "teacher",
  6370. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //創建窗體
  6375. _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); } }
  6376. break;
  6377. case "tcData": //騰訊我的資料
  6378. _formdiv = new U.UF.UI.form(
  6379. "我的資料",
  6380. $$("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 }), {
  6381. "id": "tcData",
  6382. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //創建窗體
  6387. _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); } }
  6388. break;
  6389. case "tcNotice": //騰訊消息通知
  6390. _formdiv = new U.UF.UI.form(
  6391. "消息通知",
  6392. $$("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 }), {
  6393. "id": "tcNotice",
  6394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //創建窗體
  6399. _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); } }
  6400. break;
  6401. case "myReport": //好友打開
  6402. _formdiv = new U.UF.UI.form(
  6403. "我的評價",
  6404. $$("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 }), {
  6405. "id": "myReport",
  6406. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //創建窗體
  6411. _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); } }
  6412. break;
  6413. case "learnAna": //好友打開
  6414. _formdiv = new U.UF.UI.form(
  6415. "學習分析",
  6416. $$("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 }), {
  6417. "id": "learnAna",
  6418. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6419. "onresize": function () { }
  6420. }, {
  6421. closecallback: function () { }
  6422. }, { "style": { "height": "36px" } }).form; //創建窗體
  6423. _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); } }
  6424. break;
  6425. case "AIChat": //AI共創
  6426. _formdiv = new U.UF.UI.form(
  6427. "AI共創",
  6428. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/aichat/" }), {
  6429. "id": "AIChat",
  6430. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. istop: true,
  6434. closecallback: function () { $("#aichat_icon").remove(); },
  6435. narrowcallback: function () {
  6436. if (!$("#aichat_icon")[0]) {
  6437. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6438. }
  6439. },
  6440. }, { "style": { "height": "36px" } }).form; //創建窗體
  6441. _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); } }
  6442. break;
  6443. case "ainew": //AI共創
  6444. _formdiv = new U.UF.UI.form(
  6445. "AI協同",
  6446. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ainew/" }), {
  6447. "id": "ainew",
  6448. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6449. "onresize": function () { }
  6450. }, {
  6451. closecallback: function () { }
  6452. }, { "style": { "height": "36px" } }).form; //創建窗體
  6453. _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); } }
  6454. break;
  6455. case "gpt4": //gpt4
  6456. _formdiv = new U.UF.UI.form(
  6457. "AI助手",
  6458. $$("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 }), {
  6459. "id": "gpt4",
  6460. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6461. "onresize": function () { }
  6462. }, {
  6463. closecallback: function () { }
  6464. }, { "style": { "height": "36px" } }).form; //創建窗體
  6465. _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); } }
  6466. break;
  6467. case "aigpt": //gpt4
  6468. _formdiv = new U.UF.UI.form(
  6469. "AI助手+",
  6470. $$("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.hk/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6471. "id": "aigpt",
  6472. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () {
  6476. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6477. }
  6478. }, { "style": { "height": "36px" } }).form; //創建窗體
  6479. _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); } }
  6480. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6481. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6482. })
  6483. break;
  6484. case "aiKnowledge": //aiKnowledge
  6485. _formdiv = new U.UF.UI.form(
  6486. "知識建構",
  6487. $$("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.hk/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6488. "id": "aiKnowledge",
  6489. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6490. "onresize": function () { }
  6491. }, {
  6492. closecallback: function () { }
  6493. }, { "style": { "height": "36px" } }).form; //創建窗體
  6494. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知識建構", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6495. break;
  6496. case "futureClass": //AI共創
  6497. _formdiv = new U.UF.UI.form(
  6498. "協同建構",
  6499. $$("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://cscl.cocorobo.hk
  6500. "id": "synergyCourse",
  6501. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6502. "onresize": function () { }
  6503. }, {
  6504. closecallback: function () {
  6505. $("iframe", _formdiv)[0].contentWindow.loginout();
  6506. }
  6507. }, { "style": { "height": "36px" } }).form; //創建窗體
  6508. _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); } }
  6509. break;
  6510. case "aiagent": //ai agent
  6511. _formdiv = new U.UF.UI.form(
  6512. "AI Agent",
  6513. $$("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" }), {
  6514. "id": "AIAgent",
  6515. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6516. "onresize": function () { }
  6517. }, {
  6518. closecallback: function () { }
  6519. }, { "style": { "height": "36px" } }).form; //創建窗體
  6520. _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); } }
  6521. break;
  6522. case "dataBoard": //數據看板
  6523. _formdiv = new U.UF.UI.form(
  6524. "數據看板",
  6525. $$("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 }), {
  6526. "id": "dataBoard",
  6527. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //創建窗體
  6532. _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); } }
  6533. break;
  6534. case "dataBoardSies": //數據融合
  6535. _formdiv = new U.UF.UI.form(
  6536. "數據融合",
  6537. $$("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 }), {
  6538. "id": "dataBoardSies",
  6539. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //創建窗體
  6544. _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); } }
  6545. break;
  6546. case "dataBoardNew": //數據看板
  6547. _formdiv = new U.UF.UI.form(
  6548. "綜合看板",
  6549. $$("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 }), {
  6550. "id": "dataBoardNew",
  6551. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, { "style": { "height": "36px" } }).form; //創建窗體
  6556. _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); } }
  6557. break;
  6558. case "dataBoardTest": //數據看板
  6559. _formdiv = new U.UF.UI.form(
  6560. "評測看板",
  6561. $$("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 }), {
  6562. "id": "dataBoardTest",
  6563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6564. "onresize": function () { }
  6565. }, {
  6566. closecallback: function () { }
  6567. }, { "style": { "height": "36px" } }).form; //創建窗體
  6568. _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); } }
  6569. break;
  6570. case "AIAnalyse": //AI共創
  6571. _formdiv = new U.UF.UI.form(
  6572. "AI分析",
  6573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.hk/ai/" }), {
  6574. "id": "AIAnalyse",
  6575. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, { "style": { "height": "36px" } }).form; //創建窗體
  6580. _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); } }
  6581. break;
  6582. case "studioCourse": //AI共創
  6583. _formdiv = new U.UF.UI.form(
  6584. "工作管理",
  6585. $$("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 }), {
  6586. "id": "studioCourse",
  6587. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6588. "onresize": function () { }
  6589. }, {
  6590. closecallback: function () { }
  6591. }, { "style": { "height": "36px" } }).form; //創建窗體
  6592. _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); } }
  6593. break;
  6594. case "studioIndex": //AI共創
  6595. _formdiv = new U.UF.UI.form(
  6596. "工作中心",
  6597. $$("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 }), {
  6598. "id": "studioIndex",
  6599. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6600. "onresize": function () { }
  6601. }, {
  6602. closecallback: function () { }
  6603. }, { "style": { "height": "36px" } }).form; //創建窗體
  6604. _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); } }
  6605. break;
  6606. case "source":
  6607. _formdiv = new U.UF.UI.form(
  6608. "教學資源",
  6609. $$("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 }), {
  6610. "id": "source",
  6611. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6612. "onresize": function () { }
  6613. }, {
  6614. closecallback: function () { }
  6615. }, { "style": { "height": "36px" } }).form; //創建窗體
  6616. _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); } }
  6617. break;
  6618. case "testTeacher":
  6619. _formdiv = new U.UF.UI.form(
  6620. "教師管理",
  6621. $$("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 }), {
  6622. "id": "testTeacher",
  6623. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, { "style": { "height": "36px" } }).form; //創建窗體
  6628. _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); } }
  6629. break;
  6630. case "testStudent":
  6631. _formdiv = new U.UF.UI.form(
  6632. "教師中心",
  6633. $$("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 }), {
  6634. "id": "testStudent",
  6635. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6636. "onresize": function () { }
  6637. }, {
  6638. closecallback: function () { }
  6639. }, { "style": { "height": "36px" } }).form; //創建窗體
  6640. _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); } }
  6641. break;
  6642. case "testTeacherSies":
  6643. _formdiv = new U.UF.UI.form(
  6644. "教師管理",
  6645. $$("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/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6646. "id": "testTeacherSies",
  6647. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6648. "onresize": function () { }
  6649. }, {
  6650. closecallback: function () { }
  6651. }, { "style": { "height": "36px" } }).form; //創建窗體
  6652. _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); } }
  6653. break;
  6654. case "testStudentSies":
  6655. _formdiv = new U.UF.UI.form(
  6656. "教師中心",
  6657. $$("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 }), {
  6658. "id": "testStudentSies",
  6659. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6660. "onresize": function () { }
  6661. }, {
  6662. closecallback: function () { }
  6663. }, { "style": { "height": "36px" } }).form; //創建窗體
  6664. _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); } }
  6665. break;
  6666. case "ytpbl": //消息通知
  6667. _formdiv = new U.UF.UI.form(
  6668. "案例征集",
  6669. $$("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 }), {
  6670. "id": "ytpbl",
  6671. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6672. "onresize": function () { }
  6673. }, {
  6674. closecallback: function () { }
  6675. }, { "style": { "height": "36px" } }).form; //創建窗體
  6676. _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); } }
  6677. // 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");
  6678. break;
  6679. case "aiCourseResource": //人工智能窗體
  6680. _formdiv = new U.UF.UI.form(
  6681. false,
  6682. $$("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 }), {
  6683. "id": "aiCourseResource",
  6684. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6685. "onresize": function () { },
  6686. "isdrag": false,
  6687. }, {
  6688. closecallback: function () { }
  6689. }, { "style": { "height": "36px" } }).form; //創建窗體
  6690. _taskbar = ''
  6691. break;
  6692. case "szdjgCocooroboX": //圖形化編程
  6693. _formdiv = new U.UF.UI.form(
  6694. "圖形化編程",
  6695. $$("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" }), {
  6696. "id": "szdjgCocooroboX",
  6697. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6698. "onresize": function () { }
  6699. }, {
  6700. closecallback: function () { }
  6701. }, { "style": { "height": "36px" } }).form; //創建窗體
  6702. _taskbar = ''
  6703. break;
  6704. case "szdjgPython": //python編程
  6705. _formdiv = new U.UF.UI.form(
  6706. "Python編程",
  6707. $$("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" }), {
  6708. "id": "szdjgPython",
  6709. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6710. "onresize": function () { }
  6711. }, {
  6712. closecallback: function () { }
  6713. }, { "style": { "height": "36px" } }).form; //創建窗體
  6714. _taskbar = ''
  6715. break;
  6716. case "Record":
  6717. _formdiv = new U.UF.UI.form(
  6718. "觀察記錄",
  6719. $$("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 }), {
  6720. "id": "Record",
  6721. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6722. "onresize": function () { }
  6723. }, {
  6724. closecallback: function () { }
  6725. }, { "style": { "height": "36px" } }).form; //創建窗體
  6726. _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); } }
  6727. break;
  6728. case "aigptCourse":
  6729. _formdiv = new U.UF.UI.form(
  6730. "AI智能體",
  6731. $$("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' }), {
  6732. "id": "aigptCourse",
  6733. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6734. "onresize": function () { }
  6735. }, {
  6736. closecallback: function () { }
  6737. }, { "style": { "height": "36px" } }).form; //創建窗體
  6738. _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); } }
  6739. break;
  6740. case "classroomObservation":
  6741. _formdiv = new U.UF.UI.form(
  6742. "課堂觀察",
  6743. $$("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 }), {
  6744. "id": "classroomObservation",
  6745. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6746. "onresize": function () { }
  6747. }, {
  6748. closecallback: function () { }
  6749. }, { "style": { "height": "36px" } }).form; //創建窗體
  6750. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "課堂觀察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6751. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6752. break;
  6753. case "pblCourse":
  6754. _formdiv = new U.UF.UI.form(
  6755. "學生PBL",
  6756. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6757. "id": "pblCourse",
  6758. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6759. "onresize": function () { }
  6760. }, {
  6761. closecallback: function () { }
  6762. }, { "style": { "height": "36px" } }).form; //創建窗體
  6763. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "課堂觀察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6764. break;
  6765. }
  6766. //U.MD.D.I.openClick(str);
  6767. //如果有任務欄信息
  6768. if (_taskbar) {
  6769. U.MD.D.T.taskbar(_taskbar); //創建任務處理
  6770. }
  6771. }
  6772. // U.MD.D.I.openClick = function(str){
  6773. // var click = '';
  6774. // switch(str){
  6775. // case 'friend':
  6776. // click = '我的好友';
  6777. // break;
  6778. // case 'domain':
  6779. // click = '域名管理';
  6780. // break;
  6781. // case 'disk':
  6782. // click = '我的雲盤';
  6783. // break;
  6784. // case 'word':
  6785. // click = 'Word';
  6786. // break;
  6787. // case 'excel':
  6788. // click = 'Execl';
  6789. // break;
  6790. // case 'txt':
  6791. // click = '文本文件';
  6792. // break;
  6793. // case 'lookupFriend':
  6794. // click = '查找好友';
  6795. // break;
  6796. // case 'ftp':
  6797. // click = 'FTP';
  6798. // break;
  6799. // case 'group':
  6800. // click = '群組';
  6801. // break;
  6802. // case 'set':
  6803. // click = '我的設置';
  6804. // break;
  6805. // case 'systemSet':
  6806. // click = '系統設置';
  6807. // break;
  6808. // case 'boomYun':
  6809. // click = '互聯辦公';
  6810. // break;
  6811. // case 'xz':
  6812. // click = '雲端下載';
  6813. // break;
  6814. // case 'client':
  6815. // click = '有思瀏覽器';
  6816. // break;
  6817. // case 'backEndProgramming':
  6818. // click = '在線後臺編程';
  6819. // break;
  6820. // case 'frontEndProgramming':
  6821. // click = '在線前端編程';
  6822. // break;
  6823. // default: break;
  6824. // }
  6825. // if(U.MD.D.I.Ip && click){
  6826. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6827. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6828. // })
  6829. // }
  6830. // }
  6831. /**
  6832. *函數作用:ajax簡易函數,使用post格式
  6833. *@param url {data} 後臺地址
  6834. *@param data {data} 參數json
  6835. *@param fn {data} 回調函數
  6836. *
  6837. */
  6838. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6839. // var xhr = new XMLHttpRequest();
  6840. // xhr.open("GET",url,true);
  6841. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6842. // xhr.onreadystatechange = function(){
  6843. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6844. // fn.call(this,xhr.responseText);
  6845. // }
  6846. // };
  6847. // xhr.send();
  6848. // }
  6849. /*判斷是否是內網IP*/
  6850. // U.MD.D.I.isInnerIPFn = function(str){
  6851. // var curPageUrl = str;
  6852. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前綴
  6853. // curPageUrl =curPageUrl.replace(reg1,'');
  6854. // // console.log('curPageUrl-1 '+curPageUrl);
  6855. // var reg2 = /\:+/g;//替換冒號為一點
  6856. // curPageUrl =curPageUrl.replace(reg2,'.');
  6857. // // console.log('curPageUrl-2 '+curPageUrl);
  6858. // curPageUrl = curPageUrl.split('.');//通過一點來劃分數組
  6859. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6860. // if(curPageUrl[2] != '16'){
  6861. // return ipAddress;
  6862. // }else{
  6863. // return false;
  6864. // }
  6865. // }
  6866. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6867. // //compatibility for firefox and chrome
  6868. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6869. // var pc = new myPeerConnection({
  6870. // iceServers: []
  6871. // }),
  6872. // noop = function() {},
  6873. // localIPs = {},
  6874. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6875. // key;
  6876. // function iterateIP(ip) {
  6877. // if (!localIPs[ip]) onNewIP(ip);
  6878. // localIPs[ip] = true;
  6879. // }
  6880. // //create a bogus data channel
  6881. // pc.createDataChannel("");
  6882. // // create offer and set local description
  6883. // pc.createOffer().then(function(sdp) {
  6884. // sdp.sdp.split('\n').forEach(function(line) {
  6885. // if (line.indexOf('candidate') < 0) return;
  6886. // line.match(ipRegex).forEach(iterateIP);
  6887. // });
  6888. // pc.setLocalDescription(sdp, noop, noop);
  6889. // }).catch(function(reason) {
  6890. // // An error occurred, so handle the failure to connect
  6891. // });
  6892. // //sten for candidate events
  6893. // pc.onicecandidate = function(ice) {
  6894. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6895. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6896. // };
  6897. // }
  6898. // U.MD.D.I.getUserIpBool = function(callback){
  6899. // U.MD.D.I.getUserIP(function(ip){
  6900. // alert("Got IP! :" + ip);
  6901. // });
  6902. //}
  6903. //#endregion
  6904. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6905. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  6906. _formdiv, //創建任務欄時同時彈出的窗體元素。
  6907. _userinfo = US.userInfo, //登錄用戶信息
  6908. _userid = US.userInfo.userid //登錄用戶id
  6909. let _iframe;
  6910. let _cid = cid,
  6911. _stage = stage,
  6912. _task = task,
  6913. _tool = tool;
  6914. var _jie = $$("div", {
  6915. "style": {
  6916. "position": "absolute",
  6917. "bottom": "50px",
  6918. "right": "50px",
  6919. "zIndex": "9999",
  6920. "backgroundColor": "#2268bc",
  6921. "color": "#fff",
  6922. "padding": "12px 20px",
  6923. "cursor": "pointer",
  6924. "borderRadius": "4px",
  6925. },
  6926. "innerHTML": "提交作業"
  6927. })
  6928. let aTool = ''
  6929. let _loading = document.createElement('div')
  6930. _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;"
  6931. // _loading.id = "";
  6932. let _lchild = document.createElement('div')
  6933. let _limg = document.createElement('img')
  6934. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6935. _limg.style = "width: 26px;margin-right: 10px;"
  6936. _lchild.appendChild(_limg)
  6937. let _lspan = document.createElement('span')
  6938. _lspan.innerHTML = "上傳中..."
  6939. _lchild.appendChild(_lspan)
  6940. _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%);"
  6941. _loading.appendChild(_lchild)
  6942. var _box = $$('div', {
  6943. "style": {
  6944. "position": "relative",
  6945. "width": "100%",
  6946. "height": "100%",
  6947. },
  6948. })
  6949. _box.appendChild(_loading)
  6950. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6951. switch (str) {
  6952. case "whiteboard":
  6953. aTool = 1;
  6954. _iframe = $$("iframe", {
  6955. "frameborder": "no",
  6956. "border": "0",
  6957. "scrolling ": "no",
  6958. "style": {
  6959. "cssText": "border:0;width:100%;height:100%"
  6960. },
  6961. "src": "https://iwb.cocorobo.hk/"
  6962. })
  6963. _box.appendChild(_iframe);
  6964. _box.appendChild(_jie);
  6965. _formdiv = new U.UF.UI.form(
  6966. "電子白板",
  6967. _box, {
  6968. "id": "whiteboard" + cid + stage + task + tool,
  6969. "style": {
  6970. "width": "90%",
  6971. "height": "90%",
  6972. "overflow": 'hidden'
  6973. },
  6974. "onresize": function () { }
  6975. }, {
  6976. closecallback: function () { }
  6977. }, {
  6978. "style": {
  6979. "height": "36px"
  6980. }
  6981. }).form; //創建窗體
  6982. _taskbar = {
  6983. "id": str + _formdiv.id,
  6984. "style": {
  6985. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6986. },
  6987. "name": "電子白板",
  6988. "forms": _formdiv,
  6989. "click": function () {
  6990. U.MD.D.I.openApplication(str, obj, info);
  6991. }
  6992. }
  6993. break;
  6994. case "mind":
  6995. aTool = 3;
  6996. _iframe = $$("iframe", {
  6997. "frameborder": "no",
  6998. "border": "0",
  6999. "scrolling ": "no",
  7000. "style": {
  7001. "cssText": "border:0;width:100%;height:100%"
  7002. },
  7003. "src": "/kityminder-editor/dist/index.html"
  7004. })
  7005. _box.appendChild(_iframe);
  7006. _box.appendChild(_jie);
  7007. _formdiv = new U.UF.UI.form(
  7008. "思維導圖",
  7009. _box, { //"/jsmind/example/demo.html"
  7010. "id": "mind" + cid + stage + task + tool,
  7011. "style": {
  7012. "width": "90%",
  7013. "height": "90%",
  7014. "overflow": 'hidden'
  7015. },
  7016. "onresize": function () { }
  7017. }, {
  7018. closecallback: function () { }
  7019. }, {
  7020. "style": {
  7021. "height": "36px"
  7022. }
  7023. }).form; //創建窗體
  7024. _taskbar = {
  7025. "id": str + _formdiv.id,
  7026. "style": {
  7027. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7028. },
  7029. "name": "思維導圖",
  7030. "forms": _formdiv,
  7031. "click": function () {
  7032. U.MD.D.I.openApplication(str, obj, info);
  7033. }
  7034. }
  7035. break;
  7036. case "MindMap":
  7037. aTool = 3;
  7038. _iframe = $$("iframe", {
  7039. "frameborder": "no",
  7040. "border": "0",
  7041. "scrolling ": "no",
  7042. "style": {
  7043. "cssText": "border:0;width:100%;height:100%"
  7044. },
  7045. "src": "//cloud.cocorobo.hk/mind/"
  7046. })
  7047. _box.appendChild(_iframe);
  7048. _box.appendChild(_jie);
  7049. _formdiv = new U.UF.UI.form(
  7050. "思維導圖",
  7051. _box, { //"/jsmind/example/demo.html"
  7052. "id": "mind" + cid + stage + task + tool,
  7053. "style": {
  7054. "width": "90%",
  7055. "height": "90%",
  7056. "overflow": 'hidden'
  7057. },
  7058. "onresize": function () { }
  7059. }, {
  7060. closecallback: function () { }
  7061. }, {
  7062. "style": {
  7063. "height": "36px"
  7064. }
  7065. }).form; //創建窗體
  7066. _taskbar = {
  7067. "id": str + _formdiv.id,
  7068. "style": {
  7069. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7070. },
  7071. "name": "思維導圖",
  7072. "forms": _formdiv,
  7073. "click": function () {
  7074. U.MD.D.I.openApplication(str, obj, info);
  7075. }
  7076. }
  7077. break;
  7078. case "doc":
  7079. aTool = 6;
  7080. _iframe = $$("iframe", {
  7081. "frameborder": "no",
  7082. "border": "0",
  7083. "scrolling ": "no",
  7084. "style": {
  7085. "cssText": "border:0;width:100%;height:100%"
  7086. },
  7087. "src": "/Office/Word/WordEditArea.htm"
  7088. })
  7089. _box.appendChild(_iframe);
  7090. _box.appendChild(_jie);
  7091. _formdiv = new U.UF.UI.form(
  7092. "協同文檔",
  7093. _box, {
  7094. "id": "doc" + cid + stage + task + tool,
  7095. "style": {
  7096. "width": "90%",
  7097. "height": "90%",
  7098. "overflow": 'hidden'
  7099. },
  7100. "onresize": function () { }
  7101. }, {
  7102. closecallback: function () { }
  7103. }, {
  7104. "style": {
  7105. "height": "36px"
  7106. }
  7107. }).form; //創建窗體
  7108. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7109. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7110. })
  7111. _taskbar = {
  7112. "id": str + _formdiv.id,
  7113. "style": {
  7114. "backgroundImage": "url(/img/icon/doc.png)"
  7115. },
  7116. "name": "協同文檔",
  7117. "forms": _formdiv,
  7118. "click": function () {
  7119. U.MD.D.I.openApplication(str, obj, info);
  7120. }
  7121. }
  7122. break;
  7123. case "mindNetwork": //好友打開
  7124. aTool = 7;
  7125. _iframe = $$("iframe", {
  7126. "webkitallowfullscreen": "",
  7127. "mozallowfullscreen": "",
  7128. "allowfullscreen": "",
  7129. "frameborder": "no",
  7130. "border": "0",
  7131. "scrolling ": "no",
  7132. "style": {
  7133. "cssText": "border:0; width:100%; height:100%;"
  7134. },
  7135. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7136. })
  7137. _box.appendChild(_iframe);
  7138. _box.appendChild(_jie);
  7139. _formdiv = new U.UF.UI.form(
  7140. "思維網格",
  7141. _box, {
  7142. "id": "mindNetwork" + cid + stage + task + tool,
  7143. "style": {
  7144. "width": "90%",
  7145. "height": "90%",
  7146. "overflow": 'hidden'
  7147. },
  7148. "onresize": function () { }
  7149. }, {
  7150. closecallback: function () { }
  7151. }, {
  7152. "style": {
  7153. "height": "36px"
  7154. }
  7155. }).form; //創建窗體
  7156. _taskbar = {
  7157. "id": str + _formdiv.id,
  7158. "style": {
  7159. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7160. },
  7161. "name": "思維網格",
  7162. "forms": _formdiv,
  7163. "click": function () {
  7164. U.MD.D.I.openApplication(str, obj, info);
  7165. }
  7166. }
  7167. break;
  7168. case "courseDesign":
  7169. _iframe = $$("iframe", {
  7170. "webkitallowfullscreen": "",
  7171. "mozallowfullscreen": "",
  7172. "allowfullscreen": "",
  7173. "frameborder": "no",
  7174. "border": "0",
  7175. "scrolling ": "no",
  7176. "style": {
  7177. "cssText": "border:0; width:100%; height:100%;"
  7178. },
  7179. "src": "/course-design-vue"
  7180. })
  7181. _box.appendChild(_iframe);
  7182. _box.appendChild(_jie);
  7183. _formdiv = new U.UF.UI.form(
  7184. "項目設計",
  7185. _box, {
  7186. "id": "courseDesign" + cid + stage + task + tool,
  7187. "style": {
  7188. "width": "90%",
  7189. "height": "90%",
  7190. "overflow": 'hidden'
  7191. },
  7192. "onresize": function () { }
  7193. }, {
  7194. closecallback: function () { }
  7195. }, {
  7196. "style": {
  7197. "height": "36px"
  7198. }
  7199. }).form; //創建窗體
  7200. _taskbar = {
  7201. "id": str + _formdiv.id,
  7202. "style": {
  7203. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7204. },
  7205. "name": "項目設計",
  7206. "forms": _formdiv,
  7207. "click": function () {
  7208. U.MD.D.I.openApplication(str, obj, info);
  7209. }
  7210. }
  7211. break;
  7212. }
  7213. const script1 = document.createElement("script");
  7214. script1.type = "text/javascript";
  7215. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7216. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7217. const script2 = document.createElement("script");
  7218. script2.type = "text/javascript";
  7219. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7220. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7221. const script3 = document.createElement("script");
  7222. script3.type = "text/javascript";
  7223. script3.charset = "UTF-8";
  7224. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7225. const script4 = document.createElement("script");
  7226. script4.type = "text/javascript";
  7227. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7228. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  7229. if (_iframe) {
  7230. if (str == 'doc') {
  7231. _iframe = _formdiv.querySelector('iframe')
  7232. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7233. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7234. _iframe.contentWindow.document.body.appendChild(script1);
  7235. _iframe.contentWindow.document.body.appendChild(script2);
  7236. // _iframe.contentWindow.document.body.appendChild(script3);
  7237. _iframe.contentWindow.document.body.appendChild(script4);
  7238. })
  7239. if (onloadListener) {
  7240. _iframe.contentDocument.location.reload()
  7241. } else {
  7242. _iframe.contentDocument.location.reload()
  7243. }
  7244. } else if (str == 'courseDesign') {
  7245. U.UF.DL.iframeLoad(_iframe, function () {
  7246. // _iframe.contentWindow.U.MD.O.W.load();
  7247. // _iframe.contentWindow.document.body.appendChild(script1);
  7248. _iframe.contentWindow.document.body.appendChild(script2);
  7249. _iframe.contentWindow.document.body.appendChild(script4);
  7250. })
  7251. } else if (str == 'mind') {
  7252. _iframe = _formdiv.querySelector('iframe')
  7253. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7254. //
  7255. _iframe.contentWindow.document.body.appendChild(script1);
  7256. _iframe.contentWindow.document.body.appendChild(script2);
  7257. _iframe.contentWindow.document.body.appendChild(script4);
  7258. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7259. })
  7260. if (onloadListener) {
  7261. _iframe.contentDocument.location.reload()
  7262. } else {
  7263. _iframe.contentDocument.location.reload()
  7264. }
  7265. } else if (str == 'whiteboard') {
  7266. _iframe = _formdiv.querySelector('iframe')
  7267. let onloadListener = _iframe.onload = () => {
  7268. _iframe.contentWindow.document.body.appendChild(script1);
  7269. _iframe.contentWindow.document.body.appendChild(script2);
  7270. _iframe.contentWindow.document.body.appendChild(script4);
  7271. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7272. };
  7273. // if (onloadListener) {
  7274. // try {
  7275. // _iframe.src += "?cocorobo="+new Date().getTime()
  7276. // _iframe.contentWindow.document.location.reload()
  7277. // } catch (error) {
  7278. // }
  7279. // } else {
  7280. // _iframe.contentDocument.location.reload()
  7281. // }
  7282. } else {
  7283. _iframe.onload = () => {
  7284. _iframe.contentWindow.document.body.appendChild(script1);
  7285. _iframe.contentWindow.document.body.appendChild(script2);
  7286. // _iframe.contentWindow.document.body.appendChild(script3);
  7287. _iframe.contentWindow.document.body.appendChild(script4);
  7288. };
  7289. }
  7290. _jie.onclick = async () => {
  7291. let text = ''
  7292. if (aTool == 1) {
  7293. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7294. } else if (aTool == 6) {
  7295. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7296. } else if (aTool == 3) {
  7297. text = await U.MD.D.I.getEditorContent(_iframe);
  7298. }
  7299. _loading.style.display = 'flex'
  7300. console.log(_loading);
  7301. var _ajs = _iframe.contentWindow.document.createElement("script");
  7302. _ajs.type = "text/javascript";
  7303. _ajs.innerHTML =
  7304. // 'console.log(' + _loading + ');\n' +
  7305. 'var _js = document.createElement("script");\n' +
  7306. '_js.type="text/javascript";\n' +
  7307. '_js.charset="UTF-8";\n' +
  7308. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7309. "_js.onload = function(){\n" +
  7310. ' var a = document.getElementsByTagName("img")\n' +
  7311. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7312. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7313. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7314. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7315. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7316. "beforeUpload_shishi(file," +
  7317. "'" +
  7318. _userid +
  7319. "'" +
  7320. ", " +
  7321. "'" +
  7322. _cid +
  7323. "'" +
  7324. ", " +
  7325. "'" +
  7326. _stage +
  7327. "'" +
  7328. ", " +
  7329. "'" +
  7330. _task +
  7331. "'" +
  7332. ", " +
  7333. "'" +
  7334. _tool +
  7335. "'" +
  7336. ", " +
  7337. "'" +
  7338. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7339. "'" +
  7340. ", " +
  7341. "'" +
  7342. aTool +
  7343. "'" +
  7344. ", " +
  7345. "`" +
  7346. text +
  7347. "`" +
  7348. ")\n" +
  7349. " });\n" +
  7350. "}\n" +
  7351. "document.head.appendChild(_js);\n";
  7352. _iframe.contentWindow.document.head.appendChild(_ajs);
  7353. }
  7354. }
  7355. //U.MD.D.I.openClick(str);
  7356. //如果有任務欄信息
  7357. // if (_taskbar) {
  7358. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7359. // }
  7360. }
  7361. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7362. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7363. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7364. _userinfo = US.userInfo, //登錄用戶信息
  7365. _userid = US.userInfo.userid //登錄用戶id
  7366. let _iframe;
  7367. let _cid = cid,
  7368. _stage = stage,
  7369. _task = task,
  7370. _tool = tool;
  7371. var _jie = $$("div", {
  7372. "style": {
  7373. "position": "absolute",
  7374. "bottom": "50px",
  7375. "right": "50px",
  7376. "zIndex": "9999",
  7377. "backgroundColor": "#2268bc",
  7378. "color": "#fff",
  7379. "padding": "12px 20px",
  7380. "cursor": "pointer",
  7381. "borderRadius": "4px",
  7382. },
  7383. "innerHTML": "提交作業"
  7384. })
  7385. let aTool = ''
  7386. let _loading = document.createElement('div')
  7387. _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;"
  7388. // _loading.id = "";
  7389. let _lchild = document.createElement('div')
  7390. let _limg = document.createElement('img')
  7391. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7392. _limg.style = "width: 26px;margin-right: 10px;"
  7393. _lchild.appendChild(_limg)
  7394. let _lspan = document.createElement('span')
  7395. _lspan.innerHTML = "上傳中..."
  7396. _lchild.appendChild(_lspan)
  7397. _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%);"
  7398. _loading.appendChild(_lchild)
  7399. let _box = $$('div', {
  7400. "style": {
  7401. "position": "relative",
  7402. "width": "100%",
  7403. "height": "100%",
  7404. },
  7405. })
  7406. _box.appendChild(_loading)
  7407. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7408. switch (str) {
  7409. case "whiteboard":
  7410. aTool = 1;
  7411. _iframe = $$("iframe", {
  7412. "frameborder": "no",
  7413. "border": "0",
  7414. "scrolling ": "no",
  7415. "style": {
  7416. "cssText": "border:0;width:100%;height:100%"
  7417. },
  7418. "src": "https://iwb.cocorobo.hk/"
  7419. })
  7420. _box.appendChild(_iframe);
  7421. _box.appendChild(_jie);
  7422. _formdiv = new U.UF.UI.form(
  7423. "電子白板",
  7424. _box, {
  7425. "id": "whiteboard" + cid + stage + task + tool,
  7426. "style": {
  7427. "width": "90%",
  7428. "height": "90%",
  7429. "overflow": 'hidden'
  7430. },
  7431. "onresize": function () { }
  7432. }, {
  7433. closecallback: function () { }
  7434. }, {
  7435. "style": {
  7436. "height": "36px"
  7437. }
  7438. }).form; //創建窗體
  7439. _taskbar = {
  7440. "id": str + _formdiv.id,
  7441. "style": {
  7442. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7443. },
  7444. "name": "電子白板",
  7445. "forms": _formdiv,
  7446. "click": function () {
  7447. U.MD.D.I.openApplication(str, obj, info);
  7448. }
  7449. }
  7450. break;
  7451. case "mind":
  7452. aTool = 3;
  7453. _iframe = $$("iframe", {
  7454. "frameborder": "no",
  7455. "border": "0",
  7456. "scrolling ": "no",
  7457. "style": {
  7458. "cssText": "border:0;width:100%;height:100%"
  7459. },
  7460. "src": "/kityminder-editor/dist/index.html"
  7461. })
  7462. _box.appendChild(_iframe);
  7463. _box.appendChild(_jie);
  7464. _formdiv = new U.UF.UI.form(
  7465. "思維導圖",
  7466. _box, { //"/jsmind/example/demo.html"
  7467. "id": "mind" + cid + stage + task + tool,
  7468. "style": {
  7469. "width": "90%",
  7470. "height": "90%",
  7471. "overflow": 'hidden'
  7472. },
  7473. "onresize": function () { }
  7474. }, {
  7475. closecallback: function () { }
  7476. }, {
  7477. "style": {
  7478. "height": "36px"
  7479. }
  7480. }).form; //創建窗體
  7481. _taskbar = {
  7482. "id": str + _formdiv.id,
  7483. "style": {
  7484. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7485. },
  7486. "name": "思維導圖",
  7487. "forms": _formdiv,
  7488. "click": function () {
  7489. U.MD.D.I.openApplication(str, obj, info);
  7490. }
  7491. }
  7492. break;
  7493. case "MindMap":
  7494. aTool = 3;
  7495. _iframe = $$("iframe", {
  7496. "frameborder": "no",
  7497. "border": "0",
  7498. "scrolling ": "no",
  7499. "style": {
  7500. "cssText": "border:0;width:100%;height:100%"
  7501. },
  7502. "src": "//cloud.cocorobo.hk/mind/"
  7503. })
  7504. _box.appendChild(_iframe);
  7505. _box.appendChild(_jie);
  7506. _formdiv = new U.UF.UI.form(
  7507. "思維導圖",
  7508. _box, { //"/jsmind/example/demo.html"
  7509. "id": "mind" + cid + stage + task + tool,
  7510. "style": {
  7511. "width": "90%",
  7512. "height": "90%",
  7513. "overflow": 'hidden'
  7514. },
  7515. "onresize": function () { }
  7516. }, {
  7517. closecallback: function () { }
  7518. }, {
  7519. "style": {
  7520. "height": "36px"
  7521. }
  7522. }).form; //創建窗體
  7523. _taskbar = {
  7524. "id": str + _formdiv.id,
  7525. "style": {
  7526. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7527. },
  7528. "name": "思維導圖",
  7529. "forms": _formdiv,
  7530. "click": function () {
  7531. U.MD.D.I.openApplication(str, obj, info);
  7532. }
  7533. }
  7534. break;
  7535. case "doc":
  7536. aTool = 6;
  7537. _iframe = $$("iframe", {
  7538. "frameborder": "no",
  7539. "border": "0",
  7540. "scrolling ": "no",
  7541. "style": {
  7542. "cssText": "border:0;width:100%;height:100%"
  7543. },
  7544. "src": "/Office/Word/WordEditArea.htm"
  7545. })
  7546. _box.appendChild(_iframe);
  7547. _box.appendChild(_jie);
  7548. _formdiv = new U.UF.UI.form(
  7549. "協同文檔",
  7550. _box, {
  7551. "id": "doc" + cid + stage + task + tool,
  7552. "style": {
  7553. "width": "90%",
  7554. "height": "90%",
  7555. "overflow": 'hidden'
  7556. },
  7557. "onresize": function () { }
  7558. }, {
  7559. closecallback: function () { }
  7560. }, {
  7561. "style": {
  7562. "height": "36px"
  7563. }
  7564. }).form; //創建窗體
  7565. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7566. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7567. })
  7568. _taskbar = {
  7569. "id": str + _formdiv.id,
  7570. "style": {
  7571. "backgroundImage": "url(/img/icon/doc.png)"
  7572. },
  7573. "name": "協同文檔",
  7574. "forms": _formdiv,
  7575. "click": function () {
  7576. U.MD.D.I.openApplication(str, obj, info);
  7577. }
  7578. }
  7579. break;
  7580. case "mindNetwork": //好友打開
  7581. aTool = 7;
  7582. _iframe = $$("iframe", {
  7583. "webkitallowfullscreen": "",
  7584. "mozallowfullscreen": "",
  7585. "allowfullscreen": "",
  7586. "frameborder": "no",
  7587. "border": "0",
  7588. "scrolling ": "no",
  7589. "style": {
  7590. "cssText": "border:0; width:100%; height:100%;"
  7591. },
  7592. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7593. })
  7594. _box.appendChild(_iframe);
  7595. _box.appendChild(_jie);
  7596. _formdiv = new U.UF.UI.form(
  7597. "思維網格",
  7598. _box, {
  7599. "id": "mindNetwork" + cid + stage + task + tool,
  7600. "style": {
  7601. "width": "90%",
  7602. "height": "90%",
  7603. "overflow": 'hidden'
  7604. },
  7605. "onresize": function () { }
  7606. }, {
  7607. closecallback: function () { }
  7608. }, {
  7609. "style": {
  7610. "height": "36px"
  7611. }
  7612. }).form; //創建窗體
  7613. _taskbar = {
  7614. "id": str + _formdiv.id,
  7615. "style": {
  7616. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7617. },
  7618. "name": "思維網格",
  7619. "forms": _formdiv,
  7620. "click": function () {
  7621. U.MD.D.I.openApplication(str, obj, info);
  7622. }
  7623. }
  7624. break;
  7625. case "courseDesign":
  7626. _iframe = $$("iframe", {
  7627. "webkitallowfullscreen": "",
  7628. "mozallowfullscreen": "",
  7629. "allowfullscreen": "",
  7630. "frameborder": "no",
  7631. "border": "0",
  7632. "scrolling ": "no",
  7633. "style": {
  7634. "cssText": "border:0; width:100%; height:100%;"
  7635. },
  7636. "src": "/course-design-vue"
  7637. })
  7638. _box.appendChild(_iframe);
  7639. _box.appendChild(_jie);
  7640. _formdiv = new U.UF.UI.form(
  7641. "項目設計",
  7642. _box, {
  7643. "id": "courseDesign" + cid + stage + task + tool,
  7644. "style": {
  7645. "width": "90%",
  7646. "height": "90%",
  7647. "overflow": 'hidden'
  7648. },
  7649. "onresize": function () { }
  7650. }, {
  7651. closecallback: function () { }
  7652. }, {
  7653. "style": {
  7654. "height": "36px"
  7655. }
  7656. }).form; //創建窗體
  7657. _taskbar = {
  7658. "id": str + _formdiv.id,
  7659. "style": {
  7660. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7661. },
  7662. "name": "項目設計",
  7663. "forms": _formdiv,
  7664. "click": function () {
  7665. U.MD.D.I.openApplication(str, obj, info);
  7666. }
  7667. }
  7668. break;
  7669. }
  7670. const script1 = document.createElement("script");
  7671. script1.type = "text/javascript";
  7672. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7673. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  7674. const script2 = document.createElement("script");
  7675. script2.type = "text/javascript";
  7676. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7677. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  7678. const script3 = document.createElement("script");
  7679. script3.type = "text/javascript";
  7680. script3.charset = "UTF-8";
  7681. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  7682. const script4 = document.createElement("script");
  7683. script4.type = "text/javascript";
  7684. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7685. script4.src = window.origin + "/js/Common/jietu2E.js";
  7686. if (_iframe) {
  7687. if (str == 'doc') {
  7688. _iframe = _formdiv.querySelector('iframe')
  7689. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7690. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7691. _iframe.contentWindow.document.body.appendChild(script1);
  7692. _iframe.contentWindow.document.body.appendChild(script2);
  7693. // _iframe.contentWindow.document.body.appendChild(script3);
  7694. _iframe.contentWindow.document.body.appendChild(script4);
  7695. })
  7696. if (onloadListener) {
  7697. _iframe.contentDocument.location.reload()
  7698. } else {
  7699. _iframe.contentDocument.location.reload()
  7700. }
  7701. } else if (str == 'courseDesign') {
  7702. U.UF.DL.iframeLoad(_iframe, function () {
  7703. // _iframe.contentWindow.U.MD.O.W.load();
  7704. // _iframe.contentWindow.document.body.appendChild(script1);
  7705. _iframe.contentWindow.document.body.appendChild(script2);
  7706. _iframe.contentWindow.document.body.appendChild(script4);
  7707. })
  7708. } else if (str == 'mind') {
  7709. _iframe = _formdiv.querySelector('iframe')
  7710. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7711. //
  7712. _iframe.contentWindow.document.body.appendChild(script1);
  7713. _iframe.contentWindow.document.body.appendChild(script2);
  7714. _iframe.contentWindow.document.body.appendChild(script4);
  7715. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7716. })
  7717. if (onloadListener) {
  7718. _iframe.contentDocument.location.reload()
  7719. } else {
  7720. _iframe.contentDocument.location.reload()
  7721. }
  7722. } else if (str == 'whiteboard') {
  7723. _iframe = _formdiv.querySelector('iframe')
  7724. let onloadListener = _iframe.onload = () => {
  7725. _iframe.contentWindow.document.body.appendChild(script1);
  7726. _iframe.contentWindow.document.body.appendChild(script2);
  7727. _iframe.contentWindow.document.body.appendChild(script4);
  7728. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7729. };
  7730. // if (onloadListener) {
  7731. // try {
  7732. // _iframe.src += "?cocorobo="+new Date().getTime()
  7733. // _iframe.contentWindow.document.location.reload()
  7734. // } catch (error) {
  7735. // }
  7736. // } else {
  7737. // _iframe.contentDocument.location.reload()
  7738. // }
  7739. } else {
  7740. _iframe.onload = () => {
  7741. _iframe.contentWindow.document.body.appendChild(script1);
  7742. _iframe.contentWindow.document.body.appendChild(script2);
  7743. // _iframe.contentWindow.document.body.appendChild(script3);
  7744. _iframe.contentWindow.document.body.appendChild(script4);
  7745. };
  7746. }
  7747. _jie.onclick = async () => {
  7748. let text = ''
  7749. if (aTool == 1) {
  7750. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7751. } else if (aTool == 6) {
  7752. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7753. } else if (aTool == 3) {
  7754. text = await U.MD.D.I.getEditorContent(_iframe);
  7755. }
  7756. _loading.style.display = 'flex'
  7757. console.log(_loading);
  7758. var _ajs = _iframe.contentWindow.document.createElement("script");
  7759. _ajs.type = "text/javascript";
  7760. _ajs.innerHTML =
  7761. // 'console.log(' + _loading + ');\n' +
  7762. 'var _js = document.createElement("script");\n' +
  7763. '_js.type="text/javascript";\n' +
  7764. '_js.charset="UTF-8";\n' +
  7765. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  7766. "_js.onload = function(){\n" +
  7767. ' var a = document.getElementsByTagName("img")\n' +
  7768. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7769. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7770. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7771. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7772. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  7773. "beforeUpload_shishi(file," +
  7774. "'" +
  7775. _userid +
  7776. "'" +
  7777. ", " +
  7778. "'" +
  7779. _cid +
  7780. "'" +
  7781. ", " +
  7782. "'" +
  7783. _stage +
  7784. "'" +
  7785. ", " +
  7786. "'" +
  7787. _task +
  7788. "'" +
  7789. ", " +
  7790. "'" +
  7791. _tool +
  7792. "'" +
  7793. ", " +
  7794. "'" +
  7795. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7796. "'" +
  7797. ", " +
  7798. "'" +
  7799. aTool +
  7800. "'" +
  7801. ", " +
  7802. "`" +
  7803. text +
  7804. "`" +
  7805. ")\n" +
  7806. " });\n" +
  7807. "}\n" +
  7808. "document.head.appendChild(_js);\n";
  7809. _iframe.contentWindow.document.head.appendChild(_ajs);
  7810. }
  7811. }
  7812. //U.MD.D.I.openClick(str);
  7813. //如果有任務欄信息
  7814. // if (_taskbar) {
  7815. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  7816. // }
  7817. }
  7818. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7819. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  7820. _formdiv, //創建任務欄時同時彈出的窗體元素。
  7821. _userid = student.userid, //登錄用戶id
  7822. _username = student.student //用戶名字
  7823. let _iframe;
  7824. let _cid = cid,
  7825. _stage = stage,
  7826. _task = task,
  7827. _tool = tool;
  7828. var _jie = $$("div", {
  7829. "style": {
  7830. "position": "absolute",
  7831. "bottom": "50px",
  7832. "right": "50px",
  7833. "zIndex": "9999",
  7834. "backgroundColor": "#2268bc",
  7835. "color": "#fff",
  7836. "padding": "12px 20px",
  7837. "cursor": "pointer",
  7838. "borderRadius": "4px",
  7839. },
  7840. "innerHTML": "提交作業"
  7841. })
  7842. let aTool = ''
  7843. let _loading = document.createElement('div')
  7844. _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;"
  7845. // _loading.id = "";
  7846. let _lchild = document.createElement('div')
  7847. let _limg = document.createElement('img')
  7848. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7849. _limg.style = "width: 26px;margin-right: 10px;"
  7850. _lchild.appendChild(_limg)
  7851. let _lspan = document.createElement('span')
  7852. _lspan.innerHTML = "上傳中..."
  7853. _lchild.appendChild(_lspan)
  7854. _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%);"
  7855. _loading.appendChild(_lchild)
  7856. var _box = $$('div', {
  7857. "style": {
  7858. "position": "relative",
  7859. "width": "100%",
  7860. "height": "100%",
  7861. },
  7862. })
  7863. _box.appendChild(_loading)
  7864. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7865. switch (str) {
  7866. case "whiteboard":
  7867. aTool = 1;
  7868. _iframe = $$("iframe", {
  7869. "frameborder": "no",
  7870. "border": "0",
  7871. "scrolling ": "no",
  7872. "style": {
  7873. "cssText": "border:0;width:100%;height:100%"
  7874. },
  7875. "src": "https://iwb.cocorobo.hk/"
  7876. })
  7877. _box.appendChild(_iframe);
  7878. _box.appendChild(_jie);
  7879. _formdiv = new U.UF.UI.form(
  7880. "電子白板-" + _username,
  7881. _box, {
  7882. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7883. "style": {
  7884. "width": "90%",
  7885. "height": "90%",
  7886. "overflow": 'hidden'
  7887. },
  7888. "onresize": function () { }
  7889. }, {
  7890. closecallback: function () { }
  7891. }, {
  7892. "style": {
  7893. "height": "36px"
  7894. }
  7895. }).form; //創建窗體
  7896. _taskbar = {
  7897. "id": str + _formdiv.id,
  7898. "style": {
  7899. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7900. },
  7901. "name": "電子白板",
  7902. "forms": _formdiv,
  7903. "click": function () {
  7904. U.MD.D.I.openApplication(str, obj, info);
  7905. }
  7906. }
  7907. break;
  7908. case "mind":
  7909. aTool = 3;
  7910. _iframe = $$("iframe", {
  7911. "frameborder": "no",
  7912. "border": "0",
  7913. "scrolling ": "no",
  7914. "style": {
  7915. "cssText": "border:0;width:100%;height:100%"
  7916. },
  7917. "src": "/kityminder-editor/dist/index.html"
  7918. })
  7919. _box.appendChild(_iframe);
  7920. _box.appendChild(_jie);
  7921. _formdiv = new U.UF.UI.form(
  7922. "思維導圖-" + _username,
  7923. _box, { //"/jsmind/example/demo.html"
  7924. "id": "mind" + cid + stage + task + tool + _userid,
  7925. "style": {
  7926. "width": "90%",
  7927. "height": "90%",
  7928. "overflow": 'hidden'
  7929. },
  7930. "onresize": function () { }
  7931. }, {
  7932. closecallback: function () { }
  7933. }, {
  7934. "style": {
  7935. "height": "36px"
  7936. }
  7937. }).form; //創建窗體
  7938. _taskbar = {
  7939. "id": str + _formdiv.id,
  7940. "style": {
  7941. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7942. },
  7943. "name": "思維導圖",
  7944. "forms": _formdiv,
  7945. "click": function () {
  7946. U.MD.D.I.openApplication(str, obj, info);
  7947. }
  7948. }
  7949. break;
  7950. case "MindMap":
  7951. aTool = 3;
  7952. _iframe = $$("iframe", {
  7953. "frameborder": "no",
  7954. "border": "0",
  7955. "scrolling ": "no",
  7956. "style": {
  7957. "cssText": "border:0;width:100%;height:100%"
  7958. },
  7959. "src": "//cloud.cocorobo.hk/mind/"
  7960. })
  7961. _box.appendChild(_iframe);
  7962. _box.appendChild(_jie);
  7963. _formdiv = new U.UF.UI.form(
  7964. "思維導圖-" + _username,
  7965. _box, { //"/jsmind/example/demo.html"
  7966. "id": "mind" + cid + stage + task + tool + _userid,
  7967. "style": {
  7968. "width": "90%",
  7969. "height": "90%",
  7970. "overflow": 'hidden'
  7971. },
  7972. "onresize": function () { }
  7973. }, {
  7974. closecallback: function () { }
  7975. }, {
  7976. "style": {
  7977. "height": "36px"
  7978. }
  7979. }).form; //創建窗體
  7980. _taskbar = {
  7981. "id": str + _formdiv.id,
  7982. "style": {
  7983. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7984. },
  7985. "name": "思維導圖",
  7986. "forms": _formdiv,
  7987. "click": function () {
  7988. U.MD.D.I.openApplication(str, obj, info);
  7989. }
  7990. }
  7991. break;
  7992. case "doc":
  7993. aTool = 6;
  7994. _iframe = $$("iframe", {
  7995. "frameborder": "no",
  7996. "border": "0",
  7997. "scrolling ": "no",
  7998. "style": {
  7999. "cssText": "border:0;width:100%;height:100%"
  8000. },
  8001. "src": "/Office/Word/WordEditArea.htm"
  8002. })
  8003. _box.appendChild(_iframe);
  8004. _box.appendChild(_jie);
  8005. _formdiv = new U.UF.UI.form(
  8006. "協同文檔-" + _username,
  8007. _box, {
  8008. "id": "doc" + cid + stage + task + tool + _userid,
  8009. "style": {
  8010. "width": "90%",
  8011. "height": "90%",
  8012. "overflow": 'hidden'
  8013. },
  8014. "onresize": function () { }
  8015. }, {
  8016. closecallback: function () { }
  8017. }, {
  8018. "style": {
  8019. "height": "36px"
  8020. }
  8021. }).form; //創建窗體
  8022. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8023. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8024. })
  8025. _taskbar = {
  8026. "id": str + _formdiv.id,
  8027. "style": {
  8028. "backgroundImage": "url(/img/icon/doc.png)"
  8029. },
  8030. "name": "協同文檔",
  8031. "forms": _formdiv,
  8032. "click": function () {
  8033. U.MD.D.I.openApplication(str, obj, info);
  8034. }
  8035. }
  8036. break;
  8037. case "mindNetwork": //好友打開
  8038. aTool = 7;
  8039. _iframe = $$("iframe", {
  8040. "webkitallowfullscreen": "",
  8041. "mozallowfullscreen": "",
  8042. "allowfullscreen": "",
  8043. "frameborder": "no",
  8044. "border": "0",
  8045. "scrolling ": "no",
  8046. "style": {
  8047. "cssText": "border:0; width:100%; height:100%;"
  8048. },
  8049. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8050. })
  8051. _box.appendChild(_iframe);
  8052. _box.appendChild(_jie);
  8053. _formdiv = new U.UF.UI.form(
  8054. "思維網格-" + _username,
  8055. _box, {
  8056. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8057. "style": {
  8058. "width": "90%",
  8059. "height": "90%",
  8060. "overflow": 'hidden'
  8061. },
  8062. "onresize": function () { }
  8063. }, {
  8064. closecallback: function () { }
  8065. }, {
  8066. "style": {
  8067. "height": "36px"
  8068. }
  8069. }).form; //創建窗體
  8070. _taskbar = {
  8071. "id": str + _formdiv.id,
  8072. "style": {
  8073. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8074. },
  8075. "name": "思維網格",
  8076. "forms": _formdiv,
  8077. "click": function () {
  8078. U.MD.D.I.openApplication(str, obj, info);
  8079. }
  8080. }
  8081. break;
  8082. case "courseDesign":
  8083. _iframe = $$("iframe", {
  8084. "webkitallowfullscreen": "",
  8085. "mozallowfullscreen": "",
  8086. "allowfullscreen": "",
  8087. "frameborder": "no",
  8088. "border": "0",
  8089. "scrolling ": "no",
  8090. "style": {
  8091. "cssText": "border:0; width:100%; height:100%;"
  8092. },
  8093. "src": "/course-design-vue"
  8094. })
  8095. _box.appendChild(_iframe);
  8096. _box.appendChild(_jie);
  8097. _formdiv = new U.UF.UI.form(
  8098. "項目設計-" + _username,
  8099. _box, {
  8100. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8101. "style": {
  8102. "width": "90%",
  8103. "height": "90%",
  8104. "overflow": 'hidden'
  8105. },
  8106. "onresize": function () { }
  8107. }, {
  8108. closecallback: function () { }
  8109. }, {
  8110. "style": {
  8111. "height": "36px"
  8112. }
  8113. }).form; //創建窗體
  8114. _taskbar = {
  8115. "id": str + _formdiv.id,
  8116. "style": {
  8117. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8118. },
  8119. "name": "項目設計",
  8120. "forms": _formdiv,
  8121. "click": function () {
  8122. U.MD.D.I.openApplication(str, obj, info);
  8123. }
  8124. }
  8125. break;
  8126. }
  8127. const script1 = document.createElement("script");
  8128. script1.type = "text/javascript";
  8129. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8130. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8131. const script2 = document.createElement("script");
  8132. script2.type = "text/javascript";
  8133. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8134. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8135. const script3 = document.createElement("script");
  8136. script3.type = "text/javascript";
  8137. script3.charset = "UTF-8";
  8138. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8139. const script4 = document.createElement("script");
  8140. script4.type = "text/javascript";
  8141. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8142. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu2.js";
  8143. if (_iframe) {
  8144. if (str == 'doc') {
  8145. _iframe = _formdiv.querySelector('iframe')
  8146. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8147. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8148. _iframe.contentWindow.document.body.appendChild(script1);
  8149. _iframe.contentWindow.document.body.appendChild(script2);
  8150. // _iframe.contentWindow.document.body.appendChild(script3);
  8151. _iframe.contentWindow.document.body.appendChild(script4);
  8152. })
  8153. if (onloadListener) {
  8154. _iframe.contentDocument.location.reload()
  8155. } else {
  8156. _iframe.contentDocument.location.reload()
  8157. }
  8158. } else if (str == 'courseDesign') {
  8159. U.UF.DL.iframeLoad(_iframe, function () {
  8160. // _iframe.contentWindow.U.MD.O.W.load();
  8161. // _iframe.contentWindow.document.body.appendChild(script1);
  8162. _iframe.contentWindow.document.body.appendChild(script2);
  8163. _iframe.contentWindow.document.body.appendChild(script4);
  8164. })
  8165. } else if (str == 'mind') {
  8166. _iframe = _formdiv.querySelector('iframe')
  8167. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8168. //
  8169. _iframe.contentWindow.document.body.appendChild(script1);
  8170. _iframe.contentWindow.document.body.appendChild(script2);
  8171. _iframe.contentWindow.document.body.appendChild(script4);
  8172. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8173. })
  8174. if (onloadListener) {
  8175. _iframe.contentDocument.location.reload()
  8176. } else {
  8177. _iframe.contentDocument.location.reload()
  8178. }
  8179. } else if (str == 'whiteboard') {
  8180. _iframe = _formdiv.querySelector('iframe')
  8181. let onloadListener = _iframe.onload = () => {
  8182. _iframe.contentWindow.document.body.appendChild(script1);
  8183. _iframe.contentWindow.document.body.appendChild(script2);
  8184. _iframe.contentWindow.document.body.appendChild(script4);
  8185. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8186. };
  8187. // if (onloadListener) {
  8188. // try {
  8189. // _iframe.src += "?cocorobo="+new Date().getTime()
  8190. // _iframe.contentWindow.document.location.reload()
  8191. // } catch (error) {
  8192. // }
  8193. // } else {
  8194. // _iframe.contentDocument.location.reload()
  8195. // }
  8196. } else {
  8197. _iframe.onload = () => {
  8198. _iframe.contentWindow.document.body.appendChild(script1);
  8199. _iframe.contentWindow.document.body.appendChild(script2);
  8200. // _iframe.contentWindow.document.body.appendChild(script3);
  8201. _iframe.contentWindow.document.body.appendChild(script4);
  8202. };
  8203. }
  8204. _jie.onclick = async () => {
  8205. let text = ''
  8206. if (aTool == 1) {
  8207. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8208. } else if (aTool == 6) {
  8209. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8210. } else if (aTool == 3) {
  8211. text = await U.MD.D.I.getEditorContent(_iframe);
  8212. }
  8213. _loading.style.display = 'flex'
  8214. console.log(_loading);
  8215. var _ajs = _iframe.contentWindow.document.createElement("script");
  8216. _ajs.type = "text/javascript";
  8217. _ajs.innerHTML =
  8218. // 'console.log(' + _loading + ');\n' +
  8219. 'var _js = document.createElement("script");\n' +
  8220. '_js.type="text/javascript";\n' +
  8221. '_js.charset="UTF-8";\n' +
  8222. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8223. "_js.onload = function(){\n" +
  8224. ' var a = document.getElementsByTagName("img")\n' +
  8225. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8226. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8227. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8228. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8229. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8230. "beforeUpload_shishi(file," +
  8231. "'" +
  8232. _userid +
  8233. "'" +
  8234. ", " +
  8235. "'" +
  8236. _cid +
  8237. "'" +
  8238. ", " +
  8239. "'" +
  8240. _stage +
  8241. "'" +
  8242. ", " +
  8243. "'" +
  8244. _task +
  8245. "'" +
  8246. ", " +
  8247. "'" +
  8248. _tool +
  8249. "'" +
  8250. ", " +
  8251. "'" +
  8252. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8253. "'" +
  8254. ", " +
  8255. "'" +
  8256. aTool +
  8257. "'" +
  8258. ", " +
  8259. "`" +
  8260. text +
  8261. "`" +
  8262. ")\n" +
  8263. " });\n" +
  8264. "}\n" +
  8265. "document.head.appendChild(_js);\n";
  8266. _iframe.contentWindow.document.head.appendChild(_ajs);
  8267. }
  8268. }
  8269. }
  8270. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8271. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8272. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8273. _userid = student.userid, //登錄用戶id
  8274. _username = student.student //用戶名字
  8275. let _iframe;
  8276. let _cid = cid,
  8277. _stage = stage,
  8278. _task = task,
  8279. _tool = tool;
  8280. var _jie = $$("div", {
  8281. "style": {
  8282. "position": "absolute",
  8283. "bottom": "50px",
  8284. "right": "50px",
  8285. "zIndex": "9999",
  8286. "backgroundColor": "#2268bc",
  8287. "color": "#fff",
  8288. "padding": "12px 20px",
  8289. "cursor": "pointer",
  8290. "borderRadius": "4px",
  8291. },
  8292. "innerHTML": "提交作業"
  8293. })
  8294. let aTool = ''
  8295. let _loading = document.createElement('div')
  8296. _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;"
  8297. // _loading.id = "";
  8298. let _lchild = document.createElement('div')
  8299. let _limg = document.createElement('img')
  8300. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8301. _limg.style = "width: 26px;margin-right: 10px;"
  8302. _lchild.appendChild(_limg)
  8303. let _lspan = document.createElement('span')
  8304. _lspan.innerHTML = "上傳中..."
  8305. _lchild.appendChild(_lspan)
  8306. _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%);"
  8307. _loading.appendChild(_lchild)
  8308. var _box = $$('div', {
  8309. "style": {
  8310. "position": "relative",
  8311. "width": "100%",
  8312. "height": "100%",
  8313. },
  8314. })
  8315. _box.appendChild(_loading)
  8316. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8317. switch (str) {
  8318. case "whiteboard":
  8319. aTool = 1;
  8320. _iframe = $$("iframe", {
  8321. "frameborder": "no",
  8322. "border": "0",
  8323. "scrolling ": "no",
  8324. "style": {
  8325. "cssText": "border:0;width:100%;height:100%"
  8326. },
  8327. "src": "https://iwb.cocorobo.hk/"
  8328. })
  8329. _box.appendChild(_iframe);
  8330. _box.appendChild(_jie);
  8331. _formdiv = new U.UF.UI.form(
  8332. "電子白板-" + _username,
  8333. _box, {
  8334. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8335. "style": {
  8336. "width": "90%",
  8337. "height": "90%",
  8338. "overflow": 'hidden'
  8339. },
  8340. "onresize": function () { }
  8341. }, {
  8342. closecallback: function () { }
  8343. }, {
  8344. "style": {
  8345. "height": "36px"
  8346. }
  8347. }).form; //創建窗體
  8348. _taskbar = {
  8349. "id": str + _formdiv.id,
  8350. "style": {
  8351. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8352. },
  8353. "name": "電子白板",
  8354. "forms": _formdiv,
  8355. "click": function () {
  8356. U.MD.D.I.openApplication(str, obj, info);
  8357. }
  8358. }
  8359. break;
  8360. case "mind":
  8361. aTool = 3;
  8362. _iframe = $$("iframe", {
  8363. "frameborder": "no",
  8364. "border": "0",
  8365. "scrolling ": "no",
  8366. "style": {
  8367. "cssText": "border:0;width:100%;height:100%"
  8368. },
  8369. "src": "/kityminder-editor/dist/index.html"
  8370. })
  8371. _box.appendChild(_iframe);
  8372. _box.appendChild(_jie);
  8373. _formdiv = new U.UF.UI.form(
  8374. "思維導圖-" + _username,
  8375. _box, { //"/jsmind/example/demo.html"
  8376. "id": "mind" + cid + stage + task + tool + _userid,
  8377. "style": {
  8378. "width": "90%",
  8379. "height": "90%",
  8380. "overflow": 'hidden'
  8381. },
  8382. "onresize": function () { }
  8383. }, {
  8384. closecallback: function () { }
  8385. }, {
  8386. "style": {
  8387. "height": "36px"
  8388. }
  8389. }).form; //創建窗體
  8390. _taskbar = {
  8391. "id": str + _formdiv.id,
  8392. "style": {
  8393. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8394. },
  8395. "name": "思維導圖",
  8396. "forms": _formdiv,
  8397. "click": function () {
  8398. U.MD.D.I.openApplication(str, obj, info);
  8399. }
  8400. }
  8401. break;
  8402. case "MindMap":
  8403. aTool = 3;
  8404. _iframe = $$("iframe", {
  8405. "frameborder": "no",
  8406. "border": "0",
  8407. "scrolling ": "no",
  8408. "style": {
  8409. "cssText": "border:0;width:100%;height:100%"
  8410. },
  8411. "src": "//cloud.cocorobo.hk/mind/"
  8412. })
  8413. _box.appendChild(_iframe);
  8414. _box.appendChild(_jie);
  8415. _formdiv = new U.UF.UI.form(
  8416. "思維導圖-" + _username,
  8417. _box, { //"/jsmind/example/demo.html"
  8418. "id": "mind" + cid + stage + task + tool + _userid,
  8419. "style": {
  8420. "width": "90%",
  8421. "height": "90%",
  8422. "overflow": 'hidden'
  8423. },
  8424. "onresize": function () { }
  8425. }, {
  8426. closecallback: function () { }
  8427. }, {
  8428. "style": {
  8429. "height": "36px"
  8430. }
  8431. }).form; //創建窗體
  8432. _taskbar = {
  8433. "id": str + _formdiv.id,
  8434. "style": {
  8435. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8436. },
  8437. "name": "思維導圖",
  8438. "forms": _formdiv,
  8439. "click": function () {
  8440. U.MD.D.I.openApplication(str, obj, info);
  8441. }
  8442. }
  8443. break;
  8444. case "doc":
  8445. aTool = 6;
  8446. _iframe = $$("iframe", {
  8447. "frameborder": "no",
  8448. "border": "0",
  8449. "scrolling ": "no",
  8450. "style": {
  8451. "cssText": "border:0;width:100%;height:100%"
  8452. },
  8453. "src": "/Office/Word/WordEditArea.htm"
  8454. })
  8455. _box.appendChild(_iframe);
  8456. _box.appendChild(_jie);
  8457. _formdiv = new U.UF.UI.form(
  8458. "協同文檔-" + _username,
  8459. _box, {
  8460. "id": "doc" + cid + stage + task + tool + _userid,
  8461. "style": {
  8462. "width": "90%",
  8463. "height": "90%",
  8464. "overflow": 'hidden'
  8465. },
  8466. "onresize": function () { }
  8467. }, {
  8468. closecallback: function () { }
  8469. }, {
  8470. "style": {
  8471. "height": "36px"
  8472. }
  8473. }).form; //創建窗體
  8474. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8475. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8476. })
  8477. _taskbar = {
  8478. "id": str + _formdiv.id,
  8479. "style": {
  8480. "backgroundImage": "url(/img/icon/doc.png)"
  8481. },
  8482. "name": "協同文檔",
  8483. "forms": _formdiv,
  8484. "click": function () {
  8485. U.MD.D.I.openApplication(str, obj, info);
  8486. }
  8487. }
  8488. break;
  8489. case "mindNetwork": //好友打開
  8490. aTool = 7;
  8491. _iframe = $$("iframe", {
  8492. "webkitallowfullscreen": "",
  8493. "mozallowfullscreen": "",
  8494. "allowfullscreen": "",
  8495. "frameborder": "no",
  8496. "border": "0",
  8497. "scrolling ": "no",
  8498. "style": {
  8499. "cssText": "border:0; width:100%; height:100%;"
  8500. },
  8501. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8502. })
  8503. _box.appendChild(_iframe);
  8504. _box.appendChild(_jie);
  8505. _formdiv = new U.UF.UI.form(
  8506. "思維網格-" + _username,
  8507. _box, {
  8508. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8509. "style": {
  8510. "width": "90%",
  8511. "height": "90%",
  8512. "overflow": 'hidden'
  8513. },
  8514. "onresize": function () { }
  8515. }, {
  8516. closecallback: function () { }
  8517. }, {
  8518. "style": {
  8519. "height": "36px"
  8520. }
  8521. }).form; //創建窗體
  8522. _taskbar = {
  8523. "id": str + _formdiv.id,
  8524. "style": {
  8525. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8526. },
  8527. "name": "思維網格",
  8528. "forms": _formdiv,
  8529. "click": function () {
  8530. U.MD.D.I.openApplication(str, obj, info);
  8531. }
  8532. }
  8533. break;
  8534. case "courseDesign":
  8535. _iframe = $$("iframe", {
  8536. "webkitallowfullscreen": "",
  8537. "mozallowfullscreen": "",
  8538. "allowfullscreen": "",
  8539. "frameborder": "no",
  8540. "border": "0",
  8541. "scrolling ": "no",
  8542. "style": {
  8543. "cssText": "border:0; width:100%; height:100%;"
  8544. },
  8545. "src": "/course-design-vue"
  8546. })
  8547. _box.appendChild(_iframe);
  8548. _box.appendChild(_jie);
  8549. _formdiv = new U.UF.UI.form(
  8550. "項目設計-" + _username,
  8551. _box, {
  8552. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8553. "style": {
  8554. "width": "90%",
  8555. "height": "90%",
  8556. "overflow": 'hidden'
  8557. },
  8558. "onresize": function () { }
  8559. }, {
  8560. closecallback: function () { }
  8561. }, {
  8562. "style": {
  8563. "height": "36px"
  8564. }
  8565. }).form; //創建窗體
  8566. _taskbar = {
  8567. "id": str + _formdiv.id,
  8568. "style": {
  8569. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8570. },
  8571. "name": "項目設計",
  8572. "forms": _formdiv,
  8573. "click": function () {
  8574. U.MD.D.I.openApplication(str, obj, info);
  8575. }
  8576. }
  8577. break;
  8578. }
  8579. const script1 = document.createElement("script");
  8580. script1.type = "text/javascript";
  8581. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8582. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8583. const script2 = document.createElement("script");
  8584. script2.type = "text/javascript";
  8585. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8586. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8587. const script3 = document.createElement("script");
  8588. script3.type = "text/javascript";
  8589. script3.charset = "UTF-8";
  8590. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8591. const script4 = document.createElement("script");
  8592. script4.type = "text/javascript";
  8593. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8594. script4.src = window.origin + "/js/Common/jietu2E.js";
  8595. if (_iframe) {
  8596. if (str == 'doc') {
  8597. _iframe = _formdiv.querySelector('iframe')
  8598. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8599. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8600. _iframe.contentWindow.document.body.appendChild(script1);
  8601. _iframe.contentWindow.document.body.appendChild(script2);
  8602. // _iframe.contentWindow.document.body.appendChild(script3);
  8603. _iframe.contentWindow.document.body.appendChild(script4);
  8604. })
  8605. if (onloadListener) {
  8606. _iframe.contentDocument.location.reload()
  8607. } else {
  8608. _iframe.contentDocument.location.reload()
  8609. }
  8610. } else if (str == 'courseDesign') {
  8611. U.UF.DL.iframeLoad(_iframe, function () {
  8612. // _iframe.contentWindow.U.MD.O.W.load();
  8613. // _iframe.contentWindow.document.body.appendChild(script1);
  8614. _iframe.contentWindow.document.body.appendChild(script2);
  8615. _iframe.contentWindow.document.body.appendChild(script4);
  8616. })
  8617. } else if (str == 'mind') {
  8618. _iframe = _formdiv.querySelector('iframe')
  8619. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8620. //
  8621. _iframe.contentWindow.document.body.appendChild(script1);
  8622. _iframe.contentWindow.document.body.appendChild(script2);
  8623. _iframe.contentWindow.document.body.appendChild(script4);
  8624. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8625. })
  8626. if (onloadListener) {
  8627. _iframe.contentDocument.location.reload()
  8628. } else {
  8629. _iframe.contentDocument.location.reload()
  8630. }
  8631. } else if (str == 'whiteboard') {
  8632. _iframe = _formdiv.querySelector('iframe')
  8633. let onloadListener = _iframe.onload = () => {
  8634. _iframe.contentWindow.document.body.appendChild(script1);
  8635. _iframe.contentWindow.document.body.appendChild(script2);
  8636. _iframe.contentWindow.document.body.appendChild(script4);
  8637. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8638. };
  8639. // if (onloadListener) {
  8640. // try {
  8641. // _iframe.src += "?cocorobo="+new Date().getTime()
  8642. // _iframe.contentWindow.document.location.reload()
  8643. // } catch (error) {
  8644. // }
  8645. // } else {
  8646. // _iframe.contentDocument.location.reload()
  8647. // }
  8648. } else {
  8649. _iframe.onload = () => {
  8650. _iframe.contentWindow.document.body.appendChild(script1);
  8651. _iframe.contentWindow.document.body.appendChild(script2);
  8652. // _iframe.contentWindow.document.body.appendChild(script3);
  8653. _iframe.contentWindow.document.body.appendChild(script4);
  8654. };
  8655. }
  8656. _jie.onclick = async () => {
  8657. let text = ''
  8658. if (aTool == 1) {
  8659. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8660. } else if (aTool == 6) {
  8661. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8662. } else if (aTool == 3) {
  8663. text = await U.MD.D.I.getEditorContent(_iframe);
  8664. }
  8665. _loading.style.display = 'flex'
  8666. console.log(_loading);
  8667. var _ajs = _iframe.contentWindow.document.createElement("script");
  8668. _ajs.type = "text/javascript";
  8669. _ajs.innerHTML =
  8670. // 'console.log(' + _loading + ');\n' +
  8671. 'var _js = document.createElement("script");\n' +
  8672. '_js.type="text/javascript";\n' +
  8673. '_js.charset="UTF-8";\n' +
  8674. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  8675. "_js.onload = function(){\n" +
  8676. ' var a = document.getElementsByTagName("img")\n' +
  8677. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8678. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8679. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8680. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8681. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  8682. "beforeUpload_shishi(file," +
  8683. "'" +
  8684. _userid +
  8685. "'" +
  8686. ", " +
  8687. "'" +
  8688. _cid +
  8689. "'" +
  8690. ", " +
  8691. "'" +
  8692. _stage +
  8693. "'" +
  8694. ", " +
  8695. "'" +
  8696. _task +
  8697. "'" +
  8698. ", " +
  8699. "'" +
  8700. _tool +
  8701. "'" +
  8702. ", " +
  8703. "'" +
  8704. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8705. "'" +
  8706. ", " +
  8707. "'" +
  8708. aTool +
  8709. "'" +
  8710. ", " +
  8711. "`" +
  8712. text +
  8713. "`" +
  8714. ")\n" +
  8715. " });\n" +
  8716. "}\n" +
  8717. "document.head.appendChild(_js);\n";
  8718. _iframe.contentWindow.document.head.appendChild(_ajs);
  8719. }
  8720. }
  8721. }
  8722. U.MD.D.I.getEditorContent = function (iframe) {
  8723. return new Promise((resolve, reject) => {
  8724. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8725. console.log(content);
  8726. resolve(content)
  8727. });
  8728. });
  8729. }
  8730. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8731. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8732. // if (res.value[0].length > 0) {
  8733. // // resolve(res.value[0][0].text);
  8734. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8735. // $(fileInput).val('');
  8736. // });
  8737. // }
  8738. // }, [], { "type": "GET", "withCredentials": true });
  8739. var xmlhttp;
  8740. var Mac, Sn, DeviceId
  8741. if (window.XMLHttpRequest) {
  8742. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  8743. xmlhttp = new XMLHttpRequest();
  8744. }
  8745. else {
  8746. // IE6, IE5 瀏覽器執行代碼
  8747. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8748. }
  8749. xmlhttp.onreadystatechange = function () {
  8750. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8751. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8752. // resolve(res.value[0][0].text);
  8753. if (type == '2') {
  8754. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8755. } else if (type == '3') {
  8756. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8757. }
  8758. } else {
  8759. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8760. }
  8761. }
  8762. }
  8763. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8764. xmlhttp.send();
  8765. }
  8766. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8767. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  8768. _formdiv, //創建任務欄時同時彈出的窗體元素。
  8769. _userinfo = US.userInfo, //登錄用戶信息
  8770. _userid = US.userInfo.userid //登錄用戶id
  8771. let _iframe;
  8772. let _cid = cid,
  8773. _stage = stage,
  8774. _task = task,
  8775. _tool = tool;
  8776. var _jie = $$("div", {
  8777. "style": {
  8778. "position": "absolute",
  8779. "bottom": "50px",
  8780. "right": "50px",
  8781. "zIndex": "9999",
  8782. "backgroundColor": "#2268bc",
  8783. "color": "#fff",
  8784. "padding": "12px 20px",
  8785. "cursor": "pointer",
  8786. "borderRadius": "4px",
  8787. },
  8788. "innerHTML": "確認並提交"
  8789. })
  8790. let aTool = ''
  8791. let _loading = document.createElement('div')
  8792. _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;"
  8793. // _loading.id = "";
  8794. let _lchild = document.createElement('div')
  8795. let _limg = document.createElement('img')
  8796. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8797. _limg.style = "width: 26px;margin-right: 10px;"
  8798. _lchild.appendChild(_limg)
  8799. let _lspan = document.createElement('span')
  8800. _lspan.innerHTML = "上傳中..."
  8801. _lchild.appendChild(_lspan)
  8802. _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%);"
  8803. _loading.appendChild(_lchild)
  8804. var _box = $$('div', {
  8805. "style": {
  8806. "position": "relative",
  8807. "width": "100%",
  8808. "height": "100%",
  8809. },
  8810. })
  8811. _box.appendChild(_loading)
  8812. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8813. switch (str) {
  8814. case "whiteboard":
  8815. aTool = 1;
  8816. _iframe = $$("iframe", {
  8817. "frameborder": "no",
  8818. "border": "0",
  8819. "scrolling ": "no",
  8820. "style": {
  8821. "cssText": "border:0;width:100%;height:100%"
  8822. },
  8823. "src": "https://iwb.cocorobo.hk/"
  8824. })
  8825. _box.appendChild(_iframe);
  8826. _box.appendChild(_jie);
  8827. _formdiv = new U.UF.UI.form(
  8828. "電子白板",
  8829. _box, {
  8830. "id": "whiteboards" + cid + stage + task + tool,
  8831. "style": {
  8832. "width": "90%",
  8833. "height": "90%",
  8834. "overflow": 'hidden'
  8835. },
  8836. "onresize": function () { }
  8837. }, {
  8838. closecallback: function () { }
  8839. }, {
  8840. "style": {
  8841. "height": "36px"
  8842. }
  8843. }).form; //創建窗體
  8844. _taskbar = {
  8845. "id": str + _formdiv.id,
  8846. "style": {
  8847. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8848. },
  8849. "name": "電子白板",
  8850. "forms": _formdiv,
  8851. "click": function () {
  8852. U.MD.D.I.openApplication(str, obj, info);
  8853. }
  8854. }
  8855. break;
  8856. case "mind":
  8857. aTool = 3;
  8858. _iframe = $$("iframe", {
  8859. "frameborder": "no",
  8860. "border": "0",
  8861. "scrolling ": "no",
  8862. "style": {
  8863. "cssText": "border:0;width:100%;height:100%"
  8864. },
  8865. "src": "/kityminder-editor/dist/index.html"
  8866. });
  8867. _box.appendChild(_iframe);
  8868. _box.appendChild(_jie);
  8869. _formdiv = new U.UF.UI.form(
  8870. "思維導圖",
  8871. _box, { //"/jsmind/example/demo.html"
  8872. "id": "minds" + cid + stage + task + tool,
  8873. "style": {
  8874. "width": "90%",
  8875. "height": "90%",
  8876. "overflow": 'hidden'
  8877. },
  8878. "onresize": function () { }
  8879. }, {
  8880. closecallback: function () { }
  8881. }, {
  8882. "style": {
  8883. "height": "36px"
  8884. }
  8885. }).form; //創建窗體
  8886. _taskbar = {
  8887. "id": str + _formdiv.id,
  8888. "style": {
  8889. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8890. },
  8891. "name": "思維導圖",
  8892. "forms": _formdiv,
  8893. "click": function () {
  8894. U.MD.D.I.openApplication(str, obj, info);
  8895. }
  8896. }
  8897. break;
  8898. case "doc":
  8899. aTool = 6;
  8900. _iframe = $$("iframe", {
  8901. "frameborder": "no",
  8902. "border": "0",
  8903. "scrolling ": "no",
  8904. "style": {
  8905. "cssText": "border:0;width:100%;height:100%"
  8906. },
  8907. "src": "/Office/Word/WordEditArea.htm"
  8908. })
  8909. _box.appendChild(_iframe);
  8910. _box.appendChild(_jie);
  8911. _formdiv = new U.UF.UI.form(
  8912. "協同文檔",
  8913. _box, {
  8914. "id": "docs" + cid + stage + task + tool,
  8915. "style": {
  8916. "width": "90%",
  8917. "height": "90%",
  8918. "overflow": 'hidden'
  8919. },
  8920. "onresize": function () { }
  8921. }, {
  8922. closecallback: function () { }
  8923. }, {
  8924. "style": {
  8925. "height": "36px"
  8926. }
  8927. }).form; //創建窗體
  8928. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8929. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8930. })
  8931. _taskbar = {
  8932. "id": str + _formdiv.id,
  8933. "style": {
  8934. "backgroundImage": "url(/img/icon/doc.png)"
  8935. },
  8936. "name": "協同文檔",
  8937. "forms": _formdiv,
  8938. "click": function () {
  8939. U.MD.D.I.openApplication(str, obj, info);
  8940. }
  8941. }
  8942. break;
  8943. }
  8944. const script1 = document.createElement("script");
  8945. script1.type = "text/javascript";
  8946. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8947. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  8948. const script2 = document.createElement("script");
  8949. script2.type = "text/javascript";
  8950. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8951. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  8952. const script3 = document.createElement("script");
  8953. script3.type = "text/javascript";
  8954. script3.charset = "UTF-8";
  8955. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  8956. const script4 = document.createElement("script");
  8957. script4.type = "text/javascript";
  8958. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8959. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu4.js";
  8960. if (_iframe) {
  8961. if (str == 'doc') {
  8962. _iframe = _formdiv.querySelector('iframe')
  8963. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8964. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8965. _iframe.contentWindow.document.body.appendChild(script1);
  8966. _iframe.contentWindow.document.body.appendChild(script2);
  8967. // _iframe.contentWindow.document.body.appendChild(script3);
  8968. _iframe.contentWindow.document.body.appendChild(script4);
  8969. })
  8970. if (onloadListener) {
  8971. _iframe.contentDocument.location.reload()
  8972. } else {
  8973. _iframe.contentDocument.location.reload()
  8974. }
  8975. } else if (str == 'mind') {
  8976. _iframe = _formdiv.querySelector('iframe')
  8977. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8978. _iframe.contentWindow.document.body.appendChild(script1);
  8979. _iframe.contentWindow.document.body.appendChild(script2);
  8980. _iframe.contentWindow.document.body.appendChild(script4);
  8981. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8982. })
  8983. if (onloadListener) {
  8984. _iframe.contentDocument.location.reload()
  8985. } else {
  8986. _iframe.contentDocument.location.reload()
  8987. }
  8988. } else {
  8989. _iframe.onload = () => {
  8990. _iframe.contentWindow.document.body.appendChild(script1);
  8991. _iframe.contentWindow.document.body.appendChild(script2);
  8992. // _iframe.contentWindow.document.body.appendChild(script3);
  8993. _iframe.contentWindow.document.body.appendChild(script4);
  8994. };
  8995. }
  8996. _jie.onclick = async () => {
  8997. let text = ''
  8998. if (aTool == 6) {
  8999. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9000. } else if (aTool == 3) {
  9001. text = await U.MD.D.I.getEditorContent(_iframe);
  9002. }
  9003. _loading.style.display = 'flex'
  9004. console.log(_loading);
  9005. var _ajs = _iframe.contentWindow.document.createElement("script");
  9006. _ajs.type = "text/javascript";
  9007. _ajs.innerHTML =
  9008. // 'console.log(' + _loading + ');\n' +
  9009. 'var _js = document.createElement("script");\n' +
  9010. '_js.type="text/javascript";\n' +
  9011. '_js.charset="UTF-8";\n' +
  9012. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9013. "_js.onload = function(){\n" +
  9014. ' var a = document.getElementsByTagName("img")\n' +
  9015. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9016. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9017. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9018. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9019. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9020. "beforeUpload_shishi(file," +
  9021. "'" +
  9022. _userid +
  9023. "'" +
  9024. ", " +
  9025. "'" +
  9026. _cid +
  9027. "'" +
  9028. ", " +
  9029. "'" +
  9030. _stage +
  9031. "'" +
  9032. ", " +
  9033. "'" +
  9034. _task +
  9035. "'" +
  9036. ", " +
  9037. "'" +
  9038. _tool +
  9039. "'" +
  9040. ", " +
  9041. "'" +
  9042. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9043. "'" +
  9044. ", " +
  9045. "'" +
  9046. aTool +
  9047. "'" +
  9048. ", " +
  9049. "`" +
  9050. text +
  9051. "`" +
  9052. ")\n" +
  9053. " });\n" +
  9054. "}\n" +
  9055. "document.head.appendChild(_js);\n";
  9056. _iframe.contentWindow.document.head.appendChild(_ajs);
  9057. }
  9058. }
  9059. //U.MD.D.I.openClick(str);
  9060. //如果有任務欄信息
  9061. // if (_taskbar) {
  9062. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9063. // }
  9064. }
  9065. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9066. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9067. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9068. _userinfo = US.userInfo, //登錄用戶信息
  9069. _userid = US.userInfo.userid //登錄用戶id
  9070. let _iframe;
  9071. let _cid = cid,
  9072. _stage = stage,
  9073. _task = task,
  9074. _tool = tool;
  9075. var _jie = $$("div", {
  9076. "style": {
  9077. "position": "absolute",
  9078. "bottom": "50px",
  9079. "right": "50px",
  9080. "zIndex": "9999",
  9081. "backgroundColor": "#2268bc",
  9082. "color": "#fff",
  9083. "padding": "12px 20px",
  9084. "cursor": "pointer",
  9085. "borderRadius": "4px",
  9086. },
  9087. "innerHTML": "確認並提交"
  9088. })
  9089. let aTool = ''
  9090. let _loading = document.createElement('div')
  9091. _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;"
  9092. // _loading.id = "";
  9093. let _lchild = document.createElement('div')
  9094. let _limg = document.createElement('img')
  9095. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9096. _limg.style = "width: 26px;margin-right: 10px;"
  9097. _lchild.appendChild(_limg)
  9098. let _lspan = document.createElement('span')
  9099. _lspan.innerHTML = "上傳中..."
  9100. _lchild.appendChild(_lspan)
  9101. _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%);"
  9102. _loading.appendChild(_lchild)
  9103. var _box = $$('div', {
  9104. "style": {
  9105. "position": "relative",
  9106. "width": "100%",
  9107. "height": "100%",
  9108. },
  9109. })
  9110. _box.appendChild(_loading)
  9111. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9112. switch (str) {
  9113. case "whiteboard":
  9114. aTool = 1;
  9115. _iframe = $$("iframe", {
  9116. "frameborder": "no",
  9117. "border": "0",
  9118. "scrolling ": "no",
  9119. "style": {
  9120. "cssText": "border:0;width:100%;height:100%"
  9121. },
  9122. "src": "https://iwb.cocorobo.hk/"
  9123. })
  9124. _box.appendChild(_iframe);
  9125. _box.appendChild(_jie);
  9126. _formdiv = new U.UF.UI.form(
  9127. "電子白板",
  9128. _box, {
  9129. "id": "whiteboards" + cid + stage + task + tool,
  9130. "style": {
  9131. "width": "90%",
  9132. "height": "90%",
  9133. "overflow": 'hidden'
  9134. },
  9135. "onresize": function () { }
  9136. }, {
  9137. closecallback: function () { }
  9138. }, {
  9139. "style": {
  9140. "height": "36px"
  9141. }
  9142. }).form; //創建窗體
  9143. _taskbar = {
  9144. "id": str + _formdiv.id,
  9145. "style": {
  9146. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9147. },
  9148. "name": "電子白板",
  9149. "forms": _formdiv,
  9150. "click": function () {
  9151. U.MD.D.I.openApplication(str, obj, info);
  9152. }
  9153. }
  9154. break;
  9155. case "mind":
  9156. aTool = 3;
  9157. _iframe = $$("iframe", {
  9158. "frameborder": "no",
  9159. "border": "0",
  9160. "scrolling ": "no",
  9161. "style": {
  9162. "cssText": "border:0;width:100%;height:100%"
  9163. },
  9164. "src": "/kityminder-editor/dist/index.html"
  9165. });
  9166. _box.appendChild(_iframe);
  9167. _box.appendChild(_jie);
  9168. _formdiv = new U.UF.UI.form(
  9169. "思維導圖",
  9170. _box, { //"/jsmind/example/demo.html"
  9171. "id": "minds" + cid + stage + task + tool,
  9172. "style": {
  9173. "width": "90%",
  9174. "height": "90%",
  9175. "overflow": 'hidden'
  9176. },
  9177. "onresize": function () { }
  9178. }, {
  9179. closecallback: function () { }
  9180. }, {
  9181. "style": {
  9182. "height": "36px"
  9183. }
  9184. }).form; //創建窗體
  9185. _taskbar = {
  9186. "id": str + _formdiv.id,
  9187. "style": {
  9188. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9189. },
  9190. "name": "思維導圖",
  9191. "forms": _formdiv,
  9192. "click": function () {
  9193. U.MD.D.I.openApplication(str, obj, info);
  9194. }
  9195. }
  9196. break;
  9197. case "doc":
  9198. aTool = 6;
  9199. _iframe = $$("iframe", {
  9200. "frameborder": "no",
  9201. "border": "0",
  9202. "scrolling ": "no",
  9203. "style": {
  9204. "cssText": "border:0;width:100%;height:100%"
  9205. },
  9206. "src": "/Office/Word/WordEditArea.htm"
  9207. })
  9208. _box.appendChild(_iframe);
  9209. _box.appendChild(_jie);
  9210. _formdiv = new U.UF.UI.form(
  9211. "協同文檔",
  9212. _box, {
  9213. "id": "docs" + cid + stage + task + tool,
  9214. "style": {
  9215. "width": "90%",
  9216. "height": "90%",
  9217. "overflow": 'hidden'
  9218. },
  9219. "onresize": function () { }
  9220. }, {
  9221. closecallback: function () { }
  9222. }, {
  9223. "style": {
  9224. "height": "36px"
  9225. }
  9226. }).form; //創建窗體
  9227. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9228. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9229. })
  9230. _taskbar = {
  9231. "id": str + _formdiv.id,
  9232. "style": {
  9233. "backgroundImage": "url(/img/icon/doc.png)"
  9234. },
  9235. "name": "協同文檔",
  9236. "forms": _formdiv,
  9237. "click": function () {
  9238. U.MD.D.I.openApplication(str, obj, info);
  9239. }
  9240. }
  9241. break;
  9242. }
  9243. const script1 = document.createElement("script");
  9244. script1.type = "text/javascript";
  9245. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9246. script1.src = "https://cloud.cocorobo.hk/js/Common/jquery-3.6.0.min.js";
  9247. const script2 = document.createElement("script");
  9248. script2.type = "text/javascript";
  9249. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9250. script2.src = "https://cloud.cocorobo.hk/js/Common/aws-sdk-2.235.1.min.js";
  9251. const script3 = document.createElement("script");
  9252. script3.type = "text/javascript";
  9253. script3.charset = "UTF-8";
  9254. script3.src = "https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";
  9255. const script4 = document.createElement("script");
  9256. script4.type = "text/javascript";
  9257. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9258. script4.src = "https://cloud.cocorobo.hk/js/Common/jietu5.js";
  9259. if (_iframe) {
  9260. if (str == 'doc') {
  9261. _iframe = _formdiv.querySelector('iframe')
  9262. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9263. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9264. _iframe.contentWindow.document.body.appendChild(script1);
  9265. _iframe.contentWindow.document.body.appendChild(script2);
  9266. // _iframe.contentWindow.document.body.appendChild(script3);
  9267. _iframe.contentWindow.document.body.appendChild(script4);
  9268. })
  9269. if (onloadListener) {
  9270. _iframe.contentDocument.location.reload()
  9271. } else {
  9272. _iframe.contentDocument.location.reload()
  9273. }
  9274. } else if (str == 'mind') {
  9275. _iframe = _formdiv.querySelector('iframe')
  9276. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9277. _iframe.contentWindow.document.body.appendChild(script1);
  9278. _iframe.contentWindow.document.body.appendChild(script2);
  9279. _iframe.contentWindow.document.body.appendChild(script4);
  9280. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9281. })
  9282. if (onloadListener) {
  9283. _iframe.contentDocument.location.reload()
  9284. } else {
  9285. _iframe.contentDocument.location.reload()
  9286. }
  9287. } else {
  9288. _iframe.onload = () => {
  9289. _iframe.contentWindow.document.body.appendChild(script1);
  9290. _iframe.contentWindow.document.body.appendChild(script2);
  9291. // _iframe.contentWindow.document.body.appendChild(script3);
  9292. _iframe.contentWindow.document.body.appendChild(script4);
  9293. };
  9294. }
  9295. _jie.onclick = async () => {
  9296. let text = ''
  9297. if (aTool == 6) {
  9298. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9299. } else if (aTool == 3) {
  9300. text = await U.MD.D.I.getEditorContent(_iframe);
  9301. }
  9302. _loading.style.display = 'flex'
  9303. console.log(_loading);
  9304. var _ajs = _iframe.contentWindow.document.createElement("script");
  9305. _ajs.type = "text/javascript";
  9306. _ajs.innerHTML =
  9307. // 'console.log(' + _loading + ');\n' +
  9308. 'var _js = document.createElement("script");\n' +
  9309. '_js.type="text/javascript";\n' +
  9310. '_js.charset="UTF-8";\n' +
  9311. '_js.src="https://cloud.cocorobo.hk/js/Common/html2canvas.min.js";\n' +
  9312. "_js.onload = function(){\n" +
  9313. ' var a = document.getElementsByTagName("img")\n' +
  9314. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9315. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9316. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9317. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9318. 'var file = dataURLtoFile_shishi(base64Url, "截圖")\n' +
  9319. "beforeUpload_shishi(file," +
  9320. "'" +
  9321. _userid +
  9322. "'" +
  9323. ", " +
  9324. "'" +
  9325. _cid +
  9326. "'" +
  9327. ", " +
  9328. "'" +
  9329. _stage +
  9330. "'" +
  9331. ", " +
  9332. "'" +
  9333. _task +
  9334. "'" +
  9335. ", " +
  9336. "'" +
  9337. _tool +
  9338. "'" +
  9339. ", " +
  9340. "'" +
  9341. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9342. "'" +
  9343. ", " +
  9344. "'" +
  9345. aTool +
  9346. "'" +
  9347. ", " +
  9348. "`" +
  9349. text +
  9350. "`" +
  9351. ")\n" +
  9352. " });\n" +
  9353. "}\n" +
  9354. "document.head.appendChild(_js);\n";
  9355. _iframe.contentWindow.document.head.appendChild(_ajs);
  9356. }
  9357. }
  9358. //U.MD.D.I.openClick(str);
  9359. //如果有任務欄信息
  9360. // if (_taskbar) {
  9361. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9362. // }
  9363. }
  9364. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9365. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9366. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9367. _userinfo = US.userInfo, //登錄用戶信息
  9368. _userid = US.userInfo.userid //登錄用戶id
  9369. let _iframe;
  9370. let _cid = cid,
  9371. _stage = stage,
  9372. _task = task,
  9373. _tool = tool;
  9374. var _jie = $$("div", {
  9375. "style": {
  9376. "position": "absolute",
  9377. "bottom": "50px",
  9378. "right": "50px",
  9379. "zIndex": "9999",
  9380. "backgroundColor": "#2268bc",
  9381. "color": "#fff",
  9382. "padding": "12px 20px",
  9383. "cursor": "pointer",
  9384. "borderRadius": "4px",
  9385. },
  9386. "innerHTML": "上傳模板"
  9387. })
  9388. let aTool = ''
  9389. let _loading = document.createElement('div')
  9390. _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;"
  9391. // _loading.id = "";
  9392. let _lchild = document.createElement('div')
  9393. let _limg = document.createElement('img')
  9394. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9395. _limg.style = "width: 26px;margin-right: 10px;"
  9396. _lchild.appendChild(_limg)
  9397. let _lspan = document.createElement('span')
  9398. _lspan.innerHTML = "上傳中..."
  9399. _lchild.appendChild(_lspan)
  9400. _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%);"
  9401. _loading.appendChild(_lchild)
  9402. var _box = $$('div', {
  9403. "style": {
  9404. "position": "relative",
  9405. "width": "100%",
  9406. "height": "100%",
  9407. },
  9408. })
  9409. _box.appendChild(_loading)
  9410. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9411. switch (str) {
  9412. case "whiteboard":
  9413. aTool = 1;
  9414. _iframe = $$("iframe", {
  9415. "frameborder": "no",
  9416. "border": "0",
  9417. "scrolling ": "no",
  9418. "style": {
  9419. "cssText": "border:0;width:100%;height:100%"
  9420. },
  9421. "src": "https://iwb.cocorobo.hk/"
  9422. })
  9423. _box.appendChild(_iframe);
  9424. _box.appendChild(_jie);
  9425. _formdiv = new U.UF.UI.form(
  9426. "電子白板",
  9427. _box, {
  9428. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9429. "style": {
  9430. "width": "90%",
  9431. "height": "90%",
  9432. "overflow": 'hidden'
  9433. },
  9434. "onresize": function () { }
  9435. }, {
  9436. closecallback: function () { }
  9437. }, {
  9438. "style": {
  9439. "height": "36px"
  9440. }
  9441. }).form; //創建窗體
  9442. _taskbar = {
  9443. "id": str + _formdiv.id,
  9444. "style": {
  9445. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9446. },
  9447. "name": "電子白板",
  9448. "forms": _formdiv,
  9449. "click": function () {
  9450. U.MD.D.I.openApplication(str, obj, info);
  9451. }
  9452. }
  9453. break;
  9454. case "mind":
  9455. aTool = 3;
  9456. _iframe = $$("iframe", {
  9457. "frameborder": "no",
  9458. "border": "0",
  9459. "scrolling ": "no",
  9460. "style": {
  9461. "cssText": "border:0;width:100%;height:100%"
  9462. },
  9463. "src": "/kityminder-editor/dist/index.html"
  9464. });
  9465. _box.appendChild(_iframe);
  9466. _box.appendChild(_jie);
  9467. _formdiv = new U.UF.UI.form(
  9468. "思維導圖",
  9469. _box, { //"/jsmind/example/demo.html"
  9470. "id": "minds_Yu" + cid + stage + task + tool,
  9471. "style": {
  9472. "width": "90%",
  9473. "height": "90%",
  9474. "overflow": 'hidden'
  9475. },
  9476. "onresize": function () { }
  9477. }, {
  9478. closecallback: function () { }
  9479. }, {
  9480. "style": {
  9481. "height": "36px"
  9482. }
  9483. }).form; //創建窗體
  9484. _taskbar = {
  9485. "id": str + _formdiv.id,
  9486. "style": {
  9487. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9488. },
  9489. "name": "思維導圖",
  9490. "forms": _formdiv,
  9491. "click": function () {
  9492. U.MD.D.I.openApplication(str, obj, info);
  9493. }
  9494. }
  9495. break;
  9496. case "doc":
  9497. aTool = 6;
  9498. _iframe = $$("iframe", {
  9499. "frameborder": "no",
  9500. "border": "0",
  9501. "scrolling ": "no",
  9502. "style": {
  9503. "cssText": "border:0;width:100%;height:100%"
  9504. },
  9505. "src": "/Office/Word/WordEditArea.htm"
  9506. })
  9507. _box.appendChild(_iframe);
  9508. _box.appendChild(_jie);
  9509. _formdiv = new U.UF.UI.form(
  9510. "協同文檔",
  9511. _box, {
  9512. "id": "docs_Yu" + cid + stage + task + tool,
  9513. "style": {
  9514. "width": "90%",
  9515. "height": "90%",
  9516. "overflow": 'hidden'
  9517. },
  9518. "onresize": function () { }
  9519. }, {
  9520. closecallback: function () { }
  9521. }, {
  9522. "style": {
  9523. "height": "36px"
  9524. }
  9525. }).form; //創建窗體
  9526. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9527. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9528. })
  9529. _taskbar = {
  9530. "id": str + _formdiv.id,
  9531. "style": {
  9532. "backgroundImage": "url(/img/icon/doc.png)"
  9533. },
  9534. "name": "協同文檔",
  9535. "forms": _formdiv,
  9536. "click": function () {
  9537. U.MD.D.I.openApplication(str, obj, info);
  9538. }
  9539. }
  9540. break;
  9541. case "CocoPi":
  9542. aTool = 57;
  9543. _iframe = $$("iframe", {
  9544. "allowpaymentrequest": "allowpaymentrequest",
  9545. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9546. "webkitallowfullscreen": "",
  9547. "mozallowfullscreen": "",
  9548. "frameborder": "no",
  9549. "border": "0",
  9550. "scrolling ": "no",
  9551. "style": {
  9552. "cssText": "border:0;width:100%;height:100%"
  9553. },
  9554. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  9555. })
  9556. _box.appendChild(_iframe);
  9557. _box.appendChild(_jie);
  9558. _formdiv = new U.UF.UI.form(
  9559. "CocoPi",
  9560. _box, {
  9561. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9562. "style": {
  9563. "width": "90%",
  9564. "height": "90%",
  9565. "overflow": 'hidden'
  9566. },
  9567. "onresize": function () { }
  9568. }, {
  9569. closecallback: function () { }
  9570. }, {
  9571. "style": {
  9572. "height": "36px"
  9573. }
  9574. }).form; //創建窗體
  9575. _taskbar = {
  9576. "id": str + _formdiv.id,
  9577. "style": {
  9578. "backgroundImage": "url(/img/icon/cocopi.png)"
  9579. },
  9580. "name": "CocoPi",
  9581. "forms": _formdiv,
  9582. "click": function () {
  9583. U.MD.D.I.openApplication(str, obj, info);
  9584. }
  9585. }
  9586. break;
  9587. }
  9588. if (_iframe) {
  9589. if (str == 'doc') {
  9590. _iframe = _formdiv.querySelector('iframe')
  9591. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9592. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9593. })
  9594. if (onloadListener) {
  9595. _iframe.contentDocument.location.reload()
  9596. } else {
  9597. _iframe.contentDocument.location.reload()
  9598. }
  9599. } else if (str == 'mind') {
  9600. _iframe = _formdiv.querySelector('iframe')
  9601. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9602. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9603. })
  9604. if (onloadListener) {
  9605. _iframe.contentDocument.location.reload()
  9606. } else {
  9607. _iframe.contentDocument.location.reload()
  9608. }
  9609. } else if (str == 'whiteboard') {
  9610. _iframe = _formdiv.querySelector('iframe')
  9611. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9612. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9613. })
  9614. // if (onloadListener) {
  9615. // try {
  9616. // _iframe.src += "?cocorobo="+new Date().getTime()
  9617. // _iframe.contentWindow.document.location.reload()
  9618. // } catch (error) {
  9619. // }
  9620. // } else {
  9621. // _iframe.contentDocument.location.reload()
  9622. // }
  9623. } else if (str == 'CocoPi') {
  9624. _iframe = _formdiv.querySelector('iframe')
  9625. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9626. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9627. })
  9628. if (onloadListener) {
  9629. _iframe.contentDocument.location.reload()
  9630. } else {
  9631. _iframe.contentDocument.location.reload()
  9632. }
  9633. } else {
  9634. _iframe.onload = () => { };
  9635. }
  9636. _jie.onclick = async () => {
  9637. let text = ''
  9638. let type = '2'
  9639. if (aTool == 1) {
  9640. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9641. type = '3'
  9642. } else if (aTool == 6) {
  9643. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9644. type = '1'
  9645. } else if (aTool == 3) {
  9646. text = await U.MD.D.I.getEditorContent(_iframe);
  9647. type = '2'
  9648. } else if (aTool == 57) {
  9649. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9650. type = '4'
  9651. }
  9652. _loading.style.display = 'flex'
  9653. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9654. }
  9655. }
  9656. //U.MD.D.I.openClick(str);
  9657. //如果有任務欄信息
  9658. // if (_taskbar) {
  9659. // U.MD.D.T.taskbar(_taskbar); //創建任務處理
  9660. // }
  9661. }
  9662. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9663. var xmlhttp;
  9664. var Mac, Sn, DeviceId
  9665. if (window.XMLHttpRequest) {
  9666. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9667. xmlhttp = new XMLHttpRequest();
  9668. }
  9669. else {
  9670. // IE6, IE5 瀏覽器執行代碼
  9671. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9672. }
  9673. xmlhttp.onreadystatechange = function () {
  9674. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9675. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9676. // resolve(res.value[0][0].text);
  9677. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9678. }
  9679. }
  9680. }
  9681. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9682. xmlhttp.send();
  9683. }
  9684. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9685. var xmlhttp;
  9686. var Mac, Sn, DeviceId
  9687. if (window.XMLHttpRequest) {
  9688. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9689. xmlhttp = new XMLHttpRequest();
  9690. }
  9691. else {
  9692. // IE6, IE5 瀏覽器執行代碼
  9693. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9694. }
  9695. xmlhttp.onreadystatechange = function () {
  9696. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9697. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9698. // resolve(res.value[0][0].text);
  9699. if (type == '2') {
  9700. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9701. } else if (type == '3') {
  9702. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9703. } else if (type == '4') {
  9704. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9705. }
  9706. } else {
  9707. if (type == '2') {
  9708. iframe.contentWindow.editor.minder.importData('json', '')
  9709. } else if (type == '3') {
  9710. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9711. } else if (type == '4') {
  9712. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9713. }
  9714. }
  9715. }
  9716. }
  9717. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9718. xmlhttp.send();
  9719. }
  9720. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9721. var xmlhttp;
  9722. var Mac, Sn, DeviceId
  9723. if (window.XMLHttpRequest) {
  9724. // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行代碼
  9725. xmlhttp = new XMLHttpRequest();
  9726. }
  9727. else {
  9728. // IE6, IE5 瀏覽器執行代碼
  9729. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9730. }
  9731. xmlhttp.onreadystatechange = function () {
  9732. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9733. if (xmlhttp.response) {
  9734. // resolve(res.value[0][0].text);
  9735. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9736. // $(fileInput).val('');
  9737. // });
  9738. span.innerHTML = '上傳成功'
  9739. setTimeout(() => {
  9740. loading.style.display = 'none'
  9741. }, 1000);
  9742. }
  9743. }
  9744. }
  9745. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9746. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9747. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9748. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9749. // 設置請求頭,表示請求體的編碼格式
  9750. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9751. // 設置請求體,使用url-encoded格式的數據
  9752. }
  9753. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9754. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9755. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9756. _userinfo = US.userInfo, //登錄用戶信息
  9757. _userid = US.userInfo.userid //登錄用戶id
  9758. let _iframe;
  9759. let _cid = cid,
  9760. _stage = stage,
  9761. _task = task,
  9762. _tool = tool;
  9763. var _jie = $$("div", {
  9764. "style": {
  9765. "position": "absolute",
  9766. "bottom": "50px",
  9767. "right": "50px",
  9768. "zIndex": "9999",
  9769. "backgroundColor": "#2268bc",
  9770. "color": "#fff",
  9771. "padding": "12px 20px",
  9772. "cursor": "pointer",
  9773. "borderRadius": "4px",
  9774. },
  9775. "innerHTML": "提交作業"
  9776. })
  9777. let aTool = ''
  9778. let _loading = document.createElement('div')
  9779. _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;"
  9780. // _loading.id = "";
  9781. let _lchild = document.createElement('div')
  9782. let _limg = document.createElement('img')
  9783. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9784. _limg.style = "width: 26px;margin-right: 10px;"
  9785. _lchild.appendChild(_limg)
  9786. let _lspan = document.createElement('span')
  9787. _lspan.innerHTML = "上傳中..."
  9788. _lchild.appendChild(_lspan)
  9789. _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%);"
  9790. _loading.appendChild(_lchild)
  9791. var _box = $$('div', {
  9792. "style": {
  9793. "position": "relative",
  9794. "width": "100%",
  9795. "height": "100%",
  9796. },
  9797. })
  9798. _box.appendChild(_loading)
  9799. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9800. switch (str) {
  9801. case "CocoPi":
  9802. aTool = 57;
  9803. _iframe = $$("iframe", {
  9804. "allowpaymentrequest": "allowpaymentrequest",
  9805. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9806. "webkitallowfullscreen": "",
  9807. "mozallowfullscreen": "",
  9808. "frameborder": "no",
  9809. "border": "0",
  9810. "scrolling ": "no",
  9811. "style": {
  9812. "cssText": "border:0;width:100%;height:100%"
  9813. },
  9814. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  9815. })
  9816. _box.appendChild(_iframe);
  9817. _box.appendChild(_jie);
  9818. _formdiv = new U.UF.UI.form(
  9819. "CocoPi",
  9820. _box, {
  9821. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9822. "style": {
  9823. "width": "90%",
  9824. "height": "90%",
  9825. "overflow": 'hidden'
  9826. },
  9827. "onresize": function () { }
  9828. }, {
  9829. closecallback: function () { }
  9830. }, {
  9831. "style": {
  9832. "height": "36px"
  9833. }
  9834. }).form; //創建窗體
  9835. _taskbar = {
  9836. "id": str + _formdiv.id,
  9837. "style": {
  9838. "backgroundImage": "url(/img/icon/cocopi.png)"
  9839. },
  9840. "name": "CocoPi",
  9841. "forms": _formdiv,
  9842. "click": function () {
  9843. U.MD.D.I.openApplication(str, obj, info);
  9844. }
  9845. }
  9846. break;
  9847. }
  9848. if (_iframe) {
  9849. if (str == 'CocoPi') {
  9850. _iframe = _formdiv.querySelector('iframe')
  9851. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9852. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9853. })
  9854. if (onloadListener) {
  9855. _iframe.contentDocument.location.reload()
  9856. } else {
  9857. _iframe.contentDocument.location.reload()
  9858. }
  9859. }
  9860. _jie.onclick = async () => {
  9861. let text = ''
  9862. if (aTool == 57) {
  9863. text = _iframe.contentWindow.getLoadXmlStr()
  9864. }
  9865. _loading.style.display = 'flex'
  9866. console.log(_loading);
  9867. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9868. _loading.style.display = 'none'
  9869. let _div = document.createElement('div')
  9870. _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;"
  9871. let _inner = document.createElement('div')
  9872. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9873. _inner.innerHTML = "上傳成功"
  9874. _div.appendChild(_inner)
  9875. _iframe.contentWindow.window.document.body.appendChild(_div)
  9876. _div.onclick = () => {
  9877. _iframe.contentWindow.window.document.body.removeChild(_div)
  9878. }
  9879. setTimeout(() => {
  9880. _iframe.contentWindow.window.document.body.removeChild(_div)
  9881. }, 1000);
  9882. }, [], { "type": "POST", "withCredentials": true });
  9883. }
  9884. }
  9885. }
  9886. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9887. var _taskbar, //_taskbar 作為任務欄顯示的元素,包含圖標和名字
  9888. _formdiv, //創建任務欄時同時彈出的窗體元素。
  9889. _userid = student.userid, //登錄用戶id
  9890. _username = student.student //用戶名字
  9891. let _iframe;
  9892. let _cid = cid,
  9893. _stage = stage,
  9894. _task = task,
  9895. _tool = tool;
  9896. var _jie = $$("div", {
  9897. "style": {
  9898. "position": "absolute",
  9899. "bottom": "50px",
  9900. "right": "50px",
  9901. "zIndex": "9999",
  9902. "backgroundColor": "#2268bc",
  9903. "color": "#fff",
  9904. "padding": "12px 20px",
  9905. "cursor": "pointer",
  9906. "borderRadius": "4px",
  9907. },
  9908. "innerHTML": "提交作業"
  9909. })
  9910. let aTool = ''
  9911. let _loading = document.createElement('div')
  9912. _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;"
  9913. // _loading.id = "";
  9914. let _lchild = document.createElement('div')
  9915. let _limg = document.createElement('img')
  9916. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9917. _limg.style = "width: 26px;margin-right: 10px;"
  9918. _lchild.appendChild(_limg)
  9919. let _lspan = document.createElement('span')
  9920. _lspan.innerHTML = "上傳中..."
  9921. _lchild.appendChild(_lspan)
  9922. _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%);"
  9923. _loading.appendChild(_lchild)
  9924. var _box = $$('div', {
  9925. "style": {
  9926. "position": "relative",
  9927. "width": "100%",
  9928. "height": "100%",
  9929. },
  9930. })
  9931. _box.appendChild(_loading)
  9932. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9933. switch (str) {
  9934. case "CocoPi":
  9935. aTool = 57;
  9936. _iframe = $$("iframe", {
  9937. "allowpaymentrequest": "allowpaymentrequest",
  9938. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9939. "webkitallowfullscreen": "",
  9940. "mozallowfullscreen": "",
  9941. "frameborder": "no",
  9942. "border": "0",
  9943. "scrolling ": "no",
  9944. "style": {
  9945. "cssText": "border:0;width:100%;height:100%"
  9946. },
  9947. "src": "https://pi.cocorobo.hk/?lang=zh-hant"
  9948. })
  9949. _box.appendChild(_iframe);
  9950. _box.appendChild(_jie);
  9951. _formdiv = new U.UF.UI.form(
  9952. "CocoPi-" + _username,
  9953. _box, {
  9954. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9955. "style": {
  9956. "width": "90%",
  9957. "height": "90%",
  9958. "overflow": 'hidden'
  9959. },
  9960. "onresize": function () { }
  9961. }, {
  9962. closecallback: function () { }
  9963. }, {
  9964. "style": {
  9965. "height": "36px"
  9966. }
  9967. }).form; //創建窗體
  9968. _taskbar = {
  9969. "id": str + _formdiv.id,
  9970. "style": {
  9971. "backgroundImage": "url(/img/icon/cocopi.png)"
  9972. },
  9973. "name": "CocoPi",
  9974. "forms": _formdiv,
  9975. "click": function () {
  9976. U.MD.D.I.openApplication(str, obj, info);
  9977. }
  9978. }
  9979. break;
  9980. }
  9981. if (_iframe) {
  9982. if (str == 'CocoPi') {
  9983. _iframe = _formdiv.querySelector('iframe')
  9984. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9985. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9986. })
  9987. if (onloadListener) {
  9988. _iframe.contentDocument.location.reload()
  9989. } else {
  9990. _iframe.contentDocument.location.reload()
  9991. }
  9992. }
  9993. _jie.onclick = async () => {
  9994. let text = ''
  9995. if (aTool == 57) {
  9996. text = _iframe.contentWindow.getLoadXmlStr()
  9997. }
  9998. _loading.style.display = 'flex'
  9999. console.log(_loading);
  10000. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10001. _loading.style.display = 'none'
  10002. let _div = document.createElement('div')
  10003. _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;"
  10004. let _inner = document.createElement('div')
  10005. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10006. _inner.innerHTML = "上傳成功"
  10007. _div.appendChild(_inner)
  10008. _iframe.contentWindow.window.document.body.appendChild(_div)
  10009. _div.onclick = () => {
  10010. _iframe.contentWindow.window.document.body.removeChild(_div)
  10011. }
  10012. setTimeout(() => {
  10013. _iframe.contentWindow.window.document.body.removeChild(_div)
  10014. }, 1000);
  10015. }, [], { "type": "POST", "withCredentials": true });
  10016. }
  10017. }
  10018. }
  10019. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10020. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10021. if (res.value[0].length > 0) {
  10022. if (atool == 57) {
  10023. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10024. }
  10025. } else {
  10026. if (atool == 57) {
  10027. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10028. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10029. }
  10030. }
  10031. }, [], { "type": "POST", "withCredentials": true });
  10032. }